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-06-08 19:44:15 -04:00
|
|
|
s.version = "1.1.2"
|
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",
|
2011-06-02 00:23:28 -04:00
|
|
|
"lib/execjs/module.rb",
|
2011-04-12 12:51:28 -04:00
|
|
|
"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-06-07 17:05:18 -04:00
|
|
|
s.add_development_dependency "rake"
|
2011-02-07 09:34:18 -05:00
|
|
|
|
2011-06-13 17:26:02 -04:00
|
|
|
s.authors = ["Sam Stephenson", "Josh Peek"]
|
|
|
|
s.email = ["sstephenson@gmail.com", "josh@joshpeek.com"]
|
2011-02-07 09:34:18 -05:00
|
|
|
end
|