-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
117 lines (89 loc) · 2.22 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
source 'https://rubygems.org'
gem 'rails', '3.2.11'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg', '0.12.2'
gem 'sorcery'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'zurb-foundation', '~> 4.0.0'
end
gem 'jquery-rails'
group :production do
gem 'pg', '0.12.2'
end
group :staging do
gem 'meta_request'
end
gem "rspec-rails", :group => [:test, :development]
group :test do
gem "factory_girl_rails"
gem "capybara"
gem "guard-rspec"
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
#gem 'jbuilder'
#gem 'rabl'
#gem 'yajl-ruby'
group :development do
gem 'quiet_assets', :group => :development
gem 'pry-rails', :group => :development
gem "nifty-generators", :group => :development
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
end
gem "time_diff", "~> 0.2.2"
gem 'thin'
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'
gem "delayed_job"
gem 'gibbon'
gem 'stalker'
gem "bcrypt-ruby", "~> 3.0.1"
gem 'places'
gem 'heroku'
gem 'geocoder'
gem 'pushmeup'
gem 'bootstrap-sass', '2.1'
gem 'jquery-ui-rails'
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem "jquery-rails"
gem "therubyracer"
gem "less-rails" #Sprockets (what Rails 3.1 uses for its asset pipeline) supports LESS
gem 'push-core'
gem 'push-gcm'
gem 'sendgrid'
gem "urbanairship"
gem 'exception_notification'
gem 'letter_opener', group: :development
gem 'carrierwave'
gem "fog", "~> 1.3.1"
gem "rmagick"
gem 'filepicker-rails'
gem 'delayed_job_active_record'
gem 'ruby-prof', group: :test
gem 'test-unit', group: :test
gem 'aws-sdk'
gem "paperclip", "~> 3.0"
gem 'intercom-rails', '~> 0.2.21'
gem 'newrelic_rpm'
#gem 'rabl'
# Also add either `oj` or `yajl-ruby` as the JSON parser
#gem 'oj'
#gem 'paperclip'
#gem "nokogiri", "~> 1.5.6"
#gem 'aws-sdk'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'