Skip to content
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
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ group :development do
gem "rake"
gem "rspec"
gem "pry"
gem "rubocop"
gem "rubocop", "~> 1.70.0" if RUBY_VERSION > "3.2"
gem "test-unit"
gem "logger"
# Explicitly add webrick because it has been removed from stdlib in Ruby 3.0
gem "webrick"
end
Expand Down
3 changes: 2 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ GEM
json (2.9.1)
json (2.9.1-java)
language_server-protocol (3.17.0.3)
logger (1.7.0)
matrix (0.4.2)
method_source (1.1.0)
mini_mime (1.1.5)
Expand Down Expand Up @@ -186,7 +187,7 @@ DEPENDENCIES
rackup
rake
rspec
rubocop
rubocop (~> 1.70.0)
simplecov!
test-unit
webrick
Expand Down
1 change: 1 addition & 0 deletions test_projects/rails/rspec_rails/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
source "https://rubygems.org"

# added gems
gem "logger"

gem "rspec-rails"
gem "simplecov", path: "../../.."
Expand Down
1 change: 1 addition & 0 deletions test_projects/rails/rspec_rails/config/application.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require_relative "boot"

require "logger"
require "rails"
# Pick the frameworks you want:
require "active_model/railtie"
Expand Down