-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
45 lines (37 loc) · 842 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
source 'https://rubygems.org'
ruby '2.3.1'
gem 'rails', '4.2.7.1'
gem 'bugsnag'
gem 'coffee-rails'
gem 'execjs'
gem 'font-awesome-rails'
gem 'fortitude', git: 'https://github.com/ajb/fortitude.git', branch: 'cacheing'
gem 'http'
gem 'pg'
gem 'rails_oneline_logging'
gem 'sassc-rails'
gem 'simple_form'
gem 'simple_form_legend'
gem 'sprockets-rails'
gem 'uglifier'
# Assets
gem 'dvl-core', git: 'https://github.com/dobtco/dvl-core.git'
source 'https://rails-assets.org' do
gem 'rails-assets-jquery-ujs'
gem 'rails-assets-underscore'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'guard-livereload', require: false
gem 'guard-rspec'
gem 'spring'
gem 'spring-commands-rspec'
end
group :development, :test do
gem 'dotenv-rails'
gem 'pry'
end
group :production do
gem 'rails_12factor'
end