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

Updates to Rails 7.2 and Bundle Update #382

Merged
merged 1 commit into from
Feb 28, 2025
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
8 changes: 3 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ executors:
- image: docker:20.10.23

orbs:
browser-tools: circleci/browser-tools@1.4.7
browser-tools: circleci/browser-tools@1.5.0
coveralls: coveralls/coveralls@1.0.6

jobs:
Expand Down Expand Up @@ -39,10 +39,8 @@ jobs:
working_directory: ~/application_portfolio

steps:


- browser-tools/install-browser-tools:
replace-existing-chrome: true

- browser-tools/install-chrome

- checkout

Expand Down
18 changes: 12 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,21 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.3.3'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1.7.10'
gem 'rails', '~> 7.2.2.1'
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4'

# Add mutex since it won't be part of rails in future
gem 'mutex_m'

# Deals with serialization deprecation in Rails 7.1
gem 'globalize', '~> 7.0'

# Needed for ruby 3.3.3 upgrade
gem 'net-pop', '~> 0.1.2'
gem 'net-protocol', '>= 0'
# Use nokogiri for java
gem 'nokogiri', '>= 1.16.5'
gem 'nokogiri', '>= 1.18.3'
# Use Puma as the app server
gem 'puma', '>= 6.4.3'
# Use SCSS for stylesheets
Expand Down Expand Up @@ -88,7 +94,7 @@ group :development, :test do
# Use factory_bot_rails to generate random test data
gem 'factory_bot_rails'
gem 'rspec_junit_formatter'
gem 'rspec-rails', '~>4.1.0'
gem 'rspec-rails', '~> 6.0'
gem 'shoulda-matchers', '~> 4.0'
end

Expand All @@ -98,11 +104,11 @@ group :development do
gem 'capistrano-rails', '~> 1.4', require: false
gem 'capistrano-rvm', require: false
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'listen', '~> 3.5'
gem 'web-console', '>= 3.3.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
# gem 'spring'
# gem 'spring-watcher-listen'
end

group :production do
Expand Down
Loading