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-03-30 12:58:57 -04:00
|
|
|
s.version = "0.1.1"
|
|
|
|
s.date = "2011-03-30"
|
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-02-07 13:27:00 -05:00
|
|
|
"lib/execjs/support",
|
|
|
|
"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",
|
|
|
|
"lib/execjs/external_runtime.rb",
|
|
|
|
"lib/execjs/ruby_racer_runtime.rb",
|
|
|
|
"lib/execjs/ruby_rhino_runtime.rb",
|
|
|
|
"lib/execjs/runtimes.rb",
|
|
|
|
"lib/execjs.rb",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md"
|
2011-02-07 09:34:18 -05:00
|
|
|
]
|
|
|
|
|
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
|