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

21 lines
561 B
Ruby
Raw Normal View History

2011-09-09 00:52:13 -04:00
$:.unshift File.expand_path('../lib', __FILE__)
2011-08-03 10:55:01 -04:00
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"
s.description = "ExecJS lets you run JavaScript code from Ruby."
2011-02-07 09:34:18 -05:00
2011-09-12 17:59:53 -04:00
s.files = Dir["README.md", "LICENSE", "lib/**/*"]
2011-02-07 09:34:18 -05:00
2011-06-07 17:05:18 -04:00
s.add_development_dependency "rake"
2013-05-12 00:17:04 -04:00
s.licenses = ['MIT']
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