-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
39 lines (31 loc) · 878 Bytes
/
Gemfile
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
39
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '>= 6', '< 7'
gem 'haml-rails', '>= 2.0', '< 3'
gem 'sass-rails', '>= 5', '< 7'
gem 'cancancan', '>= 3.3', '< 4'
gem 'simple_form', '>= 5.1', '< 6'
gem 'vanilla_nested', '>= 1.3', '< 2'
group :development, :test do
gem 'database_cleaner', '>=1.8', '<2'
gem 'devise', '>= 4.8', '< 5'
gem 'faker', '>=0'
gem 'sqlite3', '>= 1.4.2', '< 2'
end
group :development do
gem 'bundler', '>= 2', '< 3'
gem 'factory_bot_rails', '>=5.1', '<6'
gem 'juwelier', '~> 2.1.0'
gem 'puma', '>= 4.3', '< 5'
gem 'rubocop', '>=0'
gem 'rubocop-rails', '>=0'
gem 'rubocop-rspec', '>=0'
end
group :test do
gem 'capybara', '>= 3.35', '< 4'
gem 'rspec-html-matchers', '>= 0'
gem 'rspec-rails', '~> 5.0.0'
gem 'shoulda', '>= 0'
gem 'shoulda-matchers', '>=4.3', '<5'
gem 'simplecov', '>= 0'
end