use activesupport ~> 4.2 if we are on a Ruby < 2.2.2

activesupport 5.0.x requires a ruby version >= 2.2.2
see 48512d7906/activesupport/activesupport.gemspec (L10)
This commit is contained in:
Florian Thomas 2016-07-12 21:26:52 +02:00
parent 4b5126dda7
commit 0ebf7129cf
No known key found for this signature in database
GPG Key ID: FCEEC9743EC7B893
1 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,9 @@ source "https://rubygems.org"
gemspec :name => "jekyll" gemspec :name => "jekyll"
gem "rake", "~> 11.0" gem "rake", "~> 11.0"
gem "activesupport", "~> 4.2", :groups => [:test_legacy, :site] if RUBY_ENGINE == 'ruby' && RUBY_VERSION < '2.2.2'
group :development do group :development do
gem "launchy", "~> 2.3" gem "launchy", "~> 2.3"
gem "pry" gem "pry"