mirror of
https://github.com/rails/execjs
synced 2023-03-27 23:21:20 -04:00
Add gemspec
This commit is contained in:
parent
1808fa8708
commit
8955c7cae6
1 changed files with 28 additions and 0 deletions
28
execjs.gemspec
Normal file
28
execjs.gemspec
Normal file
|
@ -0,0 +1,28 @@
|
|||
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",
|
||||
"lib/execjs/external_runtime.rb",
|
||||
"lib/execjs/runners",
|
||||
"lib/execjs/runners/basic.js",
|
||||
"lib/execjs/runners/node.js",
|
||||
"lib/execjs/runtimes.rb",
|
||||
"lib/execjs/v8_runtime.rb",
|
||||
"lib/execjs.rb"
|
||||
]
|
||||
|
||||
s.add_development_dependency "therubyracer"
|
||||
|
||||
s.authors = ["Sam Stephenson"]
|
||||
s.email = "sstephenson@gmail.com"
|
||||
s.rubyforge_project = "execjs"
|
||||
end
|
Loading…
Reference in a new issue