Skip to content

Commit

Permalink
Update Travis config and Gemfile for Ruby < 2.2.2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredxing committed Aug 24, 2016
1 parent 40823a4 commit ce93a01
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ script : script/cibuild
sudo: false

rvm:
- 2.3
- 2.2
- 2.1
- 2.0
env:
- ""
- JEKYLL_VERSION=3.0.0
- JEKYLL_VERSION=3.0
- JEKYLL_VERSION=2.0
matrix:
include:
Expand Down
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ if ENV["GH_PAGES"]
elsif ENV["JEKYLL_VERSION"]
gem "jekyll", "~> #{ENV["JEKYLL_VERSION"]}"
end

# Support for Ruby < 2.2.2 & activesupport
gem "activesupport", "~> 4.2" if RUBY_VERSION < '2.2.2'

0 comments on commit ce93a01

Please sign in to comment.