Skip to content

Commit

Permalink
TECH-17399: switch out rr for rspec-mocks
Browse files Browse the repository at this point in the history
  • Loading branch information
jebentier committed Feb 4, 2025
1 parent f724c60 commit 2747395
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ gem 'minitest', '~> 5.1'
gem 'minitest-reporters'
gem 'mysql2'
gem 'pry'
gem 'rr', '~> 1.1'
gem 'rspec-expectations'
gem 'rspec-mocks'
gem 'rubocop', require: false
gem 'rubocop-minitest', require: false
gem 'rubocop-rails', require: false
Expand Down
12 changes: 10 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ GEM
concurrent-ruby (1.3.4)
crass (1.0.6)
date (3.3.3)
diff-lcs (1.5.1)
erubi (1.12.0)
globalid (1.1.0)
activesupport (>= 5.0)
Expand Down Expand Up @@ -164,7 +165,13 @@ GEM
rake (13.0.6)
regexp_parser (2.8.0)

Check failure on line 166 in Gemfile.lock

View check run for this annotation

Security Scanner as a Service / Bundle Audit

Gemfile.lock#L166

rexml Warning Message: https://github.com/ruby/rexml/security/advisories/GHSA-vg3r-rm7w-2xgh CVE: CVE-2024-35176 Severity: medium

Check failure on line 166 in Gemfile.lock

View check run for this annotation

Security Scanner as a Service / Bundle Audit

Gemfile.lock#L166

rexml Warning Message: https://github.com/ruby/rexml/security/advisories/GHSA-4xqq-m2hx-25v8 CVE: CVE-2024-39908 Severity: medium

Check failure on line 166 in Gemfile.lock

View check run for this annotation

Security Scanner as a Service / Bundle Audit

Gemfile.lock#L166

rexml Warning Message: https://www.ruby-lang.org/en/news/2024/08/01/dos-rexml-cve-2024-41123 CVE: CVE-2024-41123 Severity: medium

Check failure on line 166 in Gemfile.lock

View check run for this annotation

Security Scanner as a Service / Bundle Audit

Gemfile.lock#L166

rexml Warning Message: https://www.ruby-lang.org/en/news/2024/08/01/dos-rexml-cve-2024-41946 CVE: CVE-2024-41946 Severity: medium

Check failure on line 166 in Gemfile.lock

View check run for this annotation

Security Scanner as a Service / Bundle Audit

Gemfile.lock#L166

rexml Warning Message: https://github.com/ruby/rexml/security/advisories/GHSA-vmwr-mc7x-5vc3 CVE: CVE-2024-43398 Severity: medium

Check failure on line 166 in Gemfile.lock

View check run for this annotation

Security Scanner as a Service / Bundle Audit

Gemfile.lock#L166

rexml Warning Message: https://github.com/ruby/rexml/security/advisories/GHSA-2rxp-v6pw-ch6m CVE: CVE-2024-49761 Severity: high
rexml (3.2.5)
rr (1.2.1)
rspec-expectations (3.13.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-mocks (3.13.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.2)
rubocop (1.50.2)
json (~> 2.3)
parallel (~> 1.10)
Expand Down Expand Up @@ -225,7 +232,8 @@ DEPENDENCIES
mutex_m (>= 0.3.0)
mysql2
pry
rr (~> 1.1)
rspec-expectations
rspec-mocks
rubocop
rubocop-minitest
rubocop-rails
Expand Down
3 changes: 2 additions & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
require "minitest/unit"
require "pry"
require "rails/test_help"
require "rr"
require 'rspec/mocks/minitest_integration'
require 'rspec/expectations/minitest_integration'
require "shoulda"
require 'minitest/reporters'

Expand Down

0 comments on commit 2747395

Please sign in to comment.