1
0
Fork 0
mirror of https://github.com/rails/execjs synced 2023-03-27 23:21:20 -04:00
execjs/execjs.gemspec
2011-02-07 12:35:13 -06:00

29 lines
799 B
Ruby

Gem::Specification.new do |s|
s.name = "execjs"
s.version = "0.0.0"
s.date = "2011-02-06"
s.homepage = "https://github.com/sstephenson/execjs"
s.summary = "Run JavaScript 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/rhino_runtime.rb",
"lib/execjs/runtimes.rb",
"lib/execjs/support",
"lib/execjs/support/basic_runner.js",
"lib/execjs/support/node_runner.js",
"lib/execjs/v8_runtime.rb"
]
s.add_development_dependency "therubyracer"
s.add_development_dependency "therubyrhino"
s.authors = ["Sam Stephenson"]
s.email = "sstephenson@gmail.com"
s.rubyforge_project = "execjs"
end