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

Require Ruby 1.9+

This make possible to work with JRuby 1.7

Fixes #17
This commit is contained in:
Rafael Mendonça França 2015-04-09 12:57:10 -03:00
parent 96451ee682
commit 7e5d634a28

View file

@ -18,5 +18,6 @@ Gem::Specification.new do |s|
s.authors = ["Sam Stephenson", "Josh Peek"] s.authors = ["Sam Stephenson", "Josh Peek"]
s.email = ["sstephenson@gmail.com", "josh@joshpeek.com"] s.email = ["sstephenson@gmail.com", "josh@joshpeek.com"]
s.required_ruby_version = '>= 2.0.0' # We only support MRI 2+ but this is needed to work with JRuby 1.7.
s.required_ruby_version = '>= 1.9.3'
end end