Skip to content

Commit

Permalink
Set explicit minimum dependency on capybara version
Browse files Browse the repository at this point in the history
  • Loading branch information
spohlenz committed Aug 8, 2024
1 parent 754c5df commit 17b75f5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
source 'https://rubygems.org'

# Specify your gem's dependencies in trestle-auth.gemspec
gemspec

group :test do
gem "rspec-rails"

gem 'coveralls_reborn', require: false
gem "capybara"
gem "capybara", ">= 3.39.0"

gem "sqlite3", "~> 1.4"
end
Expand All @@ -16,3 +13,6 @@ gem "rails", "~> 7.1.0"
gem "sprockets-rails"

gem "trestle", github: "TrestleAdmin/trestle"

# Specify your gem's dependencies in trestle-search.gemspec
gemspec
2 changes: 1 addition & 1 deletion gemfiles/rails-6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ group :test do

gem "coveralls_reborn", require: false

gem "capybara"
gem "capybara", ">= 3.39.0"
gem "sqlite3", "~> 1.4"
end

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails-6.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ group :test do

gem "coveralls_reborn", require: false

gem "capybara"
gem "capybara", ">= 3.39.0"
gem "sqlite3", "~> 1.4"
end

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails-7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ group :test do

gem "coveralls_reborn", require: false

gem "capybara"
gem "capybara", ">= 3.39.0"
gem "sqlite3", "~> 1.4"
end

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails-7.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ group :test do

gem "coveralls_reborn", require: false

gem "capybara"
gem "capybara", ">= 3.39.0"
gem "sqlite3", "~> 1.4"
end

Expand Down

0 comments on commit 17b75f5

Please sign in to comment.