-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqt.gemspec
More file actions
33 lines (28 loc) · 1.02 KB
/
qt.gemspec
File metadata and controls
33 lines (28 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'qt'
spec.version = '0.1.8'
spec.authors = ['Maksim Veynberg']
spec.email = ['mv@cj264.ru']
spec.summary = 'Ruby bindings for Qt 6.4.2+'
spec.description = 'Qt GUI bindings for Ruby with generated bridge code from system Qt headers.'
spec.homepage = 'https://github.com/CyJimmy264/qt'
spec.license = 'BSD-2-Clause'
spec.required_ruby_version = '>= 3.2'
spec.files = Dir[
'lib/**/*.rb',
'ext/**/*.{c,cc,cpp,cxx,h,hpp,rb}',
'scripts/**/*.rb',
'examples/**/*.rb',
'README.md',
'LICENSE',
'Rakefile'
]
spec.extensions = ['ext/qt_ruby_bridge/extconf.rb']
spec.require_paths = ['lib']
spec.add_dependency 'ffi', '~> 1.17'
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/master/CHANGELOG.md"
spec.metadata['bug_tracker_uri'] = "#{spec.homepage}/issues"
spec.metadata['rubygems_mfa_required'] = 'true'
end