-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
61 lines (52 loc) · 1.08 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
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '3.2.14'
gem 'thin'
gem 'activemerchant'
gem 'andand'
gem 'bluecloth'
gem 'devise', " ~> 3.0.3"
gem 'devise-encryptable'
gem 'exception_notification', '2.4.1'
gem 'gravtastic'
gem 'ledermann-rails-settings', :require => 'rails-settings'
gem 'json'
gem 'haml', '<4.0'
gem 'nokogiri'
gem 'omniauth'
gem 'oa-oauth', :require => 'omniauth/oauth'
gem 'paperclip'
gem 'aws-sdk'
gem 'psych'
gem 'sass'
gem 'rails_autolink'
gem 'rails3-jquery-autocomplete'
gem 'unicorn'
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'
gem 'newrelic_rpm'
group :assets do
gem 'bootstrap-sass'
gem 'sass-rails', " ~> 3.2.3"
gem 'coffee-rails', " ~> 3.2.1"
gem 'uglifier', " >= 1.0.3"
end
gem 'jquery-rails'
gem 'jquery-ui-rails'
group :development, :test do
gem 'letter_opener'
gem 'pry'
gem 'pry-rails'
gem 'pry-debugger'
gem 'awesome_print'
end
group :test do
gem "factory_girl_rails"
gem 'mocha', :require => false
end
group :development, :test do
gem 'mysql2'
end
group :production do
gem 'pg'
gem 'rails_12factor'
end