Skip to content

Commit

Permalink
Rails 5.2 doesn't really work Ruby 2.2 anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
sobrinho committed May 23, 2020
1 parent 34e0516 commit 440c9c2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,13 @@ before_install:

jobs:
include:
- rvm: 2.2
gemfile: gemfiles/Gemfile_Rails_5_2
# Rails 5.2 doesn't really work with Ruby 2.2 anymore, only if you use the
# 5-2-stable branch.
#
# See https://github.com/rails/rails/commit/892eab777c418135ce0646e91bc9ebb08a29ab9b
#
# - rvm: 2.2
# gemfile: gemfiles/Gemfile_Rails_5_2
- rvm: 2.3
gemfile: gemfiles/Gemfile_Rails_5_2
- rvm: 2.4
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/Gemfile_Rails_5_2
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ gem "jquery-rails"
gem "capybara", "< 3.16"
gem "aws-sdk-s3"
gem "rack-test", "~> 0.6.2"
gem "rails", "~> 5.2.2"
gem "rails", "~> 5.2"
gem "sqlite3", "~> 1.3.6", platforms: [:ruby]
gem "activerecord-jdbcsqlite3-adapter", "~> 52.1", platforms: [:jruby]
gem "poltergeist"
Expand All @@ -20,4 +20,4 @@ gem "rubocop", "~> 0.49.0"
gem "puma"
gem "mini_magick"
gem "simple_form"
gem "i18n", "~> 1.2.0", platforms: [:jruby]
gem "i18n", "~> 1.2.0", "< 1.60"

0 comments on commit 440c9c2

Please sign in to comment.