1
0
Fork 0
mirror of https://github.com/rails/execjs synced 2023-03-27 23:21:20 -04:00
execjs/execjs.gemspec

26 lines
767 B
Ruby
Raw Normal View History

2011-09-09 00:52:13 -04:00
$:.unshift File.expand_path('../lib', __FILE__)
2011-08-03 09:55:01 -05:00
require 'execjs/version'
2011-06-13 16:29:30 -05:00
2011-02-07 08:34:18 -06:00
Gem::Specification.new do |s|
2011-03-10 17:38:33 -06:00
s.name = "execjs"
2011-06-13 16:29:30 -05:00
s.version = ExecJS::VERSION
2011-02-07 08:34:18 -06:00
s.homepage = "https://github.com/sstephenson/execjs"
2011-03-10 17:38:33 -06:00
s.summary = "Run JavaScript code from Ruby"
2011-02-07 08:34:18 -06:00
s.description = <<-EOS
ExecJS lets you run JavaScript code from Ruby.
EOS
2011-09-12 16:59:53 -05:00
s.files = Dir["README.md", "LICENSE", "lib/**/*"]
2011-02-07 08:34:18 -06:00
2011-04-26 10:59:19 -05:00
s.add_dependency "multi_json", "~>1.0"
s.add_development_dependency "johnson"
s.add_development_dependency "mustang"
2011-06-07 16:05:18 -05:00
s.add_development_dependency "rake"
s.add_development_dependency "therubyracer"
s.add_development_dependency "therubyrhino"
2011-02-07 08:34:18 -06:00
2011-06-13 16:26:02 -05:00
s.authors = ["Sam Stephenson", "Josh Peek"]
s.email = ["sstephenson@gmail.com", "josh@joshpeek.com"]
2011-02-07 08:34:18 -06:00
end