This repository has been archived by the owner on Oct 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Gemfile
57 lines (51 loc) · 1.62 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
57
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '~> 5.0'
gem 'active_model_serializers', '~> 0.10.10'
gem 'bcrypt', '~> 3.1', '>= 3.1.13'
gem 'bootstrap-sass', '~> 3.4', '>= 3.4.1'
gem 'bootstrap_form', '~> 4.5'
gem 'builder', '~> 3.2', '>= 3.2.4'
gem 'chosen-rails', '~> 1.9'
gem 'coffee-rails', '~> 4.2', '>= 4.2.2'
gem 'compass-rails', '~> 4.0'
gem 'dotenv-rails', '~> 2.7', '>= 2.7.5'
gem 'font-awesome-sass', '~> 4.7'
gem 'foreman', '~> 0.87.1'
gem 'interactor', '~> 3.1', '>= 3.1.2'
gem 'jquery-rails', '~> 4.3', '>= 4.3.5'
gem 'kaminari', '~> 1.2'
gem 'kaminari-bootstrap', '~> 3.0', '>= 3.0.1'
gem 'local_time', '~> 2.1'
gem 'oj', '~> 3.10', '>= 3.10.6'
gem 'pg', '~> 1.2', '>= 1.2.3'
gem 'possessive', '~> 1.0', '>= 1.0.1'
gem 'puma', '~> 4.3'
gem 'pundit', '~> 2.1'
gem 'rack-throttle', '~> 0.7.0'
gem 'redcarpet', '~> 3.5'
gem 'responders', '~> 3.0'
gem 'sass-rails', '~> 5.0', '>= 5.0.8'
gem 'therubyracer', '~> 0.12.3'
gem 'turbolinks', '~> 5.2', '>= 5.2.1'
gem 'twitter-bootstrap-rails', '~> 4.0'
gem 'uglifier', '~> 4.2'
gem 'whenever', '~> 1.0', require: false
group :development, :test do
gem 'awesome_print', '~> 1.8'
gem 'database_cleaner', '~> 1.8', '>= 1.8.4'
gem 'factory_bot_rails', '~> 5.2'
gem 'guard-rspec', '~> 4.7', '>= 4.7.3', require: false
gem 'pry-byebug', '~> 3.9'
gem 'rails-controller-testing', '~> 0.0.3'
gem 'rspec-its', '~> 1.3'
gem 'rspec-rails', '~> 4.0'
end
group :development do
gem 'capistrano-rails', '~> 1.4', require: false
gem 'spring', '~> 2.1'
gem 'web-console', '~> 3.7'
end
group :staging, :production do
gem 'newrelic_rpm', '~> 6.10', '>= 6.10.0.364'
end