Skip to content
This repository was archived by the owner on Sep 29, 2023. It is now read-only.

Upgrade to rails 6 #8

Merged
merged 8 commits into from
Apr 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 13 additions & 9 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
source 'https://rubygems.org'
# ruby "~> 2.5.1" # min "~> 2.3.7" which is not available on Heroku-18

ruby '2.5.7'

gem 'dotenv-rails', require: 'dotenv/rails-now', groups: [:development, :test]

gem 'rails', '6.0.3.6'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '< 5.0' # go to 5.1.6? pg_sequence bug is fixed in 5.1.4
ruby '2.5.7'
gem 'pg', '~> 0.18.4'
gem 'pg', '~> 0.21'
gem 'oj', '~> 2.18.5'
gem 'rollbar', '~> 2.15.6'

Expand All @@ -16,7 +16,7 @@ group :development do
gem 'annotate'

# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
gem 'web-console'
end

gem 'sinatra'
Expand All @@ -30,19 +30,19 @@ gem 'sidekiq'
gem 'puma'

# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby

# Use jquery as the JavaScript library
gem 'jquery-rails'

# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
gem 'jbuilder'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc

Expand All @@ -64,3 +64,7 @@ group :development, :test do
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', '~> 1.7.2'
end

group :test do
gem 'rails-controller-testing'
end
Loading