forked from scottohara/loot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
43 lines (31 loc) · 764 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
40
41
42
43
# Copyright (c) 2016 Scott O'Hara, oharagroup.net
# frozen_string_literal: true
ruby '2.4.2'
source 'https://rubygems.org'
gem 'rails', '5.1.4'
# Postgres
gem 'pg'
group :development, :production do
# Use unicorn as the app server
gem 'unicorn'
end
# 12 factor gem for Heroku
gem 'rails_12factor', group: :production
# For JSON serialisation
gem 'active_model_serializers'
group :development, :test do
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'rspec-rails'
gem 'simplecov'
# Required by RSpec in Rails >= 5 for 'assigns'
gem 'rails-controller-testing'
gem 'rubocop', require: false
gem 'rubocop-config-oharagroup', require: false
end
group :development do
gem 'listen'
# Use pry instead of IRB
gem 'pry-nav'
gem 'pry-rails'
end