summaryrefslogtreecommitdiffhomepage
path: root/ruby2d.gemspec
diff options
context:
space:
mode:
authorTom Black <[email protected]>2015-10-04 20:12:32 -0400
committerTom Black <[email protected]>2015-10-04 20:12:32 -0400
commitd70e4d425eab3848226215d42b3a81b8e191de1a (patch)
tree197bd95fe7bf5a6479aceb646a8549cb1cf57183 /ruby2d.gemspec
downloadruby2d-d70e4d425eab3848226215d42b3a81b8e191de1a.tar.gz
ruby2d-d70e4d425eab3848226215d42b3a81b8e191de1a.zip
First!
Diffstat (limited to 'ruby2d.gemspec')
-rw-r--r--ruby2d.gemspec20
1 files changed, 20 insertions, 0 deletions
diff --git a/ruby2d.gemspec b/ruby2d.gemspec
new file mode 100644
index 0000000..df03f5a
--- /dev/null
+++ b/ruby2d.gemspec
@@ -0,0 +1,20 @@
+$:.push File.expand_path('../lib', __FILE__)
+require 'ruby2d/version'
+
+Gem::Specification.new do |s|
+ s.name = 'ruby2d'
+ s.version = Ruby2D::VERSION
+ s.date = '2015-10-01'
+ s.author = 'Tom Black'
+ s.email = '@blacktm'
+ s.summary = 'Ruby 2D'
+ s.description = 'Make cross-platform 2D applications in Ruby.'
+ s.homepage = 'http://www.ruby2d.com'
+ s.license = 'MIT'
+ s.files = Dir.glob('lib/**/*') +
+ Dir.glob('assets/**/*') +
+ Dir.glob('ext/**/*.{c,rb}')
+ s.extensions = ['ext/ruby2d/extconf.rb']
+ s.executables << 'ruby2d'
+ s.required_ruby_version = '>= 2.2.0'
+end