summaryrefslogtreecommitdiffhomepage
path: root/ruby2d.gemspec
blob: 7afa33d0f381b3b40965dcbf00bbed0c3f98cc37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require_relative 'lib/ruby2d/version'

Gem::Specification.new do |s|
  s.name        = 'ruby2d'
  s.version     = Ruby2D::VERSION
  s.summary     = 'Ruby 2D'
  s.description = 'Make cross-platform 2D applications in Ruby'
  s.homepage    = 'http://www.ruby2d.com'
  s.license     = 'MIT'
  s.author      = 'Tom Black'
  s.email       = '[email protected]'

  s.required_ruby_version = '>= 2.0.0'
  s.add_development_dependency 'rspec', '~> 3.8'

  s.files = Dir.glob('lib/**/*') +
            Dir.glob('assets/**/*') +
            Dir.glob('ext/**/*.{c,js,rb}')
  s.extensions = ['ext/ruby2d/extconf.rb']
  s.executables << 'ruby2d'
end