Skip to content
This repository has been archived by the owner on May 28, 2023. It is now read-only.

Commit

Permalink
update ruby to 3.0.2 and some gem updates
Browse files Browse the repository at this point in the history
  • Loading branch information
CZagrobelny committed Jul 25, 2021
1 parent 555b994 commit e67f93e
Show file tree
Hide file tree
Showing 8 changed files with 187 additions and 194 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: circleci/ruby:2.6.6-node-browsers
- image: circleci/ruby:3.0.2-node-browsers
- image: postgres:9.6
environment:
POSTGRES_HOST_AUTH_METHOD: trust
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.6
3.0.2
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ ruby File.read('.ruby-version').strip
gem 'rails', '~> 6.x'

gem 'american_date' # this gives us the `to_date` method that we use in several places
gem 'authy', '2.7.5'
gem 'carrierwave'
gem 'carrierwave-aws'
gem 'chartkick'
gem 'devise'
gem 'devise-authy'
gem 'devise-authy', '2.2.1' # implementation changes after this point
gem 'devise_invitable'
gem 'devise-security'
gem 'faker' # used for seed data on staging
Expand Down Expand Up @@ -38,11 +39,10 @@ group :development, :test do
gem 'factory_bot_rails', require: false
gem 'rspec-rails', require: false
gem 'rubocop'
gem 'selenium-webdriver', '3.141.0' # version locked bc/ https://stackoverflow.com/questions/56445641/ruby-watir-selenium-webdriver-depricated-warning/
gem 'selenium-webdriver'
gem 'shoulda-matchers'
gem 'simplecov'
gem 'webdrivers'
gem 'webmock', '~> 2.1', require: false
end

group :production do
Expand All @@ -54,6 +54,6 @@ end
group :development do
gem 'brakeman'
gem 'listen'
gem 'tocer', '~> 9.1' # used for the table of contents in our Readme
gem 'tocer' # used for the table of contents in our Readme
end

Loading

0 comments on commit e67f93e

Please sign in to comment.