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

42 lines
1.2 KiB
Ruby
Raw Normal View History

2011-06-13 17:29:30 -04:00
require File.expand_path("../lib/execjs/version.rb", __FILE__)
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",
"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"
s.add_development_dependency "johnson"
s.add_development_dependency "mustang"
2011-06-07 17:05:18 -04:00
s.add_development_dependency "rake"
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