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

37 lines
1.1 KiB
Ruby
Raw Normal View History

2011-02-07 09:34:18 -05:00
Gem::Specification.new do |s|
2011-03-10 18:38:33 -05:00
s.name = "execjs"
2011-05-18 13:57:52 -04:00
s.version = "1.0.0"
s.date = "2011-05-18"
2011-02-07 09:34:18 -05:00
s.homepage = "https://github.com/sstephenson/execjs"
2011-03-10 18:38:33 -05:00
s.summary = "Run JavaScript code from Ruby"
2011-02-07 09:34:18 -05:00
s.description = <<-EOS
ExecJS lets you run JavaScript code from Ruby.
EOS
s.files = [
2011-04-12 12:51:28 -04:00
"lib/execjs.rb",
"lib/execjs/external_runtime.rb",
"lib/execjs/mustang_runtime.rb",
"lib/execjs/ruby_racer_runtime.rb",
"lib/execjs/ruby_rhino_runtime.rb",
"lib/execjs/runtimes.rb",
2011-02-07 13:27:00 -05:00
"lib/execjs/support/basic_runner.js",
2011-03-10 18:38:33 -05:00
"lib/execjs/support/jscript_runner.js",
"lib/execjs/support/json2.js",
2011-02-07 13:27:00 -05:00
"lib/execjs/support/node_runner.js",
2011-03-10 18:38:33 -05:00
"lib/execjs/support/which.bat",
"LICENSE",
"README.md"
2011-02-07 09:34:18 -05:00
]
2011-04-26 11:59:19 -04:00
s.add_dependency "multi_json", "~>1.0"
2011-04-12 12:50:17 -04:00
s.add_development_dependency "mustang"
2011-02-07 09:34:18 -05:00
s.add_development_dependency "therubyracer"
2011-02-07 10:01:34 -05:00
s.add_development_dependency "therubyrhino"
2011-02-07 09:34:18 -05:00
2011-03-10 18:38:33 -05:00
s.authors = ["Sam Stephenson", "Josh Peek"]
s.email = ["sstephenson@gmail.com", "josh@joshpeek.com"]
2011-02-07 09:34:18 -05:00
s.rubyforge_project = "execjs"
end