Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Test
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
inputs:
branch:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ mkmf.log
Gemfile.lock
node_modules/
.venv/
/vendor/
9 changes: 7 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@ gem "guard-rspec", require: false

group :test, :development do
gem "webmock"
gem "puma", '~> 6'
gem "rackup"
# Capybara 3.36 (the newest Capybara that supports Ruby 2.6, which CI still
# targets) uses the Puma 5 events API; Puma 6 removed Puma::Events.strings,
# which broke the Capybara server boot. Pin to Puma 5 for compatibility.
gem "puma", '~> 5'
# Puma 5's rack handler requires `rack/handler`, which Rack 3 removed (it
# moved to the separate `rackup` gem). Pin Rack 2 so Capybara can boot Puma.
gem "rack", '~> 2.2'
gem "pry"
gem "simplecov", require: false
end
Loading
Loading