-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
32 lines (26 loc) · 806 Bytes
/
Gemfile
File metadata and controls
32 lines (26 loc) · 806 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
28
29
30
31
32
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in constraint_validations.gemspec.
gemspec
# To use a debugger
# gem 'byebug', group: [:development, :test]
rails_version = ENV.fetch("RAILS_VERSION", "7.2")
if rails_version == "main"
rails_constraint = { github: "rails/rails" }
else
rails_constraint = "~> #{rails_version}.0"
end
gem "rails", rails_constraint
gem "mutex_m"
gem "ostruct"
gem "sprockets-rails"
gem "turbo-rails"
gem "stimulus-rails"
group :test do
gem "capybara", ">= 3.26", require: "capybara/minitest"
gem "capybara_accessible_selectors", github: "citizensadvice/capybara_accessible_selectors", tag: "v0.4.1"
gem "minitest", "< 6"
gem "rexml"
gem "selenium-webdriver"
gem "webrick"
end