Skip to content
Open
Show file tree
Hide file tree
Changes from 15 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
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.1
3.1.0
93 changes: 48 additions & 45 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,59 +1,62 @@
source "https://rubygems.org"

ruby "2.7.1"
ruby "3.1.0"

gem "active_link_to"
gem "active_model_serializers", "0.10.10"
gem "administrate", "0.16.0"
gem "analytics-ruby", "~> 2.2.2", require: "segment/analytics"
gem "attr_extras"
gem "autoprefixer-rails"
gem "bourbon", "~> 5.0"
gem "email_validator"
gem "faraday", "~> 1.0"
gem "haml-rails", "~> 2.0"
gem "high_voltage"
gem "inifile"
gem "inline_svg"
gem "jquery-rails", ">= 4.2.0"
gem "jwt"
gem "neat", "~> 1.9"
gem "nokogiri", ">= 1.8.2"
gem "octokit"
gem "omniauth-github"
gem "omniauth-rails_csrf_protection"
gem "active_link_to", "~> 1.0.5"
gem "active_model_serializers", "~> 0.10.10"
gem "administrate", "~> 0.16.0"
gem "analytics-ruby", "~> 2.2.8", require: "segment/analytics"
gem "attr_extras", "~> 7.1.0"
gem "autoprefixer-rails", "~> 10.2.5"
gem "bourbon", "~> 5.1.0"
gem "email_validator", "~> 2.0.1"
gem "faraday", "~> 1.0.0"
gem "haml-rails", "~> 2.0.1"
gem "high_voltage", "~> 3.1.2"
gem "inifile", "~> 3.0.0"
gem "inline_svg", "~> 1.7.1"
gem "jquery-rails", "~> 4.4.0"
gem "jwt", "~> 2.2.1"
gem "neat", "~> 1.9.1"
gem "nokogiri", "~> 1.16.0"
gem "oauth2", "< 2.0"
gem "octokit", "~> 4.16.0"
gem "omniauth-github", "~> 1.4.0"
gem "omniauth-rails_csrf_protection", "~> 0.1.2"
gem "paranoia", "~> 2.4.2"
gem "pathspec"
gem "pg"
gem "puma"
gem "rails", "~> 6.0.3"
gem "sentry-raven"
gem "sidekiq"
gem "sinatra", "~> 2.0"
gem "stripe"
gem "uglifier", ">= 2.7.2"
gem "webpacker"
gem "pathspec", "~> 0.2.1"
gem "pg", "~> 1.2.2"
gem "psych", "< 4.0"
gem "puma", "~> 5.3.2"
gem "rails", "~> 6.0.4"
gem "sentry-raven", "~> 3.0.0"
gem "sidekiq", "~> 6.5.12"
gem "sinatra", "~> 2.0.8"
gem "stripe", "~> 5.15.0"
gem "uglifier", "~> 4.2.0"
gem "webpacker", "~> 4.2.2"
gem "webpacker-react", "~> 1.0.0.beta.1"

group :staging, :production do
gem "rack-timeout"
gem "rails_12factor"
gem "rack-timeout", "~> 0.6.0"
gem "rails_12factor", "~> 0.0.3"
end

group :development, :test do
gem "bundler-audit", require: false
gem "byebug"
gem "dotenv-rails"
gem "foreman"
gem "listen"
gem "rspec-rails", ">= 4.0.0.beta4"
gem "bundler-audit", "~> 0.6.1", require: false
gem "byebug", "~> 11.1.1"
gem "dotenv-rails", "~> 2.7.5"
gem "foreman", "~> 0.87.0"
gem "listen", "~> 3.9.0"
gem "rspec-rails", "~> 4.0.0.beta4"
Copy link

Copilot AI Dec 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version constraint ~> 4.0.0.beta4 should be updated to ~> 4.0.0 to reflect the stable version 4.0.2 that's actually being used in Gemfile.lock. Using a beta version constraint when a stable release is available is misleading.

Suggested change
gem "rspec-rails", "~> 4.0.0.beta4"
gem "rspec-rails", "~> 4.0.0"

Copilot uses AI. Check for mistakes.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems like a valid comment. Is there a reason we want the beta4 or the upgrade is just not part of this PR?

end

group :test do
gem "capybara"
gem "factory_bot_rails"
gem "launchy"
gem "selenium-webdriver", ">= 4.0.0.alpha4"
gem "shoulda-matchers"
gem "webmock"
gem "capybara", "~> 3.39.0"
gem "factory_bot_rails", "~> 6.2.0"
gem "launchy", "~> 2.4.3"
gem "matrix", "~> 0.4.2"
gem "selenium-webdriver", "~> 4.20.0"
gem "shoulda-matchers", "~> 4.2.0"
gem "webmock", "~> 3.8.2"
end
Loading