generated from dryruby/ruby-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openxr.gemspec
44 lines (39 loc) · 1.83 KB
/
openxr.gemspec
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
34
35
36
37
38
39
40
41
42
43
44
Gem::Specification.new do |gem|
gem.version = File.read('VERSION').chomp
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')
gem.name = 'openxr'
gem.homepage = 'https://github.com/dryruby/openxr.rb'
gem.license = "Unlicense"
gem.summary = "OpenXR bindings for Ruby."
gem.description = <<~EOS
OpenXR.rb implements Ruby bindings for OpenXR 1.0, the open standard and
cross-platform API for virtual reality (VR) and augmented reality (AR)
hardware.
EOS
gem.author = "Arto Bendiken"
gem.email = '[email protected]'
gem.metadata = {
'bug_tracker_uri' => 'https://github.com/dryruby/openxr.rb/issues',
'changelog_uri' => 'https://github.com/dryruby/openxr.rb/blob/master/CHANGES.md',
'documentation_uri' => 'https://www.rubydoc.info/github/dryruby/openxr.rb/master',
'homepage_uri' => gem.homepage,
'source_code_uri' => 'https://github.com/dryruby/openxr.rb',
}
gem.platform = Gem::Platform::RUBY
gem.files = %w(AUTHORS CHANGES.md CREDITS.md README.md UNLICENSE VERSION) + Dir.glob('lib/**/*.rb')
gem.bindir = %q(bin)
gem.executables = %w()
gem.require_paths = %w(lib)
gem.extensions = %w()
gem.test_files = %w()
gem.required_ruby_version = '>= 2.7.0'
gem.required_rubygems_version = '>= 3.1.2' # Ruby 2.7.0
gem.requirements = []
gem.add_development_dependency 'ffidb', '~> 0.6'
gem.add_development_dependency 'rake', '>= 13'
gem.add_development_dependency 'rspec', '>= 3.9'
gem.add_development_dependency 'yard' , '>= 0.9'
gem.add_runtime_dependency 'dogma.rb', '~> 0.0'
gem.add_runtime_dependency 'ffi', '~> 1.13'
gem.post_install_message = nil
end