Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

App Year 2022 and Ruby/Rails Upgrade #56

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.3
FROM ruby:2.7.5

RUN apt-get update -qq && apt-get install -y nodejs

Expand Down
22 changes: 3 additions & 19 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
source 'https://rubygems.org'
ruby '~> 2.3.0'
ruby '~> 2.7.5'

gem 'rails', '~> 4.0'
gem 'rails', '~> 6'
gem 'newrelic_rpm'
gem 'rails-api'
gem 'activerecord-nulldb-adapter'
gem 'active_model_serializers', '~> 0.8.0'
gem 'font-awesome-rails'
Expand All @@ -22,19 +21,4 @@ group :development do
gem 'bundler-audit', require: false
# Deploy with Capistrano
gem 'capistrano'
end

group :development, :test do
gem 'jasmine'
gem 'spring'
end

group :test do
gem 'minitest-rails', '~> 1.0'
gem 'minitest-reporters'
# gem 'mini_backtrace'
end

# fixing a few travisCI complaints
gem 'rake', group: :test
gem 'test-unit'
end
Loading