1
0
Fork 0
mirror of https://github.com/rails/execjs synced 2023-03-27 23:21:20 -04:00
execjs/execjs.gemspec
Sam Stephenson de9d10fa91 ExecJS 1.0.0
2011-05-18 12:57:52 -05:00

36 lines
1.1 KiB
Ruby

Gem::Specification.new do |s|
s.name = "execjs"
s.version = "1.0.0"
s.date = "2011-05-18"
s.homepage = "https://github.com/sstephenson/execjs"
s.summary = "Run JavaScript code from Ruby"
s.description = <<-EOS
ExecJS lets you run JavaScript code from Ruby.
EOS
s.files = [
"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",
"lib/execjs/support/basic_runner.js",
"lib/execjs/support/jscript_runner.js",
"lib/execjs/support/json2.js",
"lib/execjs/support/node_runner.js",
"lib/execjs/support/which.bat",
"LICENSE",
"README.md"
]
s.add_dependency "multi_json", "~>1.0"
s.add_development_dependency "mustang"
s.add_development_dependency "therubyracer"
s.add_development_dependency "therubyrhino"
s.authors = ["Sam Stephenson", "Josh Peek"]
s.email = ["sstephenson@gmail.com", "josh@joshpeek.com"]
s.rubyforge_project = "execjs"
end