-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·120 lines (98 loc) · 2.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
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
118
119
120
source 'https://rubygems.org'
gem 'rails', '3.2.8'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'bootstrap-sass'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'fancybox-rails', '0.1.4'
gem 'css-social-buttons-rails'
gem 'haml'
# API
gem 'rabl'
# Payment
gem 'stripe'
# Passbook
gem 'passbook', :git => "git://github.com/frozon/passbook.git"
# Authentication
gem 'devise', '1.4.7'
gem 'omniauth-twitter'
gem 'omniauth-facebook', '1.4.0'
gem 'oa-core'
# Social
gem 'fb_graph'
gem 'grackle'
gem 'acts_as_opengraph'
gem 'oauth'
# Layout
gem 'slim-rails'
gem 'inherited_resources'
gem 'simple_form'
gem 'premailer-rails3'
gem 'meta-tags'
gem 'cocoon'
gem "squeel"
# AWS
gem 'fog'
gem 'grape'
# Uploads
gem 'mini_magick'
gem 'rack-cache', :require => 'rack/cache'
gem 'dragonfly'
gem 'jquery-fileupload-rails'
# Admin
gem 'activeadmin'
gem "meta_search"
gem 'heroku'
gem 'airbrake'
# Background Jobs
gem 'daemons'
gem 'delayed_job_active_record'
gem 'hirefireapp'
gem 'configatron'
# Others
gem 'image_scraper', '0.1.7'
gem 'high_voltage'
gem 'facebox-rails'
gem 'ministry_of_state', git: "git://github.com/code-mancers/ministry_of_state.git"
gem "timeline_fu", git: "git://github.com/styx/timeline_fu.git"
gem "mightbuy_models", :path => "vendor/mightbuy-models"
group :development do
gem 'ffaker'
gem 'pry-rails'
gem "quiet_assets"
gem 'rspec-rails', "~> 2.6"
gem "sqlite3"
end
group :production do
# Server
gem 'thin', '1.2.11'
gem 'newrelic_rpm'
gem 'pg', '0.11.0'
gem 'rack-google_analytics'
gem 'gelf'
gem 'graylog2_exceptions', :git => 'git://github.com/wr0ngway/graylog2_exceptions.git'
gem 'graylog2-resque'
end
group :test do
gem 'factory_girl_rails', '1.3.0'
gem 'shoulda'
gem 'capybara'
gem 'capybara-webkit'
gem 'cucumber-rails', :require => false
gem 'email_spec'
gem 'launchy'
gem 'headless'
gem "ci_reporter"
gem 'simplecov', :platform => :mri_19
gem 'simplecov-rcov', :require => false
gem 'database_cleaner'
gem "vcr"
gem "webmock"
end
gem 'rubber'
gem 'open4'
gem 'ejs'
gem 'friendly_id'