-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathGemfile
More file actions
27 lines (21 loc) · 786 Bytes
/
Gemfile
File metadata and controls
27 lines (21 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in capybara_accessibility_audit.gemspec.
gemspec
# Start debugger with binding.b [https://github.com/ruby/debug]
# gem "debug", ">= 1.0.0"
rails_version = ENV.fetch("RAILS_VERSION", "7.2")
rails_constraint = if rails_version == "main"
{github: "rails/rails"}
else
"~> #{rails_version}.0"
end
gem "rails", rails_constraint
gem "rspec-rails"
gem "minitest", "< 6"
gem "puma"
gem "standard", "~> 1.12"
gem "capybara-playwright-driver", require: "capybara/playwright"
gem "cuprite", require: "capybara/cuprite"
gem "rspec-matchers-active_support-notifications", github: "josegomezr/rspec-matchers-active_support-notifications"
gem "selenium-webdriver"