This repository was archived by the owner on Jan 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
77 lines (57 loc) · 1.29 KB
/
Gemfile
File metadata and controls
77 lines (57 loc) · 1.29 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
source 'https://rubygems.org'
ruby '2.2.2'
gem 'rails', '4.2.1'
gem 'responders', '~> 2.0'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'bcrypt-ruby'
gem 'pg'
gem 'rack-cors', :require => 'rack/cors'
gem 'haml-rails'
gem 'jquery-ui-rails'
gem 'underscore-rails'
gem 'bootstrap-sass', '~> 3.2.0'
gem 'autoprefixer-rails'
gem 'cancancan', '~> 1.8'
gem 'passbook'
gem 'unicorn'
gem 'foreman'
gem 'filepicker-rails'
gem 'twilio-ruby'
gem 'phone'
gem 'delayed_job_active_record'
gem 'mailchimp-api', require: 'mailchimp'
gem 'validates_email_format_of'
gem 'font-awesome-sass'
gem 's3_file_field', :git => 'git://github.com/gatherdigital/s3_file_field'
gem 'will_paginate', '~> 3.0.6'
# these should move in the future
gem 'better_errors'
gem 'awesome_print'
group :doc do
gem 'sdoc', '~> 0.4.0'
end
group :development do
gem 'thin'
gem 'spring'
gem 'binding_of_caller'
gem 'quiet_assets', '~> 1.0.3'
gem 'pry-byebug'
gem 'letter_opener'
end
group :development, :test do
gem 'sqlite3'
gem 'rspec-rails', '~> 3.0.0'
gem 'factory_girl_rails', '~> 4.0'
gem 'guard'
gem 'dotenv-rails'
gem 'foreman'
end
group :production do
gem 'newrelic_rpm'
gem 'rails_12factor'
end