Skip to content

Commit

Permalink
Un-pin capybara gem (#2124)
Browse files Browse the repository at this point in the history
Several years ago in PR 1245 this was pinned with this message:

> Pin the capybara gem, until we can drop Ruby 2.2.0
> Any capybara versions above 3.0.0 require a newer Ruby than 2.2.0, which
> we will support in line with Rails requirements.

Ruby 2.2 support has been dropped, so I think we can drop the pinning now?

It doesn't really do much at this point anyway since dependabot is automatically
updating to the lastest versions soon after they are released.
  • Loading branch information
jordan-brough authored Jan 24, 2022
1 parent 94074f3 commit 97da968
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ end

group :test do
gem "ammeter"
gem "capybara", "3.36.0"
gem "capybara"
gem "database_cleaner"
gem "formulaic"
gem "launchy"
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ DEPENDENCIES
awesome_print
bundler-audit
byebug
capybara (= 3.36.0)
capybara
database_cleaner
dotenv-rails
factory_bot_rails
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails50.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ end

group :test do
gem "ammeter"
gem "capybara", "3.35.3"
gem "capybara"
gem "database_cleaner"
gem "formulaic"
gem "launchy"
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails51.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ end

group :test do
gem "ammeter"
gem "capybara", "3.35.3"
gem "capybara"
gem "database_cleaner"
gem "formulaic"
gem "launchy"
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails52.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ end

group :test do
gem "ammeter"
gem "capybara", "3.35.3"
gem "capybara"
gem "database_cleaner"
gem "formulaic"
gem "launchy"
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails60.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ end

group :test do
gem "ammeter"
gem "capybara", "3.35.3"
gem "capybara"
gem "database_cleaner"
gem "formulaic"
gem "launchy"
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails61.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ end

group :test do
gem "ammeter"
gem "capybara", "3.35.3"
gem "capybara"
gem "database_cleaner"
gem "formulaic"
gem "launchy"
Expand Down

0 comments on commit 97da968

Please sign in to comment.