-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
37 lines (31 loc) · 830 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
source 'https://rubygems.org'
gem 'rails', '3.2.11'
group :development do
gem 'faker' # mock data
gem 'pg'
gem 'better_errors' # beautiful error page
end
group :production do
gem 'pg'
gem 'thin'
end
# 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'
end
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby' # payment processing
gem 'geocoder' # geolocation
gem 'airbrake' # tracking errors / exceptions
gem 'figaro' # application configurations
gem 'heroku' # web hosting
gem 'jquery-rails'
gem 'haml'
gem 'hashie' # hash on steriods
gem 'prototype-rails'
gem 'coffee-filter'
gem 'httparty'
gem 'hominid' # mailchimp management
gem 'puma' # concurrent webserver