-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
216 lines (178 loc) · 5.5 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
211
212
213
214
215
216
source 'https://rubygems.org'
gem 'rails', '~> 4.2.0'
#gem 'rails', '~> 4.2.7'
#gem 'mysql2', '~> 0.3.18'
gem 'mysql2', '~> 0.4'
gem 'protected_attributes'
gem 'activerecord-session_store'#, github: 'rails/activerecord-session_store'
gem 'eventmachine'#, '~>1.0.7'
gem 'passenger', '~> 5.1.0'
gem 'execjs'
gem 'therubyracer'
# Rails 4.2
gem 'responders', '~> 2.0'
# Teste de geração de pdf no worker
#gem 'wicked_pdf'
# Asset Pipeline
gem 'sass-rails', '~> 5.0.6'
gem 'coffee-rails', '~> 4.2.1'
gem 'uglifier'
# Assets
gem 'autoprefixer-rails'
# gem 'bootstrap-sass'
gem 'bootstrap-sass', '>= 3.4.1'
# gem 'jquery-rails', '~> 4.2.1'
gem 'jquery-rails', '~> 3.1.4'
gem 'jquery-ui-rails', '< 5.0.0'#, '~> 4.1.1'
gem 'bootstrap-datepicker-rails'
gem 'twitter-bootstrap-rails-confirm'
gem 'font-awesome-sass'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# gem 'turbolinks'
# Pundit provides a set of helpers which guide you in leveraging regular Ruby classes
# and object oriented design patterns to build a simple, robust and scaleable
# authorization system.
gem 'pundit'
# Unicode Utils
gem 'unicode_utils'
# geração do tcc em bloco
gem 'redis'#, '3.1.0'
gem 'redis-namespace'
gem 'metalink', git: 'https://github.com/robertosilvino/metalink-ruby', :branch => 'add-binary-structure'
# sidekiq - processamento paralelo
# gem 'sidekiq', '~> 4.2.2'
#gem 'sidekiq', '~> 4.1.4'
gem 'sidekiq', '~> 5.2.8'
gem 'sidekiq-superworker'
# gem 'sidekiq_monitor'
# gem 'rack-protection'
# gem 'hiredis-client'
# sidekiq monitor
# gem 'sinatra', require: false
# gem 'slim'
# Latex tcc -> pdf
gem 'rails-latex', git: 'https://github.com/UFSC/moodle-tcc-rails-latex' , :branch => 'master'
gem 'htmlentities', '~> 4.3.3'
gem 'faraday'#, '0.8.9'
gem 'typhoeus'
gem 'addressable', require: 'addressable/uri'
# Moodle Web Service
gem 'rest-client'
# gem 'nokogiri', '>= 1.8.5'
gem 'nokogiri'
# gem 'nokogiri', '>= 1.11.0.rc4'
# Inherited Resources
gem 'inherited_resources'
# Pagination
gem 'kaminari', '>= 1.2.1'
# Tabs
gem 'tabs_on_rails'
# LTI for moodle integration
gem 'ims-lti', git: 'https://github.com/instructure/ims-lti'
gem 'oauth-instructure'
# Formulários e views
gem 'formtastic'#, '3.0'
gem 'formtastic-bootstrap', git: 'https://github.com/mjbellantoni/formtastic-bootstrap.git'
gem 'rails3-jquery-autocomplete' # Autocomplete no search
# gem 'ckeditor', github: 'galetahub/ckeditor', :tag => 'v4.2.0' # inteface antiga
gem 'ckeditor', git: 'https://github.com/galetahub/ckeditor.git', :tag => 'v4.2.1' # inteface nova
# gem 'ckeditor', github: 'galetahub/ckeditor', :branch => 'master'
# :commit_id => 'd0194ccd3f181be603f419c233ca....'
gem 'rabl'
gem 'active_hash', '~> 1.5.3'
# image on database
# gem 'paperclip', git: 'git://github.com/thoughtbot/paperclip.git'
# Carrierwave (uploads)
gem 'carrierwave','~>1.0' #git: 'https://github.com/carrierwaveuploader/carrierwave.git'
gem 'mini_magick'
# Rake e console
gem 'progress'
gem 'terminal-table'
gem 'whenever', require: false
# Model Utils
gem 'enumerize'
gem 'attribute_normalizer'
gem 'settingslogic' # Configurações
gem 'scoped_search'
gem 'state_machine', git: 'https://github.com/pluginaweek/state_machine.git'
# Decorator pattern
gem 'draper', '~> 2.1.0'
# Errbit (monitoração de falhas)
# gem 'airbrake', '~> 4.3.8'
# OpenStack Swift
gem 'fog'
# group :production do
gem'non-stupid-digest-assets', '~> 1.0', '>= 1.0.9'
gem 'newrelic_rpm'
gem 'redis-rails', '~>5.0'
# end
group :development do
gem 'web-console', '~> 2.0'
gem 'thin'
# gem 'ruby-graphviz', '~> 1.2.2', :require => 'graphviz' # usado pela state_machine
gem 'capistrano-sidekiq', '0.5.4' #, git: 'https://github.com/seuros/capistrano-sidekiq.git'
# Auxilia depuração da aplicação: http://railscasts.com/episodes/402-better-errors-railspanel
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'quiet_assets'
gem 'brakeman', :require => false
# previne N+1 queries
gem 'bullet'
end
group :test do
gem 'fabrication'
gem 'shoulda-matchers', :require => false
gem 'faker'
gem 'vcr'
gem 'webmock'
gem 'pdf-inspector', :require => 'pdf/inspector'
# Request tests
gem 'capybara'
gem 'capybara-puma'
gem 'rack_session_access'
gem 'poltergeist'
gem 'json_spec'
gem 'database_cleaner'
gem 'rspec-wait'
end
group :development, :test do
gem 'rspec-rails'# , '~> 3.0'
gem 'metric_fu', :require => false
gem 'pry-rails', '~>0.3.2'
gem 'simplecov', require: false
# Application pre-loader:
# gem 'spring'
# gem 'spring-watcher-listen'
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Deploy with Capistrano
group :deploy, :development do
gem 'capistrano', '~> 3.4'
gem 'capistrano-rvm'
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'capistrano-upload-config'
gem 'capistrano-db-tasks', :require => false
gem 'capistrano-newrelic'
# gem 'capistrano-git-submodule-strategy'#, '0.1.3'
gem 'capistrano-git'
gem 'capistrano-git-with-submodules', '~> 2.0'
#gem 'capistrano-sidekiq', github: 'seuros/capistrano-sidekiq'
end
# security updates
gem 'rack-protection', '~> 1.5.5'
gem 'ffi', '~> 1.9.24'
gem 'rack', '>= 1.6.11'
# gem 'rack', '>= 2.1.4'
# gem 'puma', '>= 3.12.6'
# gem 'json', '>= 2.3.0'
gem 'websocket-extensions', '>= 0.1.5'
# gem 'actionview', '>= 5.2.4.4'
gem 'rake', '>= 12.3.3'
# Sentry is cross-platform application monitoring, with a focus on error reporting
gem 'sentry-raven'
# gem 'ovirt-engine-sdk', '>= 4.3.1'