-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
28 lines (23 loc) · 576 Bytes
/
Gemfile
File metadata and controls
28 lines (23 loc) · 576 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
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
group :development, :test do
gem 'activestorage', '~> 6.0.3.2'
gem 'capybara', '~> 3.33.0'
gem 'puma', '~> 4.3.5'
gem 'rspec_junit_formatter', '~> 0.4.1'
gem 'rspec-rails', '~> 4.0.1'
gem 'selenium-webdriver', '~> 3.142.7'
gem 'simplecov', '~> 0.19.0'
gem 'sprockets-rails', '~> 3.2'
gem 'sqlite3', '~> 1.4.2'
# Linters
gem 'fasterer'
gem 'rubocop'
gem 'rubocop-packaging'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
# Tools
gem 'pry-rails'
end