diff options
| author | Tom Black <[email protected]> | 2016-11-27 23:34:03 -0500 |
|---|---|---|
| committer | Tom Black <[email protected]> | 2016-11-27 23:34:03 -0500 |
| commit | fda25833efafb401f38ead47147cabfc7c5ae1a5 (patch) | |
| tree | 95289ab1f090eaa3d1689e5438b017e7627c9263 | |
| parent | 1a25d83171672151abebfec28aa6251987b53a25 (diff) | |
| download | ruby2d-fda25833efafb401f38ead47147cabfc7c5ae1a5.tar.gz ruby2d-fda25833efafb401f38ead47147cabfc7c5ae1a5.zip | |
Clean up gemspec
| -rw-r--r-- | ruby2d.gemspec | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/ruby2d.gemspec b/ruby2d.gemspec index 008cfcd..e6e1db1 100644 --- a/ruby2d.gemspec +++ b/ruby2d.gemspec @@ -4,17 +4,20 @@ require 'ruby2d/version' Gem::Specification.new do |s| s.name = 'ruby2d' s.version = Ruby2D::VERSION - 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.author = 'Tom Black' + s.email = '[email protected]' + s.required_ruby_version = '>= 2.0.0' - s.add_development_dependency 'rspec', '~> 3.4' + s.add_dependency 'opal', '~> 0.10' + s.add_development_dependency 'rspec', '~> 3.5' + + s.files = Dir.glob('lib/**/*') + + Dir.glob('assets/**/*') + + Dir.glob('ext/**/*.{c,js,rb}') + s.extensions = ['ext/ruby2d/extconf.rb'] + s.executables << 'ruby2d' end |
