forked from HipByte/motion-game
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmotion-game.gemspec
More file actions
20 lines (18 loc) · 882 Bytes
/
motion-game.gemspec
File metadata and controls
20 lines (18 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |spec|
spec.name = 'motion-game'
spec.version = '1.1.5'
spec.summary = 'Cross-platform mobile game engine for RubyMotion'
spec.description = "motion-game allows you to write cross-platform native mobile games in Ruby."
spec.author = 'HipByte'
spec.email = 'info@hipbyte.com'
spec.homepage = 'http://www.rubymotion.com/developers/motion-game'
spec.license = 'BSD'
spec.files = Dir.glob('lib/**/*.rb') + Dir.glob('doc/**/*') + Dir.glob('template/**/*')
# Add libraries for iOS
spec.files += Dir.glob('build/ios/*.a')
# Add libraries for tvOS
spec.files += Dir.glob('build/tvos/*.a')
# Add libraries for Android
spec.files += Dir.glob('build/android/*.jar') + Dir.glob('build/android/{armeabi,x86}/*.a')
spec.metadata = { "rubymotion_template_dir" => "template" }
end