Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
a144323
Add a Geocoder spec stub
thejonroberts Jul 23, 2024
908f4b3
pin countries gem, add explicit sprockets-rails
thejonroberts Jul 23, 2024
391fc61
bundle update --conservative
thejonroberts Jul 23, 2024
91782aa
pin versions that tried major upgrade
thejonroberts Jul 23, 2024
52e1a45
rename shared example to avoid load warning
thejonroberts Jul 23, 2024
23a8ad2
udpate rails to 6.1.7.8
thejonroberts Jul 23, 2024
0a4bb6a
enable zeitwerk mode (explicitly)
thejonroberts Jul 23, 2024
06f5575
load 6.1 defaults explicitly
thejonroberts Jul 23, 2024
2d50321
loosen some patch level restrictions
thejonroberts Jul 23, 2024
0c79555
regenerate mongoid config
thejonroberts Jul 23, 2024
48a38ec
mongoid 7.5.4
thejonroberts Jul 23, 2024
ad150b8
update mongoid to rails 7.1 compatible version
thejonroberts Jul 23, 2024
ceeda40
rails 7.1 (gem - no app:update yet)
thejonroberts Jul 23, 2024
c62c739
rails app:update & most 7.1 defaults enabled
thejonroberts Jul 23, 2024
3711fea
unpin temporary gem versions
thejonroberts Jul 23, 2024
0bb833f
remove duplicate test - covered by fiveable shared example
thejonroberts Jul 23, 2024
2588d6c
remove warning gem
thejonroberts Jul 23, 2024
60d73f2
put simplecov back in bin/rails
thejonroberts Jul 23, 2024
25d550f
put sprockets require back
thejonroberts Jul 23, 2024
d0eef51
standardrb --fix
thejonroberts Jul 23, 2024
23dabb5
put filtered parameter back in config
thejonroberts Jul 23, 2024
e641078
don't need to eager load lib anymore
thejonroberts Jul 23, 2024
d6cf7a3
development env config
thejonroberts Jul 23, 2024
8f52933
production env config
thejonroberts Jul 23, 2024
1fab9f0
test env config
thejonroberts Jul 23, 2024
761fce5
Enable all 7.1 framework defaults EXCEPT rolling deploy related
thejonroberts Jul 23, 2024
0b5b79e
enable 7.1 defaults
thejonroberts Jul 24, 2024
ea3a0a5
standardrb --fix
thejonroberts Jul 24, 2024
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
17 changes: 9 additions & 8 deletions backend/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,27 @@ ruby "3.2.3"
gem "dotenv-rails", groups: %i[development test]

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 6.1.7.7"
gem "rails", "~> 7.1.0"
gem "rake"
gem "sprockets-rails"

# JSON serializer
gem "active_model_serializers", "0.9.8"
gem "active_model_serializers", "~> 0.9"

# Use postgresql and mongo as the database for Active Record
gem "mongoid", "7.3.3"
gem "mongoid", "8.1.3" # https://www.mongodb.com/docs/mongoid/current/reference/compatibility/#rails-compatibility
gem "pg"

# Use Puma as the app server
gem "puma", "5.6.8"

# Authentication libraries
gem "cancancan", "~> 3.5.0"
gem "cancancan-mongoid", "2.0.0"
gem "devise", "4.8.0"
gem "devise_invitable", "2.0.9"
gem "omniauth", "1.8.1"
gem "omniauth-facebook", "3.0.0"
gem "cancancan-mongoid", "~> 2.0"
gem "devise", "~> 4.8"
gem "devise_invitable", "~> 2.0"
gem "omniauth", "~> 1.8"
gem "omniauth-facebook", "~> 3.0"

# Colored output to console
gem "colored"
Expand Down
Loading