-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·210 lines (137 loc) · 4.77 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
source 'https://rubygems.org'
ruby '2.1.8'
gem 'bundler'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.0.0'
gem 'bracket_tree', github: "agoragames/bracket_tree"
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.1'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
# gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'respond-js-rails', '~> 1.4.2'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
gem 'ZenTest', '~> 4.9.5'
gem 'paperclip', '>= 3.4.0' # image upload
gem 'mini_magick'
gem 'aws-sdk'
gem 'unicorn'
gem 'bootstrap-sass', '~> 3.1.1'
# gem 'anjlab-bootstrap-rails', :require => 'bootstrap-rails',
# :github => 'anjlab/bootstrap-rails'
gem 'modernizr-rails'
# gem 'autoprefixer-rails'
gem "therubyracer"
# gem "less-rails"
gem 'devise', github: 'plataformatec/devise'
gem 'devise_security_extension', :github => 'phatworx/devise_security_extension' # security questions
# administration
gem 'activeadmin', github: 'gregbell/active_admin'
gem 'ransack', github: 'ernie/ransack'
gem 'inherited_resources', github: 'josevalim/inherited_resources'
gem 'formtastic', github: 'justinfrench/formtastic'
gem "activeadmin-sortable-tree", :github => "nebirhos/activeadmin-sortable-tree", :branch => "master"
gem 'acts-as-taggable-on'
gem 'viddler-ruby'
gem "rich", github: 'bastiaanterhorst/rich'
#gem 'video-js-rails' # https://github.com/alexesDev/video-js-rails
# gem 'active_admin_editor'
gem 'survey', :git => 'git://github.com/runtimerevolution/survey.git'
# voting
# gem 'acts_as_votable', github: 'ryanto/acts_as_votable'
# https://github.com/ryanto/acts_as_votable
gem "acts_as_votable", "~> 0.7.1"
gem 'friendly_id', '5.0.0.beta4' # Note: You MUST use 5.0.0 or greater for Rails 4.0+
# gem "bxslider-rails", "~> 4.1.0"
gem "bxslider-rails", github: 'grimmwerks/bxslider-rails', ref: 'db1053d8f49e6fedec6afccdf5c3832d9e8c6b18' #cutomized fork
gem 'truncate_html'
gem 'mailboxer' # messaging
# https://github.com/tcocca/acts_as_follower
gem "acts_as_follower", "~> 0.2.0"
# https://github.com/grosser/random_records
gem "random_record"
gem "easy_captcha"
gem "squeel" # Last officially released gem
# gem "squeel", :git => "git://github.com/ernie/squeel.git" # Track git repo
gem "browser"
# https://github.com/fnando/browser
gem 'pg'
gem 'pg_search'
gem 'chosen-rails'
gem 'select2-rails'
gem 'awesome_print'
gem 'sitemap_generator'
gem 'carrierwave'
gem 'fog' # if you're using S3
# NEED TO KEEP SITEMAP NOT ON HEROKU AS ITs readonly
#
gem 'will_paginate', '~> 3.0.5'
gem 'will_paginate-bootstrap'
gem 'mixpanel-ruby'
gem 'newrelic_rpm'
gem 'memcachier'
gem 'dalli'
# gem 'split', "~> 0.7.2", :require => 'split/dashboard'
# gem 'redis'
# gem 'google-api-client'
# gem 'rack-google-analytics'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]
gem 'thin'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'rspec-rails'
gem 'spork'
gem 'spork-rails', :github => 'sporkrb/spork-rails'
gem 'annotate'
gem 'pry'
gem 'pry-byebug'
# gem 'debugger'
gem 'rails-erd'
# gem 'sqlite3'
end
group :production do
# gem 'pg'
gem 'rails_12factor'
end
group :test do
gem 'rspec'
# gem 'autotest'
# gem 'autotest-growl'
# gem 'autotest-fsevent'
# gem 'sqlite3'
end
gem 'rack-mini-profiler'
# profiler for db calls -- moved lower to 'see' the postgres gem
# VIDEO JS INO
# unfortunately the gem for videojs seemed to be out of sync and there's no gems for the plugins anyway so
# they would have to be manually entered; so for the time being just have to keep on top of any changes and
# add each of these plugins manually. Perhaps secondary I'll create a videojs-batterypop gem that pulls
# submodules from all these different githubs and keep it updated that way.
# Youtube:
# https://github.com/eXon/videojs-youtube
# Vimeo:
# https://github.com/eXon/videojs-vimeo
# Google Analytics
# https://github.com/mickey/videojs-ga