-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby-procedural.gemspec
33 lines (29 loc) · 1.22 KB
/
ruby-procedural.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ruby-procedural/version'
Gem::Specification.new do |gem|
gem.name = "ruby-procedural"
gem.version = Ruby::Procedural::VERSION
gem.authors = ["abexsoft"]
gem.email = ["[email protected]"]
gem.description = %q{A ruby binding for Ogre Procedural.}
gem.summary = %q{A ruby binding for Ogre Procedural.}
gem.homepage = "https://github.com/abexsoft/ruby-procedural"
gem.platform = Gem::Platform::CURRENT
gem.files = Dir['Gemfile',
'Rakefile',
'README.md',
'INSTALL.md',
'LICENSE',
'ruby-procedural.gemspec',
'bindings/procedural/interface/**/*',
'lib/**/*',
'deps/lib/*',
'deps/include/**/*'
]
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency 'ruby-ois'
gem.add_dependency 'ruby-ogre'
end