-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
61 lines (47 loc) · 1.19 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
58
59
60
61
# A sample Gemfile
source 'https://rubygems.org'
# Infrastructure.
gem 'crepe', github: 'crepe/crepe'
gem 'puma'
gem 'rake'
# Background processing.
gem 'sidekiq'
gem 'sidekiq-unique-jobs'
gem 'sinatra', '1.3.0', require: nil, group: :production
# Data storage.
gem 'activerecord', '~> 4.0.0', require: 'active_record'
gem 'recommendable', github: 'davidcelis/recommendable'
gem 'pg'
gem 'pg_search'
# Presentation.
gem 'jsonite', github: 'barrelage/jsonite'
gem 'kaminari', require: false
# Email/Notifications.
gem 'mail', '~> 2.5.4'
# Utilities.
gem 'bcrypt-ruby', '~> 3.1.2'
gem 'dotenv'
# Monitoring.
gem 'new_relic-crepe', github: 'crepe/new_relic-crepe'
gem 'foreman', group: :development
group :deployment do
gem 'capistrano', '~> 3.1.0'
gem 'capistrano-chruby', '~> 0.1.1'
gem 'capistrano-bundler', '~> 1.1.2'
gem 'capistrano3-puma', '~> 0.2.2'
gem 'capistrano-rails', '~> 1.1'
end
group :development, :test do
gem 'pry'
# Miniskirt and FFaker are also used for seed data.
gem 'miniskirt', require: false
gem 'ffaker', require: false
end
group :test do
gem 'rspec'
gem 'rack-test'
gem 'database_cleaner'
gem 'webmock'
gem 'vcr'
gem 'coveralls', require: false
end