-
Notifications
You must be signed in to change notification settings - Fork 2
/
ruby-ogre.gemspec
41 lines (37 loc) · 1.6 KB
/
ruby-ogre.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ruby-ogre/version'
Gem::Specification.new do |gem|
gem.name = "ruby-ogre"
gem.version = Ruby::Ogre::VERSION
gem.authors = ["abexsoft"]
gem.email = ["[email protected]"]
gem.description = %q{Ruby bindings for Ogre.}
gem.summary = %q{Ruby bindings for Ogre.}
gem.homepage = "https://github.com/abexsoft/ruby-ogre"
gem.platform = Gem::Platform::CURRENT
gem.files = Dir['Gemfile',
'Rakefile',
'README.md',
'INSTALL.md',
'LICENSE',
'ruby-ogre.gemspec',
'bindings/ogre/interface/**/*',
'bindings/ogrebites/interface/**/*',
'lib/**/*',
'deps/lib/libOgre*.so*',
'deps/lib/*.dll',
'deps/lib/OGRE/*.so*',
'deps/lib/OGRE/*.dll',
'deps/include/**/*',
'deps/share/OGRE/media/**/*',
'sample/charactor/*.rb',
'sample/charactor/sinbad*',
'sample/charactor/resources.cfg',
'sample/charactor/plugins.cfg'
]
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'
end