-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
38 lines (32 loc) · 788 Bytes
/
Gemfile
File metadata and controls
38 lines (32 loc) · 788 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
33
34
35
36
37
38
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby file: ".tool-versions"
gem "pry"
gem "puma", "~> 7.2"
gem "rack-attack"
gem "rails", "~> 8.1.1"
gem "redis"
gem "shakapacker", "9.6.1"
gem "tzinfo-data", platforms: [:windows, :jruby]
group :development, :test do
gem "brakeman"
gem "byebug", platforms: [:mri, :windows]
gem "dotenv-rails"
gem "erb_lint", require: false
gem "rspec-rails", "~> 8.0"
gem "rubocop"
gem "rubocop-performance"
gem "rubocop-rails"
gem "rubocop-rspec"
gem "selenium-webdriver", ">= 4.11"
end
group :development do
gem "pivotal_git_scripts"
gem "rack-mini-profiler", "~> 4.0"
gem "web-console"
end
group :test do
gem "capybara"
gem "simplecov"
end