Skip to content

Commit

Permalink
Merge pull request #967 from thecartercenter/12507_fix_hound
Browse files Browse the repository at this point in the history
12507: fix hound issues
  • Loading branch information
cooperka authored Nov 29, 2023
2 parents 0390d6b + dbfb2f3 commit aeb4dcc
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 36 deletions.
12 changes: 6 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ group :development, :test do
gem "capybara-screenshot", "~> 1.0"
gem "launchy", "~> 2.5" # For auto-opening capybara html file
gem "puma", "~> 5.6"
gem "selenium-webdriver"
gem "selenium-webdriver", "~> 4.11"

# Debugging
gem "pry", "~> 0.13"
Expand All @@ -178,14 +178,14 @@ group :development, :test do
gem "awesome_print", "~> 1.6"
gem "database_cleaner", "~> 1.7"
gem "db-query-matchers", "~> 0.10"
gem "rubocop", "1.5.2" # Hound supported versions: http://help.houndci.com/en/articles/2461415-supported-linters
gem "rubocop", "1.22.1" # Hound supported versions: http://help.houndci.com/en/articles/2461415-supported-linters
gem "rubocop-rails", "~> 2.8"
gem "rubocop-rake", "~> 0.5.1"
gem "rubocop-rake", "~> 0.6.0"
gem "rubocop-rspec", "~> 2.0"
gem "timecop", "~> 0.9.2"
gem "timecop", "0.9.6" # Timecop 0.9.8 breaks selenium (Selenium::WebDriver::Error::NoSuchWindowError).
end

group :test do
gem "rspec-github", require: false
gem "warning"
gem "rspec-github", "~> 2.4", require: false
gem "warning", "~> 1.3"
end
59 changes: 29 additions & 30 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ GEM
listen (3.8.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
loofah (2.21.3)
loofah (2.22.0)
crass (~> 1.0.2)
nokogiri (>= 1.12.0)
mail (2.8.1)
Expand All @@ -338,8 +338,8 @@ GEM
mime-types-data (3.2023.0808)
mini_magick (4.12.0)
mini_mime (1.1.5)
mini_portile2 (2.8.4)
minitest (5.19.0)
mini_portile2 (2.8.5)
minitest (5.20.0)
mocha (1.16.1)
msgpack (1.7.2)
multi_json (1.15.0)
Expand All @@ -357,11 +357,11 @@ GEM
net-protocol
netrc (0.11.0)
nio4r (2.5.9)
nokogiri (1.15.4)
nokogiri (1.15.5)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
parallel (1.23.0)
parser (3.2.2.3)
parser (3.2.2.4)
ast (~> 2.4.1)
racc
pg (1.4.6)
Expand All @@ -385,7 +385,7 @@ GEM
public_suffix (5.0.3)
puma (5.6.7)
nio4r (~> 2.0)
racc (1.7.1)
racc (1.7.3)
rack (2.2.8)
rack-attack (6.7.0)
rack (>= 1.0, < 4)
Expand Down Expand Up @@ -434,7 +434,7 @@ GEM
rake (>= 12.2)
thor (~> 1.0)
rainbow (3.1.1)
rake (13.0.6)
rake (13.1.0)
random_data (1.6.0)
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
Expand All @@ -448,7 +448,7 @@ GEM
tilt
recaptcha (3.4.0)
json
regexp_parser (2.8.1)
regexp_parser (2.8.2)
request_store (1.5.1)
rack (>= 1.4)
responders (3.1.0)
Expand Down Expand Up @@ -491,26 +491,25 @@ GEM
rspec-mocks (~> 3.9.0)
rspec-support (~> 3.9.0)
rspec-support (3.9.4)
rubocop (1.5.2)
rubocop (1.22.1)
parallel (~> 1.10)
parser (>= 2.7.1.5)
parser (>= 3.0.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml
rubocop-ast (>= 1.2.0, < 2.0)
rubocop-ast (>= 1.12.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 2.0)
rubocop-ast (1.29.0)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
rubocop-rails (2.9.1)
rubocop-rails (2.15.2)
activesupport (>= 4.2.0)
rack (>= 1.1)
rubocop (>= 0.90.0, < 2.0)
rubocop-rake (0.5.1)
rubocop
rubocop-rspec (2.4.0)
rubocop (>= 1.7.0, < 2.0)
rubocop-rake (0.6.0)
rubocop (~> 1.0)
rubocop-ast (>= 1.1.0)
rubocop-rspec (2.11.1)
rubocop (~> 1.19)
ruby-graphviz (1.2.5)
rexml
ruby-jmeter (3.1.08)
Expand Down Expand Up @@ -540,7 +539,7 @@ GEM
scrypt (3.0.7)
ffi-compiler (>= 1.0, < 2.0)
select2-rails (4.0.13)
selenium-webdriver (4.11.0)
selenium-webdriver (4.15.0)
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
websocket (~> 1.0)
Expand Down Expand Up @@ -569,7 +568,7 @@ GEM
tins (~> 1.0)
terrapin (0.6.0)
climate_control (>= 0.0.3, < 1.0)
thor (1.2.2)
thor (1.3.0)
tilt (2.2.0)
timecop (0.9.6)
timeout (0.4.0)
Expand All @@ -586,7 +585,7 @@ GEM
unf (0.1.4)
unf_ext
unf_ext (0.0.8.2)
unicode-display_width (1.8.0)
unicode-display_width (2.5.0)
uniform_notifier (1.16.0)
vcr (6.2.0)
versionist (2.0.1)
Expand All @@ -603,7 +602,7 @@ GEM
rack-proxy (>= 0.6.1)
railties (>= 5.2)
semantic_range (>= 2.3.0)
websocket (1.2.9)
websocket (1.2.10)
websocket-driver (0.7.6)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
Expand All @@ -621,7 +620,7 @@ GEM
xpath (3.2.0)
nokogiri (~> 1.8)
yard (0.9.34)
zeitwerk (2.6.11)
zeitwerk (2.6.12)

PLATFORMS
ruby
Expand Down Expand Up @@ -707,18 +706,18 @@ DEPENDENCIES
reverse_markdown (~> 2.0)
rqrcode (~> 1.1)
rspec-collection_matchers (~> 1.1)
rspec-github
rspec-github (~> 2.4)
rspec-rails (~> 3.9)
rubocop (= 1.5.2)
rubocop (= 1.22.1)
rubocop-rails (~> 2.8)
rubocop-rake (~> 0.5.1)
rubocop-rake (~> 0.6.0)
rubocop-rspec (~> 2.0)
ruby-jmeter (~> 3.1)
rubyzip (~> 2.3)
scout_apm (~> 5.0)
scrypt (~> 3.0)
select2-rails (~> 4.0)
selenium-webdriver
selenium-webdriver (~> 4.11)
sentry-rails (~> 5.0)
sentry-ruby (~> 5.0)
spinjs-rails (~> 1.3.0)
Expand All @@ -728,12 +727,12 @@ DEPENDENCIES
term-ansicolor (~> 1.3)
terrapin (~> 0.6.0)
thor (~> 1.0)
timecop (~> 0.9.2)
timecop (= 0.9.6)
twilio-ruby (~> 4.2)
uglifier (~> 4.2)
vcr (~> 6.0)
versionist (~> 2.0)
warning
warning (~> 1.3)
webmock (~> 3.10)
webpacker (~> 5.4)
whenever (~> 1.0)
Expand Down

0 comments on commit aeb4dcc

Please sign in to comment.