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:
parent
4b5126dda7
commit
0ebf7129cf
3
Gemfile
3
Gemfile
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue