-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathGemfile
145 lines (129 loc) · 3.64 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
source 'https://rubygems.org'
ruby '2.5.7'
gem 'dotenv-rails', groups: [:development, :test]
gem 'rails', '~> 4.2.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg', '~> 0'
gem 'json'
gem 'sprockets-rails'#, '~> 2.3.0'
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'raphaeljs-rails'
gem 'morrisjs-rails', :git => 'https://github.com/gabriprat/morrisjs-rails'
gem 'yui-compressor'
gem 'jquery-rails'
gem 'jquery-cookie-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
#gem 'unicorn'
gem 'passenger'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
#gem 'byebug', :group => :development
gem 'debase', group: :development
gem 'omniauth-openid'
gem 'omniauth-saml'
gem 'omniauth-multi-provider'
gem 'omniauth-google-oauth2'
gem 'hobo', '>= 2.2.6'
gem 'hobo_fields'
# Hobo has a lot of assets. Stop cluttering the log in development mode.
gem 'quiet_assets', :group => :development
gem 'active_record_query_trace', :group => :development
#gem 'derailed', group: :development
# Hobo's version of will_paginate is required.
gem 'hobo_will_paginate'
gem 'bootstrap-sass'
gem 'hobo_bootstrap', :git => 'https://github.com/informatom/hobo_bootstrap', :branch => 'bootstrap3'
gem 'hobo_bootstrap_ui', :git => 'https://github.com/informatom/hobo_bootstrap_ui', :branch => 'bootstrap3'
gem 'hobo_jquery'#, :git => 'git://github.com/gabriprat/hobo.git', :branch => 'test-jquery2'
gem 'hobo_jquery_ui', '>= 2.2.6'
#gem 'jquery-ui-rails'
gem 'bootbox-rails'
gem 'jquery-ui-themes'
gem 'acts_as_list'
gem 'ancestry'
gem 'ruby-hmac'
gem 'ruby-openid'
gem 'hobo_omniauth', :git => 'https://github.com/gabriprat/hobo_omniauth'
gem 'clockwork'
gem 'protected_attributes'
#gem 'hobo_tokeninput', :git => 'git://github.com/Hobo/hobo_tokeninput.git'
gem 'nested_has_many_through'
gem 'actionmailer_inline_css'
gem 'bigdecimal', '~> 1.4'
gem 'actionpack'
gem 'delocalize'
gem 'wkhtmltopdf-binary'
gem 'wicked_pdf'
gem 'prawn-rails'
gem 'aws-sdk-s3'
gem 'paperclip'
gem 'hobo_paperclip', :git => 'https://github.com/Hobo/hobo_paperclip', :branch => 'master'
gem 'redis'
gem 'redis-rails'
gem 'redis-store'
gem 'request_store'
gem 'newrelic_rpm' #, :group => :production
gem 'redcloth-rails'
gem 'bitmask_attributes'
gem 'detect_timezone_rails'
gem 'murmurhash3'
gem 'excon'
gem 'faraday'
gem 'rails-observers'
gem 'rails_12factor', group: :production
gem 'font_assets', :git => 'https://github.com/ericallam/font_assets'
gem 'http_accept_language'
gem 'mixpanel-ruby'
group :test do
gem 'rake'
# Pretty printed test output
gem 'turn', require: false
gem 'minitest'
gem 'mocha'
#gem 'codeclimate-test-reporter', require: nil
end
gem 'unscoped_associations'
gem 'resque'
gem 'resque-retry'
gem 'resque-delay', :git => 'https://github.com/rykov/resque-delay'
gem 'paranoia'
gem 'secure_headers', :require => 'secure_headers'
gem 'papercrop'
gem 'responders', '=2.1.0'
gem 'flipper'
gem 'flipper-ui'
gem 'flipper-redis'
gem 'immigrant'
gem 'amoeba'
gem 'rails_handsontable'
#gem 'rails_handsontable', '=0.13.2'
gem 'momentjs-rails'
gem 'htmlcompressor'
gem 'gemoji-parser'
gem 'jquery-textcomplete-rails'
gem 'differ'
gem 'stripe'
gem 'sendgrid4r'
gem 'mustache'
gem 'bootstrap_tokenfield_rails'
gem 'countries'
gem 'paypal-sdk-rest'
gem 'role_model'
gem 'rest-client'
gem 'apipie-rails'
gem 'faye-rails'
gem 'faye-redis'
gem 'faye-authentication'
gem 'bower-rails', '~> 0.11.0'
gem 'jquery-historyjs'
gem 'sageone_api_signer', git: 'https://github.com/Sage/sageone_api_signer', :branch => 'implement_v3_signing'
gem 'rinku'
gem 'valvat'