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

24 lines
669 B
Ruby
Raw Permalink 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
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"
s.description = "ExecJS lets you run JavaScript code from Ruby."
2011-02-07 09:34:18 -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"
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
# 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