-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
60 lines (49 loc) · 871 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
source 'https://rubygems.org'
ruby "2.3.0"
# Server & DB
gem 'rails', '~> 4.2.5.2'
gem 'puma'
gem 'pg', '~> 0.15'
# HTML, CSS and JS Stack
gem 'slim-rails'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'turbolinks'
gem 'bootstrap-sass'
gem 'font-awesome-sass'
# App Specific
gem 'omniauth-pocket'
gem 'simple_form'
gem 'enumerize'
gem 'rails_utils'
gem 'http'
gem 'ahoy_email'
# Queue
gem 'sidekiq'
# Errors
gem 'party_foul'
# Monitoring
gem "skylight"
group :staging, :production do
gem "rails_12factor"
gem "heroku-deflater"
end
group :development, :test do
gem 'pry-rails'
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'dotenv-rails'
end
group :development do
gem 'spring'
gem 'spring-commands-rspec'
gem 'web-console'
gem 'letter_opener'
end
group :test do
gem 'faker'
gem 'webmock'
gem 'shoulda'
end