-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathjoybox.gemspec
50 lines (40 loc) · 1.94 KB
/
joybox.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
45
46
47
48
49
50
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/joybox/version.rb', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'joybox'
gem.version = Joybox::VERSION
gem.authors = ['Juan José Karam', 'Gabriel Sosa', 'Contributors']
gem.email = '[email protected]'
gem.description = 'A Cocos2D & Box2D Wrapper for creating video games using RubyMotion'
gem.summary = 'A Cocos2D & Box2D Wrapper for RubyMotion'
gem.homepage = 'http://joybox.io'
gem.license = 'MIT'
gem.files = `git ls-files`.split($\)
gem.require_paths = ['lib', 'motion', 'vendor', 'command', 'template']
gem.test_files = gem.files.grep(%r{^spec/})
gem.add_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.extensions = ['ext/extconf.rb']
gem.post_install_message = <<-MESSAGE
= Joybox 1.1.1 =
Bug Fix
* Missing include in LayerColor
00000000000000111111111111110000000000000000000000000000000000
00000000000000000111111111111111111111100000000000000000000000
00000000000000000011111111111111111111111111111110000000000000
00000000000000111111111111111111111111111111111111111000000000
00000000000001111111111111111111111111111111111111111111000000
00000001100001111111111110000000111111111111111111111111000000
00000011111001111111111100000000011111111111111111111110000000
00000011111111111111111000000000001111111111111111111000000000
00000011111111111111111000000000011111111111111111100000000000
00000001111111111111111110000000111111111111111110000000000000
00000001111110011111111111111111111111111111100000000000000000
00000001111100011111111111111111111111111000000000000000000000
00000000011000001111111111111111111110000000000000000000000000
00000000000000000111111111111111110000000000000000000000000000
00000000000000000000000111111111000000000000000000000000000000
00000000000000000000011111111000000000000000000000000000000000
00000000000000000001111100000000000000000000000000000000000000
MESSAGE
end