-
Notifications
You must be signed in to change notification settings - Fork 5
/
dare.gemspec
30 lines (23 loc) · 965 Bytes
/
dare.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
lib = File.expand_path File.join(File.dirname(__FILE__), 'lib')
$:.unshift lib unless $:.include?(lib)
require 'bundler'
Gem::Specification.new do |spec|
spec.name = 'dare'
spec.version = '0.2.1'
spec.date = '2015-04-16'
spec.summary = 'Ruby 2D Game library on top of Opal'
spec.authors = ["Dominic Muller"]
spec.email = '[email protected]'
spec.files = Dir['bin/dare', 'lib/dare/*.rb', 'lib/*.rb', 'examples/tutorial/*/**']
spec.executables = ["dare"]
spec.require_paths = ["lib"]
spec.add_runtime_dependency 'rake', '10.4.2'
spec.add_runtime_dependency 'bundler', '~> 1.10.5'
spec.add_runtime_dependency 'opal', '0.7.0'
spec.add_runtime_dependency 'opal-jquery', '0.3.0'
spec.add_runtime_dependency 'thor', '0.19.1'
spec.add_development_dependency 'opal-rspec', '0.4.0.beta4'
spec.add_development_dependency 'pry', '~> 0.10', '>=0.10.1'
spec.homepage = 'https://github.com/nicklink483/dare'
spec.license = 'MIT'
end