2011-08-03 10:55:01 -04:00
|
|
|
$:.unshift File.expand_path('..', __FILE__)
|
|
|
|
require 'execjs/version'
|
2011-06-13 17:29:30 -04:00
|
|
|
|
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-13 17:29:30 -04:00
|
|
|
s.version = ExecJS::VERSION
|
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-18 13:59:08 -04:00
|
|
|
"lib/execjs/johnson_runtime.rb",
|
2011-06-02 00:23:28 -04:00
|
|
|
"lib/execjs/module.rb",
|
2011-06-13 17:29:30 -04:00
|
|
|
"lib/execjs/version.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-18 13:59:08 -04:00
|
|
|
s.add_development_dependency "johnson"
|
|
|
|
s.add_development_dependency "mustang"
|
2011-06-07 17:05:18 -04:00
|
|
|
s.add_development_dependency "rake"
|
2011-06-18 13:59:08 -04:00
|
|
|
s.add_development_dependency "therubyracer"
|
|
|
|
s.add_development_dependency "therubyrhino"
|
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
|