Skip to content

Commit 997a618

Browse files
committed
Upgrade Ruby/Rails and other dependencies
I started out just trying to get specs passing on Ruby 2.7.0, but ended up also upgrading several gems (including Rails) as well.
1 parent a48cd74 commit 997a618

35 files changed

+268
-270
lines changed

.rubocop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ AllCops:
44
- "spec/dummy/db/*"
55
- "db/**/*"
66
- "bin/**/*"
7+
- "spec/dummy/db/schema.rb"
78
DisplayCopNames: false
89
TargetRubyVersion: 2.5
910
Rails:

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3
1+
2.7.0

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
language: ruby
22
sudo: false
33
rvm:
4-
- 2.3.3
5-
- 2.5.0
4+
- 2.5.7
5+
- 2.6.5
6+
- 2.7.0
67
script:
78
- cd spec/dummy && RAILS_ENV=test bundle exec rake db:create db:migrate
89
- cd ../.. && bundle exec rspec spec
910
addons:
1011
chrome: stable
1112
before_install:
12-
- gem install bundler:1.16.5
13+
- gem install bundler:1.17.2
1314
- google-chrome-stable --headless --disable-gpu --no-sandbox --remote-debugging-port=9222 http://localhost &
1415
env:
1516
- CHROME_PATH=/usr/bin/google-chrome-stable

0 commit comments

Comments
 (0)