This repository has been archived by the owner on Apr 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Gemfile
56 lines (44 loc) · 1.56 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
source 'https://rubygems.org'
# Generate administration
gem 'administrate', '~> 0.8'
# Support for feature flags
gem 'flipper', '~> 0.12'
gem 'flipper-active_record', '~> 0.12'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# Manage pagination for us
gem 'kaminari', '~> 1.1'
# Use sqlite3 as the database for Active Record
gem 'pg', '~> 1.0'
# Use Puma as the app server
gem 'puma', '~> 3.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.1'
# Use Redis adapter to run Action Cable in production
gem 'redis', '~> 4.0'
# Add authentication methods
gem 'sorcery', '~> 0.12'
# Provide a lock system for DB
gem 'with_advisory_lock', '~> 3.2'
group :development, :test do
gem 'action-cable-testing', '~> 0.2'
# Call 'ap' anywhere in the code to pretty print your Ruby objects with style
gem 'awesome_print', '~> 1.8', require: 'ap'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', '~> 10.0', platform: :mri
gem 'factory_bot_rails', '~> 4.8'
gem 'faker', '~> 1.8'
gem 'json_matchers', '= 0.9'
gem 'rspec-rails', '~> 3.6'
gem 'rubocop', '~> 0.52', require: false
gem 'shoulda-matchers', '~> 3.1'
gem 'timecop', '~> 0.8'
end
group :development do
gem 'foreman', '~> 0.84'
gem 'letter_opener', '~> 1.4'
gem 'listen', '~> 3.1'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', '~> 2.0'
gem 'spring-watcher-listen', '~> 2.0'
end