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

30 lines
799 B
Ruby
Raw Normal View History

2011-02-07 09:34:18 -05:00
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 = [
2011-02-07 10:01:34 -05:00
"lib/execjs.rb",
2011-02-07 09:34:18 -05:00
"lib/execjs/external_runtime.rb",
2011-02-07 10:01:34 -05:00
"lib/execjs/rhino_runtime.rb",
2011-02-07 09:34:18 -05:00
"lib/execjs/runtimes.rb",
2011-02-07 13:27:00 -05:00
"lib/execjs/support",
"lib/execjs/support/basic_runner.js",
"lib/execjs/support/node_runner.js",
2011-02-07 10:01:34 -05:00
"lib/execjs/v8_runtime.rb"
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
s.authors = ["Sam Stephenson"]
s.email = "sstephenson@gmail.com"
s.rubyforge_project = "execjs"
end