Skip to content

Commit 1b82c8f

Browse files
committed
Upgrade to rails 6
1 parent f10081f commit 1b82c8f

File tree

2 files changed

+189
-142
lines changed

2 files changed

+189
-142
lines changed

Gemfile

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,31 @@ git_source(:github) do |repo_name|
55
"https://github.com/#{repo_name}.git"
66
end
77

8-
gem("bcrypt", "~> 3.1.7")
9-
gem("jwt", "~> 2.1.0")
10-
gem("puma", "~> 5.6.7")
11-
gem("rails", "~> 5.2.3")
12-
gem("rubocop")
13-
gem("sqlite3")
8+
gem('bcrypt', '~> 3.1.7')
9+
gem('jwt', '~> 2.1.0')
10+
gem('puma', '~> 6.3', '>= 6.3.1')
11+
gem('rails', "~> 6.0")
12+
gem('rubocop', '~> 1.56')
13+
gem('sqlite3')
1414

1515
group :development, :test do
16-
gem("byebug", platforms: [:mri, :mingw, :x64_mingw])
17-
gem("rspec-rails")
18-
gem("simple_command", "~> 0.1.0")
16+
gem('byebug', platforms: [:mri, :mingw, :x64_mingw])
17+
gem('rspec-rails', '~> 6.0', '>= 6.0.3')
18+
gem('simple_command', "~> 0.1.0")
1919
end
2020

2121
group :development do
22-
gem("listen", "~> 3.2.0")
23-
gem("spring")
24-
gem("spring-watcher-listen", "~> 2.0.0")
25-
gem("web-console", "~> 3.7.0")
22+
gem('listen', '~> 3.2.0')
23+
gem('spring')
24+
gem('spring-watcher-listen', '~> 2.0.0')
25+
gem('web-console', '~> 4.2')
2626
end
2727

2828
group :test do
29-
gem("database_cleaner")
30-
gem("rspec")
31-
gem("rspec-mocks")
32-
gem("shoulda-matchers", "~> 4.4.0")
29+
gem('database_cleaner', '~> 2.0', '>= 2.0.2')
30+
gem('rspec')
31+
gem('rspec-mocks')
32+
gem('shoulda-matchers', '~> 5.3')
3333
end
3434

35-
gem("tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby])
35+
gem('tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby])

0 commit comments

Comments
 (0)