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
|
|
|
|
2015-03-27 11:32:25 -04:00
|
|
|
s.homepage = "https://github.com/rails/execjs"
|
2011-03-10 18:38:33 -05:00
|
|
|
s.summary = "Run JavaScript code from Ruby"
|
2012-05-15 10:16:57 -04:00
|
|
|
s.description = "ExecJS lets you run JavaScript code from Ruby."
|
2011-02-07 09:34:18 -05:00
|
|
|
|
2015-12-25 15:30:01 -05:00
|
|
|
s.files = Dir["README.md", "MIT-LICENSE", "lib/**/*"]
|
2011-02-07 09:34:18 -05:00
|
|
|
|
2011-06-07 17:05:18 -04:00
|
|
|
s.add_development_dependency "rake"
|
2012-05-15 10:16:57 -04:00
|
|
|
|
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"]
|
2015-04-08 17:50:21 -04:00
|
|
|
|
2015-04-09 11:57:10 -04:00
|
|
|
# We only support MRI 2+ but this is needed to work with JRuby 1.7.
|
|
|
|
s.required_ruby_version = '>= 1.9.3'
|
2011-02-07 09:34:18 -05:00
|
|
|
end
|