Skip to content

Commit 02ccd36

Browse files
authored
Merge pull request #174 from joyofrails/chore/bundler-audit
Upgrade gem dependencies
2 parents c8914a4 + de98ae3 commit 02ccd36

File tree

6 files changed

+420
-223
lines changed

6 files changed

+420
-223
lines changed

Gemfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ruby file: ".ruby-version"
66
gem "rails", "~> 7.1", group: [:default, :wasm] # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
77

88
gem "puma", ">= 5.0" # Use the Puma web server [https://github.com/puma/puma]
9-
gem "sqlite3", force_ruby_platform: true # Use sqlite3 as the database for Active Record [https://github.com/sparklemotion/sqlite3-ruby]
9+
gem "sqlite3", "< 2", force_ruby_platform: true # Use sqlite3 as the database for Active Record [https://github.com/sparklemotion/sqlite3-ruby]
1010
gem "activerecord-enhancedsqlite3-adapter" # Enhanced SQLite3 adapter for Active Record [https://github.com/fractaledmind/activerecord-enhancedsqlite3-adapter]
1111
gem "sqlite-ulid" # A SQLite extension for generating and working with ULIDs [https://github.com/asg017/sqlite-ulid]
1212

@@ -58,12 +58,14 @@ end
5858

5959
group :test do
6060
gem "capybara" # Acceptance test framework for web applications [https://github.com/teamcapybara/capybara]
61-
gem "selenium-webdriver" # Ruby bindings for Selenium [https://www.rubydoc.info/gems/selenium-webdriver/frames]
62-
gem "cuprite", git: "https://github.com/rubycdp/cuprite"
61+
gem "cuprite" # Headless Chrome driver for Capybara [https://github.com/rubycdp/cuprite]
6362
gem "simplecov", require: false # Code coverage for Ruby [https://github.com/simplecov-ruby/simplecov]
6463
gem "simplecov-tailwindcss", require: false # Alternative HTML formatter for SimpleCov [https://github.com/chiefpansancolt/simplecov-tailwindcss]
6564
gem "simplecov-cobertura", require: false # Produces Cobertura formatted XML from SimpleCov. [https://github.com/dashingrocket/simplecov-cobertura]
6665
gem "webmock", require: false # Library for stubbing HTTP requests [https://github.com/bblimke/webmock]
66+
67+
# Uncomment the following line and bundle to use Selenium with Firefox
68+
# gem "selenium-webdriver" # Ruby bindings for Selenium [https://www.rubydoc.info/gems/selenium-webdriver/frames]
6769
end
6870

6971
group :development, :test do

0 commit comments

Comments
 (0)