-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (26 loc) · 572 Bytes
/
Gemfile
File metadata and controls
34 lines (26 loc) · 572 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gemspec
group :development, :test do
gem "rails", "~> 7.1"
gem "sqlite3", "< 2.0"
gem "tilt"
gem "warden"
gem "webrick"
gem "rbs"
# Testing
gem "capybara"
gem "capybara-screenshot"
gem "rspec-rails"
gem "simplecov", require: false
# Linters
# gem 'fasterer'
gem "rubocop"
gem "rubocop-packaging"
gem "rubocop-performance"
gem "rubocop-rspec"
# Tools
# gem 'overcommit', '~> 0.59'
gem "pry-rails"
end