-
Notifications
You must be signed in to change notification settings - Fork 86
/
Gemfile
175 lines (144 loc) · 4.28 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
source 'https://rubygems.org'
gem 'rack', '~> 1.5.4'
gem 'rails', '~> 4.1.14.2'
gem 'sass-rails', '~> 5.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.0.3'
gem 'jquery-rails', '~> 3.1.3'
gem 'yui-compressor'
gem 'compass-rails', '~> 3.0.0'
gem 'handlebars_assets'
gem 'select2-rails'
# To use sql UNION with activerecord
gem 'active_record_union', '~> 1.1.0'
# To DRY controllers
gem 'inherited_resources', '~> 1.6.0'
# # TODO: remove when compass-rails is updated to support animations
# # This compass is here so we can have css3/animation
# gem 'compass', '~> 0.12'
gem 'mysql2', '~> 0.3.0'
gem 'rake', '~> 10.5.0'
gem 'therubyracer', :require => 'v8'
gem 'haml'
gem 'will_paginate'
gem 'chronic'
gem 'rails_autolink', '~> 1.1.0'
gem 'simple_form', '~> 3.4.0'
gem 'acts_as_tree', '~> 2.0.0'
gem 'friendly_id', '~> 5.0'
gem 'i18n-js', '~> 3.0.0.rc12'
gem 'rabl'
gem 'yajl-ruby' # json parser for rabl
gem 'valid_email', '~> 0.0.10'#, :git => 'https://github.com/Fire-Dragon-DoL/valid_email.git'
gem 'public_activity', '~> 1.5.0'
gem 'acts-as-taggable-on', '~> 4.0' # tags for spaces
gem 'awesome_print', require: 'ap' # better visualization for query results
gem 'country_select'
# For queues
gem 'resque', '~> 1.25.2', :require => 'resque/server'
gem 'resque-scheduler', :require => 'resque/scheduler/server'
gem 'resque_mailer'
gem 'resque-lock-timeout'
# Authentication and authorization
gem 'bcrypt', '~> 3.1.5'
gem 'devise', '~> 3.5.4'
gem 'devise-encryptable' # TODO: #1271 only while we have old station users
gem 'cancancan', '~> 1.9'
gem 'devise-async'
gem 'net-ldap'
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'omniauth-facebook'
# BigBlueButton integration
gem 'bigbluebutton-api-ruby', git: 'https://github.com/mconf/bigbluebutton-api-ruby.git', branch: 'master'
gem 'bigbluebutton_rails', git: 'https://github.com/mconf/bigbluebutton_rails.git', branch: 'master'
# for logos + attachments
gem 'carrierwave', '~> 0.10.0'
gem 'rmagick', '~> 2.16.0'
gem 'mini_magick', '~> 3.8.1'
# global configurations
gem 'dotenv-rails'
# for bootstrap
gem 'bootstrap-sass', '~> 3.3.0'
gem 'autoprefixer-rails', '~> 6.6.0'
# moment.js for dates
gem 'momentjs-rails', '>= 2.8.1'
# gem 'sprockets', '~> 2.12.4'
# font-awesome (recommended to be here, not in the assets group)
gem 'font-awesome-rails', '~> 4.0'
# to format emails
gem 'premailer-rails'
gem 'nokogiri'
# send emails in case of exceptions in production
gem 'exception_notification', '~> 4.0.0'
# generate .ics
gem 'icalendar'
# More precise distance_of_time_in_words and time_ago_in_words
gem 'dotiw'
# Sanity check on database
gem 'active_sanity'
# Turn rails logs into json
gem "lograge"
gem "logstash-event"
# Uploads
gem 'fineuploader-rails', git: 'https://github.com/mconf/fineuploader-rails.git'
gem 'filesize'
# For gravatar user images
gem 'gravatar_image_tag'
# Captcha
gem 'recaptcha', require: 'recaptcha/rails'
# SOAP webservices
gem 'rubyntlm'
gem 'savon', '~> 2.0'
# Mail tracker
gem 'ahoy_email'
#
# TODO: Gems to review if we can remove/update
#
gem 'httparty'
gem 'rubyzip', '>= 1.0.0' # will load new rubyzip version
gem 'zip-zip' # will load compatibility for old rubyzip API.
group :development do
gem 'translate-rails3', :require => 'translate', :git => 'https://github.com/mconf/translate.git'
gem 'rails-footnotes'
gem 'quiet_assets'
gem 'brakeman', :require => false
gem 'librarian-chef'
gem 'mailcatcher'
# to show better error pages, with more information
gem 'better_errors'
gem 'binding_of_caller'
end
group :development, :test do
gem 'rspec-rails', '~> 2.99.0'
gem 'rspec-mocks'
gem 'populator'
# Until timezone bug is fixed
gem 'forgery', :git => 'https://github.com/sevenwire/forgery.git'
gem 'factory_girl_rails'
gem 'sqlite3'
gem 'webrat'
gem 'capybara'
gem "capybara-webkit"
gem 'launchy'
gem 'shoulda-matchers', '~> 3.0'
gem 'shoulda-kept-assign-to'
gem 'htmlentities', '~> 4.3.3'
gem 'turn', '0.8.2', :require => false # TODO: why 0.8.2?
gem 'simplecov', :require => false
gem 'fooldap'
gem 'spring'
gem 'zonebie'
gem 'timecop'
end
group :test do
gem 'resque_spec'
gem 'database_cleaner'
gem 'webmock', require: false
gem 'codeclimate-test-reporter', group: :test, require: nil
end
# Events module
gem 'geocoder'
gem 'redcarpet'
gem 'epic-editor-rails'
gem 'leaflet-rails'