Commit 87e2a79f6280a43ea6fac607bfd797102f3f2ce5
Committed by
David Silva
1 parent
e66b5297
Exists in
gitlab-8.x
Deps for gitlab 8.4
Signed-off-by: Daniel Henrique <danielhmarinho@gmail.com>
Showing
466 changed files
with
1030 additions
and
633 deletions
Show diff stats
Gemfile
1 | 1 | source "https://rubygems.org" |
2 | 2 | |
3 | -def darwin_only(require_as) | |
4 | - RUBY_PLATFORM.include?('darwin') && require_as | |
5 | -end | |
6 | - | |
7 | -def linux_only(require_as) | |
8 | - RUBY_PLATFORM.include?('linux') && require_as | |
9 | -end | |
3 | +gem 'rails', '4.2.5.1' | |
4 | +gem 'rails-deprecated_sanitizer', '~> 1.0.3' | |
10 | 5 | |
11 | -gem "rails", "~> 4.1.0" | |
6 | +# Responders respond_to and respond_with | |
7 | +gem 'responders', '~> 2.0' | |
12 | 8 | |
13 | -# Make links from text | |
14 | -gem 'rails_autolink', '~> 1.1' | |
9 | +# Specify a sprockets version due to security issue | |
10 | +# See https://groups.google.com/forum/#!topic/rubyonrails-security/doAVp0YaTqY | |
11 | +gem 'sprockets', '~> 2.12.3' | |
15 | 12 | |
16 | 13 | # Default values for AR models |
17 | 14 | gem "default_value_for", "~> 3.0.0" |
18 | 15 | |
19 | 16 | # Supported DBs |
20 | -gem "mysql2", group: :mysql | |
21 | -gem "pg", group: :postgres | |
22 | - | |
23 | -# Auth | |
24 | -gem "devise", '3.2.4' | |
25 | -gem "devise-async", '0.9.0' | |
26 | -gem 'omniauth', "~> 1.1.3" | |
27 | -gem 'omniauth-google-oauth2' | |
28 | -gem 'omniauth-twitter' | |
29 | -gem 'omniauth-github' | |
30 | -gem 'omniauth-shibboleth' | |
17 | +gem "mysql2", '~> 0.3.16', group: :mysql | |
18 | +gem "pg", '~> 0.18.2', group: :postgres | |
19 | + | |
20 | +# Authentication libraries | |
21 | +gem 'devise', '~> 3.5.4' | |
22 | +gem 'devise-async', '~> 0.9.0' | |
23 | +gem 'doorkeeper', '~> 2.2.0' | |
24 | +gem 'omniauth', '~> 1.2.2' | |
25 | +gem 'omniauth-azure-oauth2', '~> 0.0.6' | |
26 | +gem 'omniauth-bitbucket', '~> 0.0.2' | |
27 | +gem 'omniauth-cas3', '~> 1.1.2' | |
28 | +gem 'omniauth-facebook', '~> 3.0.0' | |
29 | +gem 'omniauth-github', '~> 1.1.1' | |
30 | +gem 'omniauth-gitlab', '~> 1.0.0' | |
31 | +gem 'omniauth-google-oauth2', '~> 0.2.0' | |
32 | +gem 'omniauth-kerberos', '~> 0.3.0', group: :kerberos | |
33 | +gem 'omniauth-saml', '~> 1.4.2' | |
34 | +gem 'omniauth-shibboleth', '~> 1.2.0' | |
35 | +gem 'omniauth-twitter', '~> 1.2.0' | |
36 | +gem 'omniauth_crowd', '~> 2.2.0' | |
37 | +gem 'rack-oauth2', '~> 1.2.1' | |
38 | + | |
39 | +# reCAPTCHA protection | |
40 | +gem 'recaptcha', require: 'recaptcha/rails' | |
41 | + | |
42 | +# Two-factor authentication | |
43 | +gem 'devise-two-factor', '~> 2.0.0' | |
44 | +gem 'rqrcode-rails3', '~> 0.1.7' | |
45 | +gem 'attr_encrypted', '~> 1.3.4' | |
46 | + | |
47 | +# Browser detection | |
48 | +gem "browser", '~> 1.0.0' | |
31 | 49 | |
32 | 50 | # Extracting information from a git repository |
33 | 51 | # Provide access to Gitlab::Git library |
34 | -gem "gitlab_git", '7.0.0.rc12' | |
35 | - | |
36 | -# Ruby/Rack Git Smart-HTTP Server Handler | |
37 | -gem 'gitlab-grack', '~> 2.0.0.pre', require: 'grack' | |
52 | +gem "gitlab_git", '~> 7.2.24' | |
38 | 53 | |
39 | 54 | # LDAP Auth |
40 | -gem 'gitlab_omniauth-ldap', '1.2.0', require: "omniauth-ldap" | |
55 | +# GitLab fork with several improvements to original library. For full list of changes | |
56 | +# see https://github.com/intridea/omniauth-ldap/compare/master...gitlabhq:master | |
57 | +gem 'gitlab_omniauth-ldap', '~> 1.2.1', require: "omniauth-ldap" | |
41 | 58 | |
42 | 59 | # Git Wiki |
43 | -gem 'gollum-lib', '~> 3.0.0' | |
60 | +gem 'gollum-lib', '~> 4.1.0' | |
44 | 61 | |
45 | 62 | # Language detection |
46 | -gem "gitlab-linguist", "~> 3.0.0", require: "linguist" | |
63 | +gem "github-linguist", "~> 4.7.0", require: "linguist" | |
47 | 64 | |
48 | 65 | # API |
49 | -gem "grape", "~> 0.6.1" | |
50 | -gem "grape-entity", "~> 0.4.2" | |
51 | -gem 'rack-cors', require: 'rack/cors' | |
52 | - | |
53 | -# Format dates and times | |
54 | -# based on human-friendly examples | |
55 | -gem "stamp" | |
56 | - | |
57 | -# Enumeration fields | |
58 | -gem 'enumerize' | |
66 | +gem 'grape', '~> 0.13.0' | |
67 | +gem 'grape-entity', '~> 0.4.2' | |
68 | +gem 'rack-cors', '~> 0.4.0', require: 'rack/cors' | |
59 | 69 | |
60 | 70 | # Pagination |
61 | -gem "kaminari", "~> 0.15.1" | |
71 | +gem "kaminari", "~> 0.16.3" | |
62 | 72 | |
63 | 73 | # HAML |
64 | -gem "haml-rails" | |
74 | +gem "haml-rails", '~> 0.9.0' | |
65 | 75 | |
66 | 76 | # Files attachments |
67 | -gem "carrierwave" | |
77 | +gem "carrierwave", '~> 0.9.0' | |
68 | 78 | |
69 | 79 | # Drag and Drop UI |
70 | -gem 'dropzonejs-rails' | |
80 | +gem 'dropzonejs-rails', '~> 0.7.1' | |
71 | 81 | |
72 | 82 | # for aws storage |
73 | -gem "fog", "~> 1.14" | |
74 | -gem "unf" | |
83 | +gem "fog", "~> 1.36.0" | |
84 | +gem "unf", '~> 0.1.4' | |
75 | 85 | |
76 | 86 | # Authorization |
77 | -gem "six" | |
87 | +gem "six", '~> 0.2.0' | |
78 | 88 | |
79 | 89 | # Seed data |
80 | -gem "seed-fu" | |
81 | - | |
82 | -# Markup pipeline for GitLab | |
83 | -gem 'html-pipeline-gitlab', '~> 0.1.0' | |
84 | - | |
85 | -# Markdown to HTML | |
86 | -gem "github-markup" | |
87 | - | |
88 | -# Required markup gems by github-markdown | |
89 | -gem 'redcarpet', '~> 3.1.2' | |
90 | -gem 'RedCloth' | |
91 | -gem 'rdoc', '~>3.6' | |
92 | -gem 'org-ruby', '= 0.9.9' | |
93 | -gem 'creole', '~>0.3.6' | |
94 | -gem 'wikicloth', '=0.8.1' | |
95 | -gem 'asciidoctor', '= 0.1.4' | |
90 | +gem "seed-fu", '~> 2.3.5' | |
91 | + | |
92 | +# Markdown and HTML processing | |
93 | +gem 'html-pipeline', '~> 1.11.0' | |
94 | +gem 'task_list', '~> 1.0.2', require: 'task_list/railtie' | |
95 | +gem 'github-markup', '~> 1.3.1' | |
96 | +gem 'redcarpet', '~> 3.3.3' | |
97 | +gem 'RedCloth', '~> 4.2.9' | |
98 | +gem 'rdoc', '~>3.6' | |
99 | +gem 'org-ruby', '~> 0.9.12' | |
100 | +gem 'creole', '~> 0.5.0' | |
101 | +gem 'wikicloth', '0.8.1' | |
102 | +gem 'asciidoctor', '~> 1.5.2' | |
103 | +gem 'rouge', '~> 1.10.1' | |
104 | + | |
105 | +# See https://groups.google.com/forum/#!topic/ruby-security-ann/aSbgDiwb24s | |
106 | +# and https://groups.google.com/forum/#!topic/ruby-security-ann/Dy7YiKb_pMM | |
107 | +gem 'nokogiri', '1.6.7.2' | |
96 | 108 | |
97 | 109 | # Diffs |
98 | 110 | gem 'diffy', '~> 3.0.3' |
99 | 111 | |
100 | 112 | # Application server |
101 | 113 | group :unicorn do |
102 | - gem "unicorn", '~> 4.6.3' | |
103 | - gem 'unicorn-worker-killer' | |
114 | + gem "unicorn", '~> 4.8.2' | |
115 | + gem 'unicorn-worker-killer', '~> 0.4.2' | |
104 | 116 | end |
105 | 117 | |
106 | 118 | # State machine |
107 | -gem "state_machine" | |
119 | +gem "state_machines-activerecord", '~> 0.3.0' | |
120 | +# Run events after state machine commits | |
121 | +gem 'after_commit_queue' | |
108 | 122 | |
109 | 123 | # Issue tags |
110 | -gem "acts-as-taggable-on" | |
124 | +gem 'acts-as-taggable-on', '~> 3.4' | |
111 | 125 | |
112 | 126 | # Background jobs |
113 | -gem 'slim' | |
114 | -gem 'sinatra', require: nil | |
115 | -gem 'sidekiq', '2.17.0' | |
127 | +gem 'sinatra', '~> 1.4.4', require: nil | |
128 | +gem 'sidekiq', '~> 4.0' | |
129 | +gem 'sidekiq-cron', '~> 0.4.0' | |
130 | +gem 'redis-namespace' | |
116 | 131 | |
117 | 132 | # HTTP requests |
118 | -gem "httparty" | |
133 | +gem "httparty", '~> 0.13.3' | |
119 | 134 | |
120 | 135 | # Colored output to console |
121 | -gem "colored" | |
136 | +gem "colorize", '~> 0.7.0' | |
122 | 137 | |
123 | 138 | # GitLab settings |
124 | -gem 'settingslogic' | |
139 | +gem 'settingslogic', '~> 2.0.9' | |
125 | 140 | |
126 | 141 | # Misc |
127 | -gem "foreman" | |
128 | -gem 'version_sorter' | |
142 | + | |
143 | +gem 'version_sorter', '~> 2.0.0' | |
129 | 144 | |
130 | 145 | # Cache |
131 | -gem "redis-rails" | |
146 | +gem "redis-rails", '~> 4.0.0' | |
132 | 147 | |
133 | 148 | # Campfire integration |
134 | -gem 'tinder', '~> 1.9.2' | |
149 | +gem 'tinder', '~> 1.10.0' | |
135 | 150 | |
136 | 151 | # HipChat integration |
137 | -gem "hipchat", "~> 0.14.0" | |
152 | +gem 'hipchat', '~> 1.5.0' | |
138 | 153 | |
139 | 154 | # Flowdock integration |
140 | -gem "gitlab-flowdock-git-hook", "~> 0.4.2" | |
155 | +gem "gitlab-flowdock-git-hook", "~> 1.0.1" | |
141 | 156 | |
142 | 157 | # Gemnasium integration |
143 | 158 | gem "gemnasium-gitlab-service", "~> 0.2" |
144 | 159 | |
145 | 160 | # Slack integration |
146 | -gem "slack-notifier", "~> 1.0.0" | |
161 | +gem "slack-notifier", "~> 1.2.0" | |
162 | + | |
163 | +# Asana integration | |
164 | +gem 'asana', '~> 0.4.0' | |
165 | + | |
166 | +# FogBugz integration | |
167 | +gem 'ruby-fogbugz', '~> 0.2.1' | |
147 | 168 | |
148 | 169 | # d3 |
149 | -gem "d3_rails", "~> 3.1.4" | |
170 | +gem 'd3_rails', '~> 3.5.0' | |
171 | + | |
172 | +#cal-heatmap | |
173 | +gem 'cal-heatmap-rails', '~> 3.5.0' | |
150 | 174 | |
151 | 175 | # underscore-rails |
152 | -gem "underscore-rails", "~> 1.4.4" | |
176 | +gem "underscore-rails", "~> 1.8.0" | |
153 | 177 | |
154 | 178 | # Sanitize user input |
155 | 179 | gem "sanitize", '~> 2.0' |
180 | +gem 'babosa', '~> 1.0.2' | |
156 | 181 | |
157 | 182 | # Protect against bruteforcing |
158 | -gem "rack-attack" | |
183 | +gem "rack-attack", '~> 4.3.1' | |
159 | 184 | |
160 | 185 | # Ace editor |
161 | -gem 'ace-rails-ap' | |
186 | +gem 'ace-rails-ap', '~> 2.0.1' | |
162 | 187 | |
163 | 188 | # Keyboard shortcuts |
164 | -gem 'mousetrap-rails' | |
165 | - | |
166 | -# Semantic UI Sass for Sidebar | |
167 | -gem 'semantic-ui-sass', '~> 0.16.1.0' | |
168 | - | |
169 | -gem "sass-rails", '~> 4.0.2' | |
170 | -gem "coffee-rails" | |
171 | -gem "uglifier" | |
172 | -gem "therubyracer" | |
173 | -gem 'turbolinks' | |
174 | -gem 'jquery-turbolinks' | |
175 | - | |
176 | -gem 'select2-rails' | |
177 | -gem 'jquery-atwho-rails', "~> 0.3.3" | |
178 | -gem "jquery-rails" | |
179 | -gem "jquery-ui-rails" | |
180 | -gem "jquery-scrollto-rails" | |
181 | -gem "raphael-rails", "~> 2.1.2" | |
182 | -gem 'bootstrap-sass', '~> 3.0' | |
183 | -gem "font-awesome-rails", '~> 4.2' | |
184 | -gem "gitlab_emoji", "~> 0.0.1.1" | |
185 | -gem "gon", '~> 5.0.0' | |
186 | -gem 'nprogress-rails' | |
187 | -gem 'request_store' | |
188 | -gem "virtus" | |
189 | -gem 'addressable' | |
189 | +gem 'mousetrap-rails', '~> 1.4.6' | |
190 | + | |
191 | +# Detect and convert string character encoding | |
192 | +gem 'charlock_holmes', '~> 0.7.3' | |
193 | + | |
194 | +gem "sass-rails", '~> 5.0.0' | |
195 | +gem "coffee-rails", '~> 4.1.0' | |
196 | +gem "uglifier", '~> 2.7.2' | |
197 | +gem 'turbolinks', '~> 2.5.0' | |
198 | +gem 'jquery-turbolinks', '~> 2.1.0' | |
199 | + | |
200 | +gem 'addressable', '~> 2.3.8' | |
201 | +gem 'bootstrap-sass', '~> 3.3.0' | |
202 | +gem 'font-awesome-rails', '~> 4.2' | |
203 | +gem 'gitlab_emoji', '~> 0.2.0' | |
204 | +gem 'gon', '~> 6.0.1' | |
205 | +gem 'jquery-atwho-rails', '~> 1.3.2' | |
206 | +gem 'jquery-rails', '~> 4.0.0' | |
207 | +gem 'jquery-scrollto-rails', '~> 1.4.3' | |
208 | +gem 'jquery-ui-rails', '~> 5.0.0' | |
209 | +gem 'nprogress-rails', '~> 0.1.6.7' | |
210 | +gem 'raphael-rails', '~> 2.1.2' | |
211 | +gem 'request_store', '~> 1.2.0' | |
212 | +gem 'select2-rails', '~> 3.5.9' | |
213 | +gem 'virtus', '~> 1.0.1' | |
214 | +gem 'net-ssh', '~> 3.0.1' | |
215 | + | |
216 | +# Metrics | |
217 | +group :metrics do | |
218 | + gem 'allocations', '~> 1.0', require: false, platform: :mri | |
219 | + gem 'method_source', '~> 0.8', require: false | |
220 | + gem 'influxdb', '~> 0.2', require: false | |
221 | + gem 'connection_pool', '~> 2.0', require: false | |
222 | +end | |
190 | 223 | |
191 | 224 | group :development do |
192 | - gem "annotate", "~> 2.6.0.beta2" | |
193 | - gem "letter_opener" | |
194 | - gem 'quiet_assets', '~> 1.0.1' | |
195 | - gem 'rack-mini-profiler', require: false | |
225 | + gem "foreman" | |
226 | + gem 'brakeman', '~> 3.1.0', require: false | |
196 | 227 | |
197 | - # Better errors handler | |
198 | - gem 'better_errors' | |
199 | - gem 'binding_of_caller' | |
228 | + gem "annotate", "~> 2.6.0" | |
229 | + gem "letter_opener", '~> 1.1.2' | |
230 | + gem 'quiet_assets', '~> 1.0.2' | |
231 | + gem 'rerun', '~> 0.11.0' | |
232 | + gem 'bullet', require: false | |
233 | + gem 'rblineprof', platform: :mri, require: false | |
234 | + gem 'web-console', '~> 2.0' | |
200 | 235 | |
201 | - gem 'rails_best_practices' | |
236 | + # Better errors handler | |
237 | + gem 'better_errors', '~> 1.0.1' | |
238 | + gem 'binding_of_caller', '~> 0.7.2' | |
202 | 239 | |
203 | 240 | # Docs generator |
204 | - gem "sdoc" | |
241 | + gem "sdoc", '~> 0.3.20' | |
205 | 242 | |
206 | 243 | # thin instead webrick |
207 | - gem 'thin' | |
244 | + gem 'thin', '~> 1.6.1' | |
208 | 245 | end |
209 | 246 | |
210 | 247 | group :development, :test do |
211 | - gem 'coveralls', require: false | |
212 | - # gem 'rails-dev-tweaks' | |
213 | - gem 'spinach-rails' | |
214 | - gem "rspec-rails" | |
215 | - gem "capybara", '~> 2.2.1' | |
216 | - gem "pry" | |
217 | - gem "awesome_print" | |
218 | - gem "database_cleaner" | |
219 | - gem "launchy" | |
220 | - gem 'factory_girl_rails' | |
248 | + gem 'byebug', platform: :mri | |
249 | + gem 'pry-rails' | |
250 | + | |
251 | + gem 'awesome_print', '~> 1.2.0', require: false | |
252 | + gem 'fuubar', '~> 2.0.0' | |
253 | + | |
254 | + gem 'database_cleaner', '~> 1.4.0' | |
255 | + gem 'factory_girl_rails', '~> 4.3.0' | |
256 | + gem 'rspec-rails', '~> 3.3.0' | |
257 | + gem 'spinach-rails', '~> 0.2.1' | |
221 | 258 | |
222 | 259 | # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826) |
223 | - gem 'minitest', '~> 5.3.0' | |
260 | + gem 'minitest', '~> 5.7.0' | |
224 | 261 | |
225 | 262 | # Generate Fake data |
226 | - gem "ffaker" | |
263 | + gem 'ffaker', '~> 2.0.0' | |
227 | 264 | |
228 | - # Guard | |
229 | - gem 'guard-rspec' | |
230 | - gem 'guard-spinach' | |
265 | + gem 'capybara', '~> 2.4.0' | |
266 | + gem 'capybara-screenshot', '~> 1.0.0' | |
267 | + gem 'poltergeist', '~> 1.8.1' | |
231 | 268 | |
232 | - # Notification | |
233 | - gem 'rb-fsevent', require: darwin_only('rb-fsevent') | |
234 | - gem 'growl', require: darwin_only('growl') | |
235 | - gem 'rb-inotify', require: linux_only('rb-inotify') | |
269 | + gem 'teaspoon', '~> 1.0.0' | |
270 | + gem 'teaspoon-jasmine', '~> 2.2.0' | |
236 | 271 | |
237 | - # PhantomJS driver for Capybara | |
238 | - gem 'poltergeist', '~> 1.5.1' | |
272 | + gem 'spring', '~> 1.3.6' | |
273 | + gem 'spring-commands-rspec', '~> 1.0.4' | |
274 | + gem 'spring-commands-spinach', '~> 1.0.0' | |
275 | + gem 'spring-commands-teaspoon', '~> 0.0.2' | |
239 | 276 | |
240 | - gem 'jasmine', '2.0.2' | |
277 | + gem 'rubocop', '~> 0.35.0', require: false | |
278 | + gem 'coveralls', '~> 0.8.2', require: false | |
279 | + gem 'simplecov', '~> 0.10.0', require: false | |
280 | + gem 'flog', require: false | |
281 | + gem 'flay', require: false | |
282 | + gem 'bundler-audit', require: false | |
241 | 283 | |
242 | - gem "spring", '1.1.3' | |
243 | - gem "spring-commands-rspec", '1.0.1' | |
244 | - gem "spring-commands-spinach", '1.0.0' | |
284 | + gem 'benchmark-ips', require: false | |
245 | 285 | end |
246 | 286 | |
247 | 287 | group :test do |
248 | - gem "simplecov", require: false | |
249 | - gem "shoulda-matchers", "~> 2.1.0" | |
250 | - gem 'email_spec' | |
251 | - gem "webmock" | |
252 | - gem 'test_after_commit' | |
288 | + gem 'shoulda-matchers', '~> 2.8.0', require: false | |
289 | + gem 'email_spec', '~> 1.6.0' | |
290 | + gem 'webmock', '~> 1.21.0' | |
291 | + gem 'test_after_commit', '~> 0.4.2' | |
292 | + gem 'sham_rack' | |
253 | 293 | end |
254 | 294 | |
255 | 295 | group :production do |
256 | 296 | gem "gitlab_meta", '7.0' |
297 | + | |
298 | + # Sentry integration | |
299 | + gem 'sentry-raven' | |
257 | 300 | end |
258 | 301 | |
259 | -gem "newrelic_rpm" | |
302 | +gem "newrelic_rpm", '~> 3.9.4.245' | |
303 | +gem 'newrelic-grape' | |
304 | + | |
305 | +gem 'octokit', '~> 3.7.0' | |
306 | + | |
307 | +gem "mail_room", "~> 0.6.1" | |
308 | + | |
309 | +gem 'email_reply_parser', '~> 0.5.8' | |
310 | + | |
311 | +## CI | |
312 | +gem 'activerecord-deprecated_finders', '~> 1.0.3' | |
313 | +gem 'activerecord-session_store', '~> 0.1.0' | |
314 | +gem "nested_form", '~> 0.3.2' | |
315 | + | |
316 | +# OAuth | |
317 | +gem 'oauth2', '~> 1.0.0' | |
318 | + | |
319 | +# Soft deletion | |
320 | +gem "paranoia", "~> 2.0" | |
260 | 321 | gem "omniauth-remote-user", ">= 0.0.6" | ... | ... |
Gemfile.lock
1 | 1 | GEM |
2 | 2 | remote: https://rubygems.org/ |
3 | 3 | specs: |
4 | + CFPropertyList (2.3.2) | |
4 | 5 | RedCloth (4.2.9) |
5 | 6 | ace-rails-ap (2.0.1) |
6 | - actionmailer (4.1.1) | |
7 | - actionpack (= 4.1.1) | |
8 | - actionview (= 4.1.1) | |
9 | - mail (~> 2.5.4) | |
10 | - actionpack (4.1.1) | |
11 | - actionview (= 4.1.1) | |
12 | - activesupport (= 4.1.1) | |
13 | - rack (~> 1.5.2) | |
7 | + actionmailer (4.2.5.1) | |
8 | + actionpack (= 4.2.5.1) | |
9 | + actionview (= 4.2.5.1) | |
10 | + activejob (= 4.2.5.1) | |
11 | + mail (~> 2.5, >= 2.5.4) | |
12 | + rails-dom-testing (~> 1.0, >= 1.0.5) | |
13 | + actionpack (4.2.5.1) | |
14 | + actionview (= 4.2.5.1) | |
15 | + activesupport (= 4.2.5.1) | |
16 | + rack (~> 1.6) | |
14 | 17 | rack-test (~> 0.6.2) |
15 | - actionview (4.1.1) | |
16 | - activesupport (= 4.1.1) | |
18 | + rails-dom-testing (~> 1.0, >= 1.0.5) | |
19 | + rails-html-sanitizer (~> 1.0, >= 1.0.2) | |
20 | + actionview (4.2.5.1) | |
21 | + activesupport (= 4.2.5.1) | |
17 | 22 | builder (~> 3.1) |
18 | 23 | erubis (~> 2.7.0) |
19 | - activemodel (4.1.1) | |
20 | - activesupport (= 4.1.1) | |
24 | + rails-dom-testing (~> 1.0, >= 1.0.5) | |
25 | + rails-html-sanitizer (~> 1.0, >= 1.0.2) | |
26 | + activejob (4.2.5.1) | |
27 | + activesupport (= 4.2.5.1) | |
28 | + globalid (>= 0.3.0) | |
29 | + activemodel (4.2.5.1) | |
30 | + activesupport (= 4.2.5.1) | |
21 | 31 | builder (~> 3.1) |
22 | - activerecord (4.1.1) | |
23 | - activemodel (= 4.1.1) | |
24 | - activesupport (= 4.1.1) | |
25 | - arel (~> 5.0.0) | |
26 | - activesupport (4.1.1) | |
27 | - i18n (~> 0.6, >= 0.6.9) | |
32 | + activerecord (4.2.5.1) | |
33 | + activemodel (= 4.2.5.1) | |
34 | + activesupport (= 4.2.5.1) | |
35 | + arel (~> 6.0) | |
36 | + activerecord-deprecated_finders (1.0.4) | |
37 | + activerecord-session_store (0.1.2) | |
38 | + actionpack (>= 4.0.0, < 5) | |
39 | + activerecord (>= 4.0.0, < 5) | |
40 | + railties (>= 4.0.0, < 5) | |
41 | + activesupport (4.2.5.1) | |
42 | + i18n (~> 0.7) | |
28 | 43 | json (~> 1.7, >= 1.7.7) |
29 | 44 | minitest (~> 5.1) |
30 | - thread_safe (~> 0.1) | |
45 | + thread_safe (~> 0.3, >= 0.3.4) | |
31 | 46 | tzinfo (~> 1.1) |
32 | - acts-as-taggable-on (2.4.1) | |
33 | - rails (>= 3, < 5) | |
34 | - addressable (2.3.5) | |
35 | - annotate (2.6.0) | |
36 | - activerecord (>= 2.3.0) | |
37 | - rake (>= 0.8.7) | |
38 | - arel (5.0.1.20140414130214) | |
39 | - asciidoctor (0.1.4) | |
47 | + acts-as-taggable-on (3.5.0) | |
48 | + activerecord (>= 3.2, < 5) | |
49 | + addressable (2.3.8) | |
50 | + after_commit_queue (1.3.0) | |
51 | + activerecord (>= 3.0) | |
52 | + allocations (1.0.4) | |
53 | + annotate (2.6.10) | |
54 | + activerecord (>= 3.2, <= 4.3) | |
55 | + rake (~> 10.4) | |
56 | + arel (6.0.3) | |
57 | + asana (0.4.0) | |
58 | + faraday (~> 0.9) | |
59 | + faraday_middleware (~> 0.9) | |
60 | + faraday_middleware-multi_json (~> 0.0) | |
61 | + oauth2 (~> 1.0) | |
62 | + asciidoctor (1.5.4) | |
63 | + ast (2.2.0) | |
64 | + astrolabe (1.3.1) | |
65 | + parser (~> 2.2) | |
66 | + attr_encrypted (1.3.5) | |
67 | + encryptor (~> 1.3.0) | |
68 | + attr_required (1.0.1) | |
69 | + autoprefixer-rails (6.3.3.1) | |
70 | + execjs | |
40 | 71 | awesome_print (1.2.0) |
41 | - axiom-types (0.0.5) | |
42 | - descendants_tracker (~> 0.0.1) | |
43 | - ice_nine (~> 0.9) | |
44 | - bcrypt (3.1.7) | |
72 | + axiom-types (0.1.1) | |
73 | + descendants_tracker (~> 0.0.4) | |
74 | + ice_nine (~> 0.11.0) | |
75 | + thread_safe (~> 0.3, >= 0.3.1) | |
76 | + babosa (1.0.2) | |
77 | + bcrypt (3.1.10) | |
78 | + benchmark-ips (2.5.0) | |
45 | 79 | better_errors (1.0.1) |
46 | 80 | coderay (>= 1.0.0) |
47 | 81 | erubis (>= 2.6.6) |
48 | 82 | binding_of_caller (0.7.2) |
49 | 83 | debug_inspector (>= 0.0.1) |
50 | - bootstrap-sass (3.0.3.0) | |
51 | - sass (~> 3.2) | |
84 | + bootstrap-sass (3.3.6) | |
85 | + autoprefixer-rails (>= 5.2.1) | |
86 | + sass (>= 3.3.4) | |
87 | + brakeman (3.1.5) | |
88 | + erubis (~> 2.6) | |
89 | + fastercsv (~> 1.5) | |
90 | + haml (>= 3.0, < 5.0) | |
91 | + highline (>= 1.6.20, < 2.0) | |
92 | + multi_json (~> 1.2) | |
93 | + ruby2ruby (>= 2.1.1, < 2.3.0) | |
94 | + ruby_parser (~> 3.7.0) | |
95 | + safe_yaml (>= 1.0) | |
96 | + sass (~> 3.0) | |
97 | + slim (>= 1.3.6, < 4.0) | |
98 | + terminal-table (~> 1.4) | |
99 | + browser (1.0.1) | |
52 | 100 | builder (3.2.2) |
53 | - capybara (2.2.1) | |
101 | + bullet (5.0.0) | |
102 | + activesupport (>= 3.0.0) | |
103 | + uniform_notifier (~> 1.9.0) | |
104 | + bundler-audit (0.4.0) | |
105 | + bundler (~> 1.2) | |
106 | + thor (~> 0.18) | |
107 | + byebug (8.2.2) | |
108 | + cal-heatmap-rails (3.5.1) | |
109 | + capybara (2.4.4) | |
54 | 110 | mime-types (>= 1.16) |
55 | 111 | nokogiri (>= 1.3.3) |
56 | 112 | rack (>= 1.0.0) |
57 | 113 | rack-test (>= 0.5.4) |
58 | 114 | xpath (~> 2.0) |
115 | + capybara-screenshot (1.0.11) | |
116 | + capybara (>= 1.0, < 3) | |
117 | + launchy | |
59 | 118 | carrierwave (0.9.0) |
60 | 119 | activemodel (>= 3.2.0) |
61 | 120 | activesupport (>= 3.2.0) |
62 | 121 | json (>= 1.7) |
63 | - celluloid (0.15.2) | |
64 | - timers (~> 1.1.0) | |
65 | - charlock_holmes (0.6.9.4) | |
122 | + cause (0.1) | |
123 | + charlock_holmes (0.7.3) | |
124 | + chunky_png (1.3.5) | |
66 | 125 | cliver (0.3.2) |
67 | - code_analyzer (0.4.3) | |
68 | - sexp_processor | |
69 | - coderay (1.1.0) | |
126 | + coderay (1.1.1) | |
70 | 127 | coercible (1.0.0) |
71 | 128 | descendants_tracker (~> 0.0.1) |
72 | - coffee-rails (4.0.1) | |
129 | + coffee-rails (4.1.1) | |
73 | 130 | coffee-script (>= 2.2.0) |
74 | - railties (>= 4.0.0, < 5.0) | |
75 | - coffee-script (2.2.0) | |
131 | + railties (>= 4.0.0, < 5.1.x) | |
132 | + coffee-script (2.4.1) | |
76 | 133 | coffee-script-source |
77 | 134 | execjs |
78 | - coffee-script-source (1.6.3) | |
79 | - colored (1.2) | |
80 | - colorize (0.5.8) | |
81 | - connection_pool (1.2.0) | |
82 | - coveralls (0.7.0) | |
83 | - multi_json (~> 1.3) | |
84 | - rest-client | |
85 | - simplecov (>= 0.7) | |
86 | - term-ansicolor | |
87 | - thor | |
88 | - crack (0.4.1) | |
89 | - safe_yaml (~> 0.9.0) | |
90 | - creole (0.3.8) | |
91 | - d3_rails (3.1.10) | |
135 | + coffee-script-source (1.10.0) | |
136 | + colorize (0.7.7) | |
137 | + concurrent-ruby (1.0.0) | |
138 | + connection_pool (2.2.0) | |
139 | + coveralls (0.8.9) | |
140 | + json (~> 1.8) | |
141 | + rest-client (>= 1.6.8, < 2) | |
142 | + simplecov (~> 0.10.0) | |
143 | + term-ansicolor (~> 1.3) | |
144 | + thor (~> 0.19.1) | |
145 | + tins (~> 1.6.0) | |
146 | + crack (0.4.3) | |
147 | + safe_yaml (~> 1.0.0) | |
148 | + creole (0.5.0) | |
149 | + d3_rails (3.5.16) | |
92 | 150 | railties (>= 3.1.0) |
93 | - daemons (1.1.9) | |
94 | - database_cleaner (1.3.0) | |
151 | + daemons (1.2.3) | |
152 | + database_cleaner (1.4.1) | |
95 | 153 | debug_inspector (0.0.2) |
96 | - default_value_for (3.0.0) | |
154 | + debugger-ruby_core_source (1.3.8) | |
155 | + default_value_for (3.0.1) | |
97 | 156 | activerecord (>= 3.2.0, < 5.0) |
98 | - descendants_tracker (0.0.3) | |
99 | - devise (3.2.4) | |
157 | + descendants_tracker (0.0.4) | |
158 | + thread_safe (~> 0.3, >= 0.3.1) | |
159 | + devise (3.5.6) | |
100 | 160 | bcrypt (~> 3.0) |
101 | 161 | orm_adapter (~> 0.1) |
102 | 162 | railties (>= 3.2.6, < 5) |
163 | + responders | |
103 | 164 | thread_safe (~> 0.1) |
104 | 165 | warden (~> 1.2.3) |
105 | 166 | devise-async (0.9.0) |
106 | 167 | devise (~> 3.2) |
168 | + devise-two-factor (2.0.1) | |
169 | + activesupport | |
170 | + attr_encrypted (~> 1.3.2) | |
171 | + devise (~> 3.5.0) | |
172 | + railties | |
173 | + rotp (~> 2) | |
107 | 174 | diff-lcs (1.2.5) |
108 | - diffy (3.0.3) | |
175 | + diffy (3.0.7) | |
109 | 176 | docile (1.1.5) |
110 | - dotenv (0.9.0) | |
111 | - dropzonejs-rails (0.4.14) | |
177 | + domain_name (0.5.20160128) | |
178 | + unf (>= 0.0.5, < 1.0.0) | |
179 | + doorkeeper (2.2.2) | |
180 | + railties (>= 3.2) | |
181 | + dropzonejs-rails (0.7.3) | |
112 | 182 | rails (> 3.1) |
113 | - email_spec (1.5.0) | |
183 | + email_reply_parser (0.5.8) | |
184 | + email_spec (1.6.0) | |
114 | 185 | launchy (~> 2.1) |
115 | 186 | mail (~> 2.2) |
116 | - emoji (1.0.1) | |
117 | - json | |
118 | - enumerize (0.7.0) | |
119 | - activesupport (>= 3.2) | |
120 | - equalizer (0.0.8) | |
187 | + encryptor (1.3.0) | |
188 | + equalizer (0.0.11) | |
121 | 189 | erubis (2.7.0) |
122 | - escape_utils (0.2.4) | |
123 | - eventmachine (1.0.3) | |
124 | - excon (0.32.1) | |
125 | - execjs (2.0.2) | |
190 | + escape_utils (1.1.0) | |
191 | + eventmachine (1.0.9.1) | |
192 | + excon (0.45.4) | |
193 | + execjs (2.6.0) | |
126 | 194 | expression_parser (0.9.0) |
127 | 195 | factory_girl (4.3.0) |
128 | 196 | activesupport (>= 3.0.0) |
129 | 197 | factory_girl_rails (4.3.0) |
130 | 198 | factory_girl (~> 4.3.0) |
131 | 199 | railties (>= 3.0.0) |
132 | - faraday (0.8.9) | |
133 | - multipart-post (~> 1.2.0) | |
134 | - faraday_middleware (0.9.0) | |
135 | - faraday (>= 0.7.4, < 0.9) | |
136 | - ffaker (1.22.1) | |
137 | - ffi (1.9.3) | |
138 | - fog (1.21.0) | |
139 | - fog-brightbox | |
140 | - fog-core (~> 1.21, >= 1.21.1) | |
200 | + faraday (0.9.2) | |
201 | + multipart-post (>= 1.2, < 3) | |
202 | + faraday_middleware (0.10.0) | |
203 | + faraday (>= 0.7.4, < 0.10) | |
204 | + faraday_middleware-multi_json (0.0.6) | |
205 | + faraday_middleware | |
206 | + multi_json | |
207 | + fastercsv (1.5.5) | |
208 | + ffaker (2.0.0) | |
209 | + ffi (1.9.10) | |
210 | + fission (0.5.0) | |
211 | + CFPropertyList (~> 2.2) | |
212 | + flay (2.7.0) | |
213 | + erubis (~> 2.7.0) | |
214 | + ruby_parser (~> 3.0) | |
215 | + sexp_processor (~> 4.0) | |
216 | + flog (4.3.2) | |
217 | + ruby_parser (~> 3.1, > 3.1.0) | |
218 | + sexp_processor (~> 4.4) | |
219 | + flowdock (0.7.1) | |
220 | + httparty (~> 0.7) | |
221 | + multi_json | |
222 | + fog (1.36.0) | |
223 | + fog-aliyun (>= 0.1.0) | |
224 | + fog-atmos | |
225 | + fog-aws (>= 0.6.0) | |
226 | + fog-brightbox (~> 0.4) | |
227 | + fog-core (~> 1.32) | |
228 | + fog-dynect (~> 0.0.2) | |
229 | + fog-ecloud (~> 0.1) | |
230 | + fog-google (<= 0.1.0) | |
141 | 231 | fog-json |
232 | + fog-local | |
233 | + fog-powerdns (>= 0.1.1) | |
234 | + fog-profitbricks | |
235 | + fog-radosgw (>= 0.0.2) | |
236 | + fog-riakcs | |
237 | + fog-sakuracloud (>= 0.0.4) | |
238 | + fog-serverlove | |
239 | + fog-softlayer | |
240 | + fog-storm_on_demand | |
241 | + fog-terremark | |
242 | + fog-vmfusion | |
243 | + fog-voxel | |
244 | + fog-xenserver | |
245 | + fog-xml (~> 0.1.1) | |
246 | + ipaddress (~> 0.5) | |
142 | 247 | nokogiri (~> 1.5, >= 1.5.11) |
143 | - fog-brightbox (0.0.1) | |
248 | + fog-aliyun (0.1.0) | |
249 | + fog-core (~> 1.27) | |
250 | + fog-json (~> 1.0) | |
251 | + ipaddress (~> 0.8) | |
252 | + xml-simple (~> 1.1) | |
253 | + fog-atmos (0.1.0) | |
144 | 254 | fog-core |
255 | + fog-xml | |
256 | + fog-aws (0.8.1) | |
257 | + fog-core (~> 1.27) | |
258 | + fog-json (~> 1.0) | |
259 | + fog-xml (~> 0.1) | |
260 | + ipaddress (~> 0.8) | |
261 | + fog-brightbox (0.10.1) | |
262 | + fog-core (~> 1.22) | |
145 | 263 | fog-json |
146 | - fog-core (1.21.1) | |
264 | + inflecto (~> 0.0.2) | |
265 | + fog-core (1.36.0) | |
147 | 266 | builder |
148 | - excon (~> 0.32) | |
149 | - formatador (~> 0.2.0) | |
150 | - mime-types | |
151 | - net-scp (~> 1.1) | |
152 | - net-ssh (>= 2.1.3) | |
153 | - fog-json (1.0.0) | |
154 | - multi_json (~> 1.0) | |
155 | - font-awesome-rails (4.2.0.0) | |
156 | - railties (>= 3.2, < 5.0) | |
157 | - foreman (0.63.0) | |
158 | - dotenv (>= 0.7) | |
159 | - thor (>= 0.13.6) | |
160 | - formatador (0.2.4) | |
161 | - gemnasium-gitlab-service (0.2.2) | |
162 | - rugged (~> 0.19) | |
163 | - gherkin-ruby (0.3.1) | |
164 | - racc | |
165 | - github-markup (1.1.0) | |
166 | - gitlab-flowdock-git-hook (0.4.2.2) | |
267 | + excon (~> 0.45) | |
268 | + formatador (~> 0.2) | |
269 | + fog-dynect (0.0.2) | |
270 | + fog-core | |
271 | + fog-json | |
272 | + fog-xml | |
273 | + fog-ecloud (0.3.0) | |
274 | + fog-core | |
275 | + fog-xml | |
276 | + fog-google (0.1.0) | |
277 | + fog-core | |
278 | + fog-json | |
279 | + fog-xml | |
280 | + fog-json (1.0.2) | |
281 | + fog-core (~> 1.0) | |
282 | + multi_json (~> 1.10) | |
283 | + fog-local (0.2.1) | |
284 | + fog-core (~> 1.27) | |
285 | + fog-powerdns (0.1.1) | |
286 | + fog-core (~> 1.27) | |
287 | + fog-json (~> 1.0) | |
288 | + fog-xml (~> 0.1) | |
289 | + fog-profitbricks (0.0.5) | |
290 | + fog-core | |
291 | + fog-xml | |
292 | + nokogiri | |
293 | + fog-radosgw (0.0.5) | |
294 | + fog-core (>= 1.21.0) | |
295 | + fog-json | |
296 | + fog-xml (>= 0.0.1) | |
297 | + fog-riakcs (0.1.0) | |
298 | + fog-core | |
299 | + fog-json | |
300 | + fog-xml | |
301 | + fog-sakuracloud (1.7.5) | |
302 | + fog-core | |
303 | + fog-json | |
304 | + fog-serverlove (0.1.2) | |
305 | + fog-core | |
306 | + fog-json | |
307 | + fog-softlayer (1.1.0) | |
308 | + fog-core | |
309 | + fog-json | |
310 | + fog-storm_on_demand (0.1.1) | |
311 | + fog-core | |
312 | + fog-json | |
313 | + fog-terremark (0.1.0) | |
314 | + fog-core | |
315 | + fog-xml | |
316 | + fog-vmfusion (0.1.0) | |
317 | + fission | |
318 | + fog-core | |
319 | + fog-voxel (0.1.0) | |
320 | + fog-core | |
321 | + fog-xml | |
322 | + fog-xenserver (0.2.3) | |
323 | + fog-core | |
324 | + fog-xml | |
325 | + fog-xml (0.1.2) | |
326 | + fog-core | |
327 | + nokogiri (~> 1.5, >= 1.5.11) | |
328 | + font-awesome-rails (4.5.0.1) | |
329 | + railties (>= 3.2, < 5.1) | |
330 | + foreman (0.78.0) | |
331 | + thor (~> 0.19.1) | |
332 | + formatador (0.2.5) | |
333 | + fuubar (2.0.0) | |
334 | + rspec (~> 3.0) | |
335 | + ruby-progressbar (~> 1.4) | |
336 | + gemnasium-gitlab-service (0.2.6) | |
337 | + rugged (~> 0.21) | |
338 | + gemojione (2.2.1) | |
339 | + json | |
340 | + get_process_mem (0.2.0) | |
341 | + gherkin-ruby (0.3.2) | |
342 | + github-linguist (4.7.5) | |
343 | + charlock_holmes (~> 0.7.3) | |
344 | + escape_utils (~> 1.1.0) | |
345 | + mime-types (>= 1.19) | |
346 | + rugged (>= 0.23.0b) | |
347 | + github-markup (1.3.3) | |
348 | + gitlab-flowdock-git-hook (1.0.1) | |
349 | + flowdock (~> 0.7) | |
167 | 350 | gitlab-grit (>= 2.4.1) |
168 | 351 | multi_json |
169 | - gitlab-grack (2.0.0.pre) | |
170 | - rack (~> 1.5.1) | |
171 | - gitlab-grit (2.6.12) | |
352 | + gitlab-grit (2.7.3) | |
172 | 353 | charlock_holmes (~> 0.6) |
173 | 354 | diff-lcs (~> 1.1) |
174 | 355 | mime-types (~> 1.15) |
175 | 356 | posix-spawn (~> 0.3) |
176 | - gitlab-linguist (3.0.0) | |
177 | - charlock_holmes (~> 0.6.6) | |
178 | - escape_utils (~> 0.2.4) | |
179 | - mime-types (~> 1.19) | |
180 | - gitlab_emoji (0.0.1.1) | |
181 | - emoji (~> 1.0.1) | |
182 | - gitlab_git (7.0.0.rc12) | |
357 | + gitlab_emoji (0.2.1) | |
358 | + gemojione (~> 2.1) | |
359 | + gitlab_git (7.2.24) | |
183 | 360 | activesupport (~> 4.0) |
184 | - charlock_holmes (~> 0.6) | |
185 | - gitlab-linguist (~> 3.0) | |
186 | - rugged (~> 0.21.2) | |
361 | + charlock_holmes (~> 0.7.3) | |
362 | + github-linguist (~> 4.7.0) | |
363 | + rugged (~> 0.23.3) | |
187 | 364 | gitlab_meta (7.0) |
188 | - gitlab_omniauth-ldap (1.2.0) | |
365 | + gitlab_omniauth-ldap (1.2.1) | |
189 | 366 | net-ldap (~> 0.9) |
190 | 367 | omniauth (~> 1.0) |
191 | 368 | pyu-ruby-sasl (~> 0.0.3.1) |
192 | 369 | rubyntlm (~> 0.3) |
193 | - gollum-lib (3.0.0) | |
194 | - github-markup (~> 1.1.0) | |
195 | - gitlab-grit (~> 2.6.5) | |
196 | - nokogiri (~> 1.6.1) | |
197 | - rouge (~> 1.3.3) | |
370 | + globalid (0.3.6) | |
371 | + activesupport (>= 4.1.0) | |
372 | + gollum-grit_adapter (1.0.0) | |
373 | + gitlab-grit (~> 2.7, >= 2.7.1) | |
374 | + gollum-lib (4.1.0) | |
375 | + github-markup (~> 1.3.3) | |
376 | + gollum-grit_adapter (~> 1.0) | |
377 | + nokogiri (~> 1.6.4) | |
378 | + rouge (~> 1.9) | |
198 | 379 | sanitize (~> 2.1.0) |
199 | 380 | stringex (~> 2.5.1) |
200 | - gon (5.0.1) | |
201 | - actionpack (>= 2.3.0) | |
381 | + gon (6.0.1) | |
382 | + actionpack (>= 3.0) | |
202 | 383 | json |
203 | - grape (0.6.1) | |
384 | + multi_json | |
385 | + request_store (>= 1.0) | |
386 | + grape (0.13.0) | |
204 | 387 | activesupport |
205 | 388 | builder |
206 | - hashie (>= 1.2.0) | |
389 | + hashie (>= 2.1.0) | |
207 | 390 | multi_json (>= 1.3.2) |
208 | 391 | multi_xml (>= 0.5.2) |
209 | 392 | rack (>= 1.3.0) |
210 | 393 | rack-accept |
211 | 394 | rack-mount |
212 | 395 | virtus (>= 1.0.0) |
213 | - grape-entity (0.4.2) | |
396 | + grape-entity (0.4.8) | |
214 | 397 | activesupport |
215 | 398 | multi_json (>= 1.3.2) |
216 | - growl (1.0.3) | |
217 | - guard (2.2.4) | |
218 | - formatador (>= 0.2.4) | |
219 | - listen (~> 2.1) | |
220 | - lumberjack (~> 1.0) | |
221 | - pry (>= 0.9.12) | |
222 | - thor (>= 0.18.1) | |
223 | - guard-rspec (4.2.0) | |
224 | - guard (>= 2.1.1) | |
225 | - rspec (>= 2.14, < 4.0) | |
226 | - guard-spinach (0.0.2) | |
227 | - guard (>= 1.1) | |
228 | - spinach | |
229 | - haml (4.0.5) | |
399 | + haml (4.0.7) | |
230 | 400 | tilt |
231 | - haml-rails (0.5.3) | |
401 | + haml-rails (0.9.0) | |
232 | 402 | actionpack (>= 4.0.1) |
233 | 403 | activesupport (>= 4.0.1) |
234 | - haml (>= 3.1, < 5.0) | |
404 | + haml (>= 4.0.6, < 5.0) | |
405 | + html2haml (>= 1.0.1) | |
235 | 406 | railties (>= 4.0.1) |
236 | - hashie (2.1.2) | |
407 | + hashie (3.4.3) | |
408 | + highline (1.7.8) | |
237 | 409 | hike (1.2.3) |
238 | - hipchat (0.14.0) | |
239 | - httparty | |
410 | + hipchat (1.5.2) | |
240 | 411 | httparty |
412 | + mimemagic | |
241 | 413 | html-pipeline (1.11.0) |
242 | 414 | activesupport (>= 2) |
243 | 415 | nokogiri (~> 1.4) |
244 | - html-pipeline-gitlab (0.1.5) | |
245 | - actionpack (~> 4) | |
246 | - gitlab_emoji (~> 0.0.1) | |
247 | - html-pipeline (~> 1.11.0) | |
248 | - sanitize (~> 2.1) | |
416 | + html2haml (2.0.0) | |
417 | + erubis (~> 2.7.0) | |
418 | + haml (~> 4.0.0) | |
419 | + nokogiri (~> 1.6.0) | |
420 | + ruby_parser (~> 3.5) | |
421 | + http-cookie (1.0.2) | |
422 | + domain_name (~> 0.5) | |
249 | 423 | http_parser.rb (0.5.3) |
250 | - httparty (0.13.0) | |
424 | + httparty (0.13.7) | |
251 | 425 | json (~> 1.8) |
252 | 426 | multi_xml (>= 0.5.2) |
253 | - httpauth (0.2.1) | |
254 | - i18n (0.6.11) | |
255 | - ice_nine (0.10.0) | |
256 | - jasmine (2.0.2) | |
257 | - jasmine-core (~> 2.0.0) | |
258 | - phantomjs | |
259 | - rack (>= 1.2.1) | |
260 | - rake | |
261 | - jasmine-core (2.0.0) | |
262 | - jquery-atwho-rails (0.3.3) | |
263 | - jquery-rails (3.1.0) | |
264 | - railties (>= 3.0, < 5.0) | |
427 | + httpclient (2.7.1) | |
428 | + i18n (0.7.0) | |
429 | + ice_nine (0.11.2) | |
430 | + inflecto (0.0.2) | |
431 | + influxdb (0.2.3) | |
432 | + cause | |
433 | + json | |
434 | + ipaddress (0.8.3) | |
435 | + jquery-atwho-rails (1.3.2) | |
436 | + jquery-rails (4.0.5) | |
437 | + rails-dom-testing (~> 1.0) | |
438 | + railties (>= 4.2.0) | |
265 | 439 | thor (>= 0.14, < 2.0) |
266 | 440 | jquery-scrollto-rails (1.4.3) |
267 | 441 | railties (> 3.1, < 5.0) |
268 | - jquery-turbolinks (2.0.1) | |
442 | + jquery-turbolinks (2.1.0) | |
269 | 443 | railties (>= 3.1.0) |
270 | 444 | turbolinks |
271 | - jquery-ui-rails (4.2.1) | |
445 | + jquery-ui-rails (5.0.5) | |
272 | 446 | railties (>= 3.2.16) |
273 | - json (1.8.1) | |
274 | - jwt (0.1.13) | |
275 | - multi_json (>= 1.5) | |
276 | - kaminari (0.15.1) | |
447 | + json (1.8.3) | |
448 | + jwt (1.5.2) | |
449 | + kaminari (0.16.3) | |
277 | 450 | actionpack (>= 3.0.0) |
278 | 451 | activesupport (>= 3.0.0) |
279 | - kgio (2.8.1) | |
280 | - launchy (2.4.2) | |
452 | + kgio (2.10.0) | |
453 | + launchy (2.4.3) | |
281 | 454 | addressable (~> 2.3) |
282 | 455 | letter_opener (1.1.2) |
283 | 456 | launchy (~> 2.2) |
284 | - libv8 (3.16.14.3) | |
285 | - listen (2.3.1) | |
286 | - celluloid (>= 0.15.2) | |
457 | + listen (3.0.6) | |
287 | 458 | rb-fsevent (>= 0.9.3) |
288 | - rb-inotify (>= 0.9) | |
289 | - lumberjack (1.0.4) | |
290 | - mail (2.5.4) | |
291 | - mime-types (~> 1.16) | |
292 | - treetop (~> 1.4.8) | |
459 | + rb-inotify (>= 0.9.7) | |
460 | + loofah (2.0.3) | |
461 | + nokogiri (>= 1.5.9) | |
462 | + macaddr (1.7.1) | |
463 | + systemu (~> 2.6.2) | |
464 | + mail (2.6.3) | |
465 | + mime-types (>= 1.16, < 3) | |
466 | + mail_room (0.6.1) | |
293 | 467 | method_source (0.8.2) |
294 | 468 | mime-types (1.25.1) |
295 | - mini_portile (0.6.0) | |
296 | - minitest (5.3.5) | |
469 | + mimemagic (0.3.1) | |
470 | + mini_portile2 (2.0.0) | |
471 | + minitest (5.7.0) | |
297 | 472 | mousetrap-rails (1.4.6) |
298 | - multi_json (1.10.1) | |
473 | + multi_json (1.11.2) | |
299 | 474 | multi_xml (0.5.5) |
300 | - multipart-post (1.2.0) | |
301 | - mysql2 (0.3.16) | |
302 | - net-ldap (0.9.0) | |
303 | - net-scp (1.1.2) | |
304 | - net-ssh (>= 2.6.5) | |
305 | - net-ssh (2.8.0) | |
475 | + multipart-post (2.0.0) | |
476 | + mysql2 (0.3.20) | |
477 | + nested_form (0.3.2) | |
478 | + net-ldap (0.14.0) | |
479 | + net-ssh (3.0.2) | |
480 | + netrc (0.11.0) | |
481 | + newrelic-grape (2.1.0) | |
482 | + grape | |
483 | + newrelic_rpm | |
306 | 484 | newrelic_rpm (3.9.4.245) |
307 | - nokogiri (1.6.2.1) | |
308 | - mini_portile (= 0.6.0) | |
309 | - nprogress-rails (0.1.2.3) | |
310 | - oauth (0.4.7) | |
311 | - oauth2 (0.8.1) | |
312 | - faraday (~> 0.8) | |
313 | - httpauth (~> 0.1) | |
314 | - jwt (~> 0.1.4) | |
315 | - multi_json (~> 1.0) | |
485 | + nokogiri (1.6.7.2) | |
486 | + mini_portile2 (~> 2.0.0.rc2) | |
487 | + nprogress-rails (0.1.6.7) | |
488 | + oauth (0.5.0) | |
489 | + oauth2 (1.0.0) | |
490 | + faraday (>= 0.8, < 0.10) | |
491 | + jwt (~> 1.0) | |
492 | + multi_json (~> 1.3) | |
493 | + multi_xml (~> 0.5) | |
316 | 494 | rack (~> 1.2) |
317 | - omniauth (1.1.4) | |
318 | - hashie (>= 1.2, < 3) | |
319 | - rack | |
320 | - omniauth-github (1.1.1) | |
495 | + octokit (3.7.1) | |
496 | + sawyer (~> 0.6.0, >= 0.5.3) | |
497 | + omniauth (1.2.2) | |
498 | + hashie (>= 1.2, < 4) | |
499 | + rack (~> 1.0) | |
500 | + omniauth-azure-oauth2 (0.0.6) | |
501 | + jwt (~> 1.0) | |
321 | 502 | omniauth (~> 1.0) |
322 | 503 | omniauth-oauth2 (~> 1.1) |
323 | - omniauth-google-oauth2 (0.2.5) | |
324 | - omniauth (> 1.0) | |
504 | + omniauth-bitbucket (0.0.2) | |
505 | + multi_json (~> 1.7) | |
506 | + omniauth (~> 1.1) | |
507 | + omniauth-oauth (~> 1.0) | |
508 | + omniauth-cas3 (1.1.3) | |
509 | + addressable (~> 2.3) | |
510 | + nokogiri (~> 1.6.6) | |
511 | + omniauth (~> 1.2) | |
512 | + omniauth-facebook (3.0.0) | |
513 | + omniauth-oauth2 (~> 1.2) | |
514 | + omniauth-github (1.1.2) | |
515 | + omniauth (~> 1.0) | |
325 | 516 | omniauth-oauth2 (~> 1.1) |
326 | - omniauth-oauth (1.0.1) | |
327 | - oauth | |
517 | + omniauth-gitlab (1.0.2) | |
518 | + omniauth (~> 1.0) | |
519 | + omniauth-oauth2 (~> 1.0) | |
520 | + omniauth-google-oauth2 (0.2.10) | |
521 | + addressable (~> 2.3) | |
522 | + jwt (~> 1.0) | |
523 | + multi_json (~> 1.3) | |
524 | + omniauth (>= 1.1.1) | |
525 | + omniauth-oauth2 (~> 1.3.1) | |
526 | + omniauth-kerberos (0.3.0) | |
527 | + omniauth-multipassword | |
528 | + timfel-krb5-auth (~> 0.8) | |
529 | + omniauth-multipassword (0.4.2) | |
328 | 530 | omniauth (~> 1.0) |
329 | - omniauth-oauth2 (1.1.1) | |
330 | - oauth2 (~> 0.8.0) | |
531 | + omniauth-oauth (1.1.0) | |
532 | + oauth | |
331 | 533 | omniauth (~> 1.0) |
332 | - omniauth-remote-user (0.0.6) | |
534 | + omniauth-oauth2 (1.3.1) | |
535 | + oauth2 (~> 1.0) | |
536 | + omniauth (~> 1.2) | |
537 | + omniauth-remote-user (0.1.1) | |
333 | 538 | omniauth (~> 1.0) |
334 | - omniauth-shibboleth (1.1.1) | |
539 | + omniauth-saml (1.4.2) | |
540 | + omniauth (~> 1.1) | |
541 | + ruby-saml (~> 1.1, >= 1.1.1) | |
542 | + omniauth-shibboleth (1.2.1) | |
335 | 543 | omniauth (>= 1.0.0) |
336 | - omniauth-twitter (1.0.1) | |
337 | - multi_json (~> 1.3) | |
338 | - omniauth-oauth (~> 1.0) | |
339 | - org-ruby (0.9.9) | |
544 | + omniauth-twitter (1.2.1) | |
545 | + json (~> 1.3) | |
546 | + omniauth-oauth (~> 1.1) | |
547 | + omniauth_crowd (2.2.3) | |
548 | + activesupport | |
549 | + nokogiri (>= 1.4.4) | |
550 | + omniauth (~> 1.0) | |
551 | + org-ruby (0.9.12) | |
340 | 552 | rubypants (~> 0.2) |
341 | 553 | orm_adapter (0.5.0) |
342 | - pg (0.15.1) | |
343 | - phantomjs (1.9.2.0) | |
344 | - poltergeist (1.5.1) | |
554 | + paranoia (2.1.5) | |
555 | + activerecord (~> 4.0) | |
556 | + parser (2.3.0.6) | |
557 | + ast (~> 2.2) | |
558 | + pg (0.18.4) | |
559 | + poltergeist (1.8.1) | |
345 | 560 | capybara (~> 2.1) |
346 | 561 | cliver (~> 0.3.1) |
347 | 562 | multi_json (~> 1.0) |
348 | 563 | websocket-driver (>= 0.2.0) |
349 | - polyglot (0.3.4) | |
350 | - posix-spawn (0.3.9) | |
351 | - pry (0.9.12.4) | |
352 | - coderay (~> 1.0) | |
353 | - method_source (~> 0.8) | |
564 | + posix-spawn (0.3.11) | |
565 | + powerpack (0.1.1) | |
566 | + pry (0.10.3) | |
567 | + coderay (~> 1.1.0) | |
568 | + method_source (~> 0.8.1) | |
354 | 569 | slop (~> 3.4) |
570 | + pry-rails (0.3.4) | |
571 | + pry (>= 0.9.10) | |
355 | 572 | pyu-ruby-sasl (0.0.3.3) |
356 | - quiet_assets (1.0.2) | |
573 | + quiet_assets (1.0.3) | |
357 | 574 | railties (>= 3.1, < 5.0) |
358 | - racc (1.4.10) | |
359 | - rack (1.5.2) | |
575 | + rack (1.6.4) | |
360 | 576 | rack-accept (0.4.5) |
361 | 577 | rack (>= 0.4) |
362 | - rack-attack (2.3.0) | |
578 | + rack-attack (4.3.1) | |
363 | 579 | rack |
364 | - rack-cors (0.2.9) | |
365 | - rack-mini-profiler (0.9.0) | |
366 | - rack (>= 1.1.3) | |
580 | + rack-cors (0.4.0) | |
367 | 581 | rack-mount (0.8.3) |
368 | 582 | rack (>= 1.0.0) |
369 | - rack-protection (1.5.1) | |
583 | + rack-oauth2 (1.2.3) | |
584 | + activesupport (>= 2.3) | |
585 | + attr_required (>= 0.0.5) | |
586 | + httpclient (>= 2.4) | |
587 | + multi_json (>= 1.3.6) | |
588 | + rack (>= 1.1) | |
589 | + rack-protection (1.5.3) | |
370 | 590 | rack |
371 | - rack-test (0.6.2) | |
591 | + rack-test (0.6.3) | |
372 | 592 | rack (>= 1.0) |
373 | - rails (4.1.1) | |
374 | - actionmailer (= 4.1.1) | |
375 | - actionpack (= 4.1.1) | |
376 | - actionview (= 4.1.1) | |
377 | - activemodel (= 4.1.1) | |
378 | - activerecord (= 4.1.1) | |
379 | - activesupport (= 4.1.1) | |
593 | + rails (4.2.5.1) | |
594 | + actionmailer (= 4.2.5.1) | |
595 | + actionpack (= 4.2.5.1) | |
596 | + actionview (= 4.2.5.1) | |
597 | + activejob (= 4.2.5.1) | |
598 | + activemodel (= 4.2.5.1) | |
599 | + activerecord (= 4.2.5.1) | |
600 | + activesupport (= 4.2.5.1) | |
380 | 601 | bundler (>= 1.3.0, < 2.0) |
381 | - railties (= 4.1.1) | |
382 | - sprockets-rails (~> 2.0) | |
383 | - rails_autolink (1.1.6) | |
384 | - rails (> 3.1) | |
385 | - rails_best_practices (1.14.4) | |
386 | - activesupport | |
387 | - awesome_print | |
388 | - code_analyzer (>= 0.4.3) | |
389 | - colored | |
390 | - erubis | |
391 | - i18n | |
392 | - require_all | |
393 | - ruby-progressbar | |
394 | - railties (4.1.1) | |
395 | - actionpack (= 4.1.1) | |
396 | - activesupport (= 4.1.1) | |
602 | + railties (= 4.2.5.1) | |
603 | + sprockets-rails | |
604 | + rails-deprecated_sanitizer (1.0.3) | |
605 | + activesupport (>= 4.2.0.alpha) | |
606 | + rails-dom-testing (1.0.7) | |
607 | + activesupport (>= 4.2.0.beta, < 5.0) | |
608 | + nokogiri (~> 1.6.0) | |
609 | + rails-deprecated_sanitizer (>= 1.0.1) | |
610 | + rails-html-sanitizer (1.0.3) | |
611 | + loofah (~> 2.0) | |
612 | + railties (4.2.5.1) | |
613 | + actionpack (= 4.2.5.1) | |
614 | + activesupport (= 4.2.5.1) | |
397 | 615 | rake (>= 0.8.7) |
398 | 616 | thor (>= 0.18.1, < 2.0) |
399 | - raindrops (0.12.0) | |
400 | - rake (10.3.2) | |
617 | + rainbow (2.1.0) | |
618 | + raindrops (0.15.0) | |
619 | + rake (10.5.0) | |
401 | 620 | raphael-rails (2.1.2) |
402 | - rb-fsevent (0.9.3) | |
403 | - rb-inotify (0.9.2) | |
621 | + rb-fsevent (0.9.7) | |
622 | + rb-inotify (0.9.7) | |
404 | 623 | ffi (>= 0.5.0) |
624 | + rblineprof (0.3.6) | |
625 | + debugger-ruby_core_source (~> 1.3) | |
405 | 626 | rdoc (3.12.2) |
406 | 627 | json (~> 1.4) |
407 | - redcarpet (3.1.2) | |
408 | - redis (3.0.6) | |
409 | - redis-actionpack (4.0.0) | |
628 | + recaptcha (1.1.0) | |
629 | + json | |
630 | + redcarpet (3.3.4) | |
631 | + redis (3.2.2) | |
632 | + redis-actionpack (4.0.1) | |
410 | 633 | actionpack (~> 4) |
411 | 634 | redis-rack (~> 1.5.0) |
412 | 635 | redis-store (~> 1.1.0) |
413 | - redis-activesupport (4.0.0) | |
414 | - activesupport (~> 4) | |
636 | + redis-activesupport (4.1.5) | |
637 | + activesupport (>= 3, < 5) | |
415 | 638 | redis-store (~> 1.1.0) |
416 | - redis-namespace (1.4.1) | |
417 | - redis (~> 3.0.4) | |
639 | + redis-namespace (1.5.2) | |
640 | + redis (~> 3.0, >= 3.0.4) | |
418 | 641 | redis-rack (1.5.0) |
419 | 642 | rack (~> 1.5) |
420 | 643 | redis-store (~> 1.1.0) |
... | ... | @@ -422,132 +645,184 @@ GEM |
422 | 645 | redis-actionpack (~> 4) |
423 | 646 | redis-activesupport (~> 4) |
424 | 647 | redis-store (~> 1.1.0) |
425 | - redis-store (1.1.4) | |
648 | + redis-store (1.1.7) | |
426 | 649 | redis (>= 2.2) |
427 | - ref (1.0.5) | |
428 | - request_store (1.0.5) | |
429 | - require_all (1.3.2) | |
430 | - rest-client (1.6.7) | |
431 | - mime-types (>= 1.16) | |
650 | + request_store (1.2.1) | |
651 | + rerun (0.11.0) | |
652 | + listen (~> 3.0) | |
653 | + responders (2.1.1) | |
654 | + railties (>= 4.2.0, < 5.1) | |
655 | + rest-client (1.8.0) | |
656 | + http-cookie (>= 1.0.2, < 2.0) | |
657 | + mime-types (>= 1.16, < 3.0) | |
658 | + netrc (~> 0.7) | |
432 | 659 | rinku (1.7.3) |
433 | - rouge (1.3.3) | |
434 | - rspec (2.14.1) | |
435 | - rspec-core (~> 2.14.0) | |
436 | - rspec-expectations (~> 2.14.0) | |
437 | - rspec-mocks (~> 2.14.0) | |
438 | - rspec-core (2.14.7) | |
439 | - rspec-expectations (2.14.4) | |
440 | - diff-lcs (>= 1.1.3, < 2.0) | |
441 | - rspec-mocks (2.14.4) | |
442 | - rspec-rails (2.14.0) | |
443 | - actionpack (>= 3.0) | |
444 | - activesupport (>= 3.0) | |
445 | - railties (>= 3.0) | |
446 | - rspec-core (~> 2.14.0) | |
447 | - rspec-expectations (~> 2.14.0) | |
448 | - rspec-mocks (~> 2.14.0) | |
449 | - ruby-progressbar (1.2.0) | |
450 | - rubyntlm (0.4.0) | |
660 | + rotp (2.1.1) | |
661 | + rouge (1.10.1) | |
662 | + rqrcode (0.10.1) | |
663 | + chunky_png (~> 1.0) | |
664 | + rqrcode-rails3 (0.1.7) | |
665 | + rqrcode (>= 0.4.2) | |
666 | + rspec (3.3.0) | |
667 | + rspec-core (~> 3.3.0) | |
668 | + rspec-expectations (~> 3.3.0) | |
669 | + rspec-mocks (~> 3.3.0) | |
670 | + rspec-core (3.3.2) | |
671 | + rspec-support (~> 3.3.0) | |
672 | + rspec-expectations (3.3.1) | |
673 | + diff-lcs (>= 1.2.0, < 2.0) | |
674 | + rspec-support (~> 3.3.0) | |
675 | + rspec-mocks (3.3.2) | |
676 | + diff-lcs (>= 1.2.0, < 2.0) | |
677 | + rspec-support (~> 3.3.0) | |
678 | + rspec-rails (3.3.3) | |
679 | + actionpack (>= 3.0, < 4.3) | |
680 | + activesupport (>= 3.0, < 4.3) | |
681 | + railties (>= 3.0, < 4.3) | |
682 | + rspec-core (~> 3.3.0) | |
683 | + rspec-expectations (~> 3.3.0) | |
684 | + rspec-mocks (~> 3.3.0) | |
685 | + rspec-support (~> 3.3.0) | |
686 | + rspec-support (3.3.0) | |
687 | + rubocop (0.35.1) | |
688 | + astrolabe (~> 1.3) | |
689 | + parser (>= 2.2.3.0, < 3.0) | |
690 | + powerpack (~> 0.1) | |
691 | + rainbow (>= 1.99.1, < 3.0) | |
692 | + ruby-progressbar (~> 1.7) | |
693 | + tins (<= 1.6.0) | |
694 | + ruby-fogbugz (0.2.1) | |
695 | + crack (~> 0.4) | |
696 | + ruby-progressbar (1.7.5) | |
697 | + ruby-saml (1.1.2) | |
698 | + nokogiri (>= 1.5.10) | |
699 | + uuid (~> 2.3) | |
700 | + ruby2ruby (2.2.0) | |
701 | + ruby_parser (~> 3.1) | |
702 | + sexp_processor (~> 4.0) | |
703 | + ruby_parser (3.7.3) | |
704 | + sexp_processor (~> 4.1) | |
705 | + rubyntlm (0.6.0) | |
451 | 706 | rubypants (0.2.0) |
452 | - rugged (0.21.2) | |
453 | - safe_yaml (0.9.7) | |
707 | + rufus-scheduler (3.2.0) | |
708 | + rugged (0.23.3) | |
709 | + safe_yaml (1.0.4) | |
454 | 710 | sanitize (2.1.0) |
455 | 711 | nokogiri (>= 1.4.4) |
456 | - sass (3.2.19) | |
457 | - sass-rails (4.0.3) | |
712 | + sass (3.4.21) | |
713 | + sass-rails (5.0.4) | |
458 | 714 | railties (>= 4.0.0, < 5.0) |
459 | - sass (~> 3.2.0) | |
460 | - sprockets (~> 2.8, <= 2.11.0) | |
461 | - sprockets-rails (~> 2.0) | |
715 | + sass (~> 3.1) | |
716 | + sprockets (>= 2.8, < 4.0) | |
717 | + sprockets-rails (>= 2.0, < 4.0) | |
718 | + tilt (>= 1.1, < 3) | |
719 | + sawyer (0.6.0) | |
720 | + addressable (~> 2.3.5) | |
721 | + faraday (~> 0.8, < 0.10) | |
462 | 722 | sdoc (0.3.20) |
463 | 723 | json (>= 1.1.3) |
464 | 724 | rdoc (~> 3.10) |
465 | - seed-fu (2.3.1) | |
466 | - activerecord (>= 3.1, < 4.2) | |
467 | - activesupport (>= 3.1, < 4.2) | |
468 | - select2-rails (3.5.2) | |
725 | + seed-fu (2.3.5) | |
726 | + activerecord (>= 3.1, < 4.3) | |
727 | + activesupport (>= 3.1, < 4.3) | |
728 | + select2-rails (3.5.9.3) | |
469 | 729 | thor (~> 0.14) |
470 | - semantic-ui-sass (0.16.1.0) | |
471 | - sass (~> 3.2) | |
730 | + sentry-raven (0.15.6) | |
731 | + faraday (>= 0.7.6) | |
472 | 732 | settingslogic (2.0.9) |
473 | - sexp_processor (4.4.0) | |
474 | - shoulda-matchers (2.1.0) | |
733 | + sexp_processor (4.7.0) | |
734 | + sham_rack (1.3.6) | |
735 | + rack | |
736 | + shoulda-matchers (2.8.0) | |
475 | 737 | activesupport (>= 3.0.0) |
476 | - sidekiq (2.17.0) | |
477 | - celluloid (>= 0.15.2) | |
478 | - connection_pool (>= 1.0.0) | |
479 | - json | |
480 | - redis (>= 3.0.4) | |
481 | - redis-namespace (>= 1.3.1) | |
738 | + sidekiq (4.1.0) | |
739 | + concurrent-ruby (~> 1.0) | |
740 | + connection_pool (~> 2.2, >= 2.2.0) | |
741 | + redis (~> 3.2, >= 3.2.1) | |
742 | + sidekiq-cron (0.4.2) | |
743 | + redis-namespace (>= 1.5.2) | |
744 | + rufus-scheduler (>= 2.0.24) | |
745 | + sidekiq (>= 4.0.0) | |
482 | 746 | simple_oauth (0.1.9) |
483 | - simplecov (0.9.0) | |
747 | + simplecov (0.10.0) | |
484 | 748 | docile (~> 1.1.0) |
485 | - multi_json | |
486 | - simplecov-html (~> 0.8.0) | |
487 | - simplecov-html (0.8.0) | |
488 | - sinatra (1.4.4) | |
489 | - rack (~> 1.4) | |
749 | + json (~> 1.8) | |
750 | + simplecov-html (~> 0.10.0) | |
751 | + simplecov-html (0.10.0) | |
752 | + sinatra (1.4.7) | |
753 | + rack (~> 1.5) | |
490 | 754 | rack-protection (~> 1.4) |
491 | - tilt (~> 1.3, >= 1.3.4) | |
755 | + tilt (>= 1.3, < 3) | |
492 | 756 | six (0.2.0) |
493 | - slack-notifier (1.0.0) | |
494 | - slim (2.0.2) | |
495 | - temple (~> 0.6.6) | |
757 | + slack-notifier (1.2.1) | |
758 | + slim (3.0.6) | |
759 | + temple (~> 0.7.3) | |
496 | 760 | tilt (>= 1.3.3, < 2.1) |
497 | - slop (3.4.7) | |
498 | - spinach (0.8.7) | |
499 | - colorize (= 0.5.8) | |
500 | - gherkin-ruby (>= 0.3.1) | |
761 | + slop (3.6.0) | |
762 | + spinach (0.8.10) | |
763 | + colorize | |
764 | + gherkin-ruby (>= 0.3.2) | |
765 | + json | |
501 | 766 | spinach-rails (0.2.1) |
502 | 767 | capybara (>= 2.0.0) |
503 | 768 | railties (>= 3) |
504 | 769 | spinach (>= 0.4) |
505 | - spring (1.1.3) | |
506 | - spring-commands-rspec (1.0.1) | |
770 | + spring (1.3.6) | |
771 | + spring-commands-rspec (1.0.4) | |
507 | 772 | spring (>= 0.9.1) |
508 | 773 | spring-commands-spinach (1.0.0) |
509 | 774 | spring (>= 0.9.1) |
510 | - sprockets (2.11.0) | |
775 | + spring-commands-teaspoon (0.0.2) | |
776 | + spring (>= 0.9.1) | |
777 | + sprockets (2.12.4) | |
511 | 778 | hike (~> 1.2) |
512 | 779 | multi_json (~> 1.0) |
513 | 780 | rack (~> 1.0) |
514 | 781 | tilt (~> 1.1, != 1.3.0) |
515 | - sprockets-rails (2.1.3) | |
782 | + sprockets-rails (2.3.3) | |
516 | 783 | actionpack (>= 3.0) |
517 | 784 | activesupport (>= 3.0) |
518 | - sprockets (~> 2.8) | |
519 | - stamp (0.5.0) | |
520 | - state_machine (1.2.0) | |
521 | - stringex (2.5.1) | |
522 | - temple (0.6.7) | |
523 | - term-ansicolor (1.2.2) | |
524 | - tins (~> 0.8) | |
525 | - test_after_commit (0.2.2) | |
526 | - therubyracer (0.12.0) | |
527 | - libv8 (~> 3.16.14.0) | |
528 | - ref | |
529 | - thin (1.6.1) | |
530 | - daemons (>= 1.0.9) | |
531 | - eventmachine (>= 1.0.0) | |
532 | - rack (>= 1.0.0) | |
785 | + sprockets (>= 2.8, < 4.0) | |
786 | + state_machines (0.4.0) | |
787 | + state_machines-activemodel (0.3.0) | |
788 | + activemodel (~> 4.1) | |
789 | + state_machines (>= 0.4.0) | |
790 | + state_machines-activerecord (0.3.0) | |
791 | + activerecord (~> 4.1) | |
792 | + state_machines-activemodel (>= 0.3.0) | |
793 | + stringex (2.5.2) | |
794 | + systemu (2.6.5) | |
795 | + task_list (1.0.2) | |
796 | + html-pipeline | |
797 | + teaspoon (1.0.2) | |
798 | + railties (>= 3.2.5, < 5) | |
799 | + teaspoon-jasmine (2.2.0) | |
800 | + teaspoon (>= 1.0.0) | |
801 | + temple (0.7.6) | |
802 | + term-ansicolor (1.3.2) | |
803 | + tins (~> 1.0) | |
804 | + terminal-table (1.5.2) | |
805 | + test_after_commit (0.4.2) | |
806 | + activerecord (>= 3.2) | |
807 | + thin (1.6.4) | |
808 | + daemons (~> 1.0, >= 1.0.9) | |
809 | + eventmachine (~> 1.0, >= 1.0.4) | |
810 | + rack (~> 1.0) | |
533 | 811 | thor (0.19.1) |
534 | - thread_safe (0.3.4) | |
812 | + thread_safe (0.3.5) | |
535 | 813 | tilt (1.4.1) |
536 | - timers (1.1.0) | |
537 | - tinder (1.9.3) | |
814 | + timfel-krb5-auth (0.8.3) | |
815 | + tinder (1.10.1) | |
538 | 816 | eventmachine (~> 1.0) |
539 | - faraday (~> 0.8) | |
817 | + faraday (~> 0.9.0) | |
540 | 818 | faraday_middleware (~> 0.9) |
541 | - hashie (>= 1.0, < 3) | |
819 | + hashie (>= 1.0) | |
542 | 820 | json (~> 1.8.0) |
543 | - mime-types (~> 1.19) | |
821 | + mime-types | |
544 | 822 | multi_json (~> 1.7) |
545 | 823 | twitter-stream (~> 0.1) |
546 | - tins (0.13.1) | |
547 | - treetop (1.4.15) | |
548 | - polyglot | |
549 | - polyglot (>= 0.3.1) | |
550 | - turbolinks (2.0.0) | |
824 | + tins (1.6.0) | |
825 | + turbolinks (2.5.3) | |
551 | 826 | coffee-rails |
552 | 827 | twitter-stream (0.1.16) |
553 | 828 | eventmachine (>= 0.12.8) |
... | ... | @@ -555,35 +830,47 @@ GEM |
555 | 830 | simple_oauth (~> 0.1.4) |
556 | 831 | tzinfo (1.2.2) |
557 | 832 | thread_safe (~> 0.1) |
558 | - uglifier (2.3.2) | |
833 | + uglifier (2.7.2) | |
559 | 834 | execjs (>= 0.3.0) |
560 | 835 | json (>= 1.8.0) |
561 | - underscore-rails (1.4.4) | |
836 | + underscore-rails (1.8.3) | |
562 | 837 | unf (0.1.4) |
563 | 838 | unf_ext |
564 | - unf_ext (0.0.6) | |
565 | - unicorn (4.6.3) | |
839 | + unf_ext (0.0.7.2) | |
840 | + unicorn (4.8.3) | |
566 | 841 | kgio (~> 2.6) |
567 | 842 | rack |
568 | 843 | raindrops (~> 0.7) |
569 | - unicorn-worker-killer (0.4.2) | |
570 | - unicorn (~> 4) | |
571 | - version_sorter (1.1.0) | |
572 | - virtus (1.0.1) | |
573 | - axiom-types (~> 0.0.5) | |
844 | + unicorn-worker-killer (0.4.4) | |
845 | + get_process_mem (~> 0) | |
846 | + unicorn (>= 4, < 6) | |
847 | + uniform_notifier (1.9.0) | |
848 | + uuid (2.3.8) | |
849 | + macaddr (~> 1.0) | |
850 | + version_sorter (2.0.0) | |
851 | + virtus (1.0.5) | |
852 | + axiom-types (~> 0.1) | |
574 | 853 | coercible (~> 1.0) |
575 | - descendants_tracker (~> 0.0.1) | |
576 | - equalizer (~> 0.0.7) | |
577 | - warden (1.2.3) | |
854 | + descendants_tracker (~> 0.0, >= 0.0.3) | |
855 | + equalizer (~> 0.0, >= 0.0.9) | |
856 | + warden (1.2.6) | |
578 | 857 | rack (>= 1.0) |
579 | - webmock (1.16.0) | |
580 | - addressable (>= 2.2.7) | |
858 | + web-console (2.3.0) | |
859 | + activemodel (>= 4.0) | |
860 | + binding_of_caller (>= 0.7.2) | |
861 | + railties (>= 4.0) | |
862 | + sprockets-rails (>= 2.0, < 4.0) | |
863 | + webmock (1.21.0) | |
864 | + addressable (>= 2.3.6) | |
581 | 865 | crack (>= 0.3.2) |
582 | - websocket-driver (0.3.3) | |
866 | + websocket-driver (0.6.3) | |
867 | + websocket-extensions (>= 0.1.0) | |
868 | + websocket-extensions (0.1.2) | |
583 | 869 | wikicloth (0.8.1) |
584 | 870 | builder |
585 | 871 | expression_parser |
586 | 872 | rinku |
873 | + xml-simple (1.1.5) | |
587 | 874 | xpath (2.0.0) |
588 | 875 | nokogiri (~> 1.3) |
589 | 876 | |
... | ... | @@ -591,126 +878,174 @@ PLATFORMS |
591 | 878 | ruby |
592 | 879 | |
593 | 880 | DEPENDENCIES |
594 | - RedCloth | |
595 | - ace-rails-ap | |
596 | - acts-as-taggable-on | |
597 | - addressable | |
598 | - annotate (~> 2.6.0.beta2) | |
599 | - asciidoctor (= 0.1.4) | |
600 | - awesome_print | |
601 | - better_errors | |
602 | - binding_of_caller | |
603 | - bootstrap-sass (~> 3.0) | |
604 | - capybara (~> 2.2.1) | |
605 | - carrierwave | |
606 | - coffee-rails | |
607 | - colored | |
608 | - coveralls | |
609 | - creole (~> 0.3.6) | |
610 | - d3_rails (~> 3.1.4) | |
611 | - database_cleaner | |
881 | + RedCloth (~> 4.2.9) | |
882 | + ace-rails-ap (~> 2.0.1) | |
883 | + activerecord-deprecated_finders (~> 1.0.3) | |
884 | + activerecord-session_store (~> 0.1.0) | |
885 | + acts-as-taggable-on (~> 3.4) | |
886 | + addressable (~> 2.3.8) | |
887 | + after_commit_queue | |
888 | + allocations (~> 1.0) | |
889 | + annotate (~> 2.6.0) | |
890 | + asana (~> 0.4.0) | |
891 | + asciidoctor (~> 1.5.2) | |
892 | + attr_encrypted (~> 1.3.4) | |
893 | + awesome_print (~> 1.2.0) | |
894 | + babosa (~> 1.0.2) | |
895 | + benchmark-ips | |
896 | + better_errors (~> 1.0.1) | |
897 | + binding_of_caller (~> 0.7.2) | |
898 | + bootstrap-sass (~> 3.3.0) | |
899 | + brakeman (~> 3.1.0) | |
900 | + browser (~> 1.0.0) | |
901 | + bullet | |
902 | + bundler-audit | |
903 | + byebug | |
904 | + cal-heatmap-rails (~> 3.5.0) | |
905 | + capybara (~> 2.4.0) | |
906 | + capybara-screenshot (~> 1.0.0) | |
907 | + carrierwave (~> 0.9.0) | |
908 | + charlock_holmes (~> 0.7.3) | |
909 | + coffee-rails (~> 4.1.0) | |
910 | + colorize (~> 0.7.0) | |
911 | + connection_pool (~> 2.0) | |
912 | + coveralls (~> 0.8.2) | |
913 | + creole (~> 0.5.0) | |
914 | + d3_rails (~> 3.5.0) | |
915 | + database_cleaner (~> 1.4.0) | |
612 | 916 | default_value_for (~> 3.0.0) |
613 | - devise (= 3.2.4) | |
614 | - devise-async (= 0.9.0) | |
917 | + devise (~> 3.5.4) | |
918 | + devise-async (~> 0.9.0) | |
919 | + devise-two-factor (~> 2.0.0) | |
615 | 920 | diffy (~> 3.0.3) |
616 | - dropzonejs-rails | |
617 | - email_spec | |
618 | - enumerize | |
619 | - factory_girl_rails | |
620 | - ffaker | |
621 | - fog (~> 1.14) | |
921 | + doorkeeper (~> 2.2.0) | |
922 | + dropzonejs-rails (~> 0.7.1) | |
923 | + email_reply_parser (~> 0.5.8) | |
924 | + email_spec (~> 1.6.0) | |
925 | + factory_girl_rails (~> 4.3.0) | |
926 | + ffaker (~> 2.0.0) | |
927 | + flay | |
928 | + flog | |
929 | + fog (~> 1.36.0) | |
622 | 930 | font-awesome-rails (~> 4.2) |
623 | 931 | foreman |
932 | + fuubar (~> 2.0.0) | |
624 | 933 | gemnasium-gitlab-service (~> 0.2) |
625 | - github-markup | |
626 | - gitlab-flowdock-git-hook (~> 0.4.2) | |
627 | - gitlab-grack (~> 2.0.0.pre) | |
628 | - gitlab-linguist (~> 3.0.0) | |
629 | - gitlab_emoji (~> 0.0.1.1) | |
630 | - gitlab_git (= 7.0.0.rc12) | |
934 | + github-linguist (~> 4.7.0) | |
935 | + github-markup (~> 1.3.1) | |
936 | + gitlab-flowdock-git-hook (~> 1.0.1) | |
937 | + gitlab_emoji (~> 0.2.0) | |
938 | + gitlab_git (~> 7.2.24) | |
631 | 939 | gitlab_meta (= 7.0) |
632 | - gitlab_omniauth-ldap (= 1.2.0) | |
633 | - gollum-lib (~> 3.0.0) | |
634 | - gon (~> 5.0.0) | |
635 | - grape (~> 0.6.1) | |
940 | + gitlab_omniauth-ldap (~> 1.2.1) | |
941 | + gollum-lib (~> 4.1.0) | |
942 | + gon (~> 6.0.1) | |
943 | + grape (~> 0.13.0) | |
636 | 944 | grape-entity (~> 0.4.2) |
637 | - growl | |
638 | - guard-rspec | |
639 | - guard-spinach | |
640 | - haml-rails | |
641 | - hipchat (~> 0.14.0) | |
642 | - html-pipeline-gitlab (~> 0.1.0) | |
643 | - httparty | |
644 | - jasmine (= 2.0.2) | |
645 | - jquery-atwho-rails (~> 0.3.3) | |
646 | - jquery-rails | |
647 | - jquery-scrollto-rails | |
648 | - jquery-turbolinks | |
649 | - jquery-ui-rails | |
650 | - kaminari (~> 0.15.1) | |
651 | - launchy | |
652 | - letter_opener | |
653 | - minitest (~> 5.3.0) | |
654 | - mousetrap-rails | |
655 | - mysql2 | |
656 | - newrelic_rpm | |
657 | - nprogress-rails | |
658 | - omniauth (~> 1.1.3) | |
659 | - omniauth-github | |
660 | - omniauth-google-oauth2 | |
945 | + haml-rails (~> 0.9.0) | |
946 | + hipchat (~> 1.5.0) | |
947 | + html-pipeline (~> 1.11.0) | |
948 | + httparty (~> 0.13.3) | |
949 | + influxdb (~> 0.2) | |
950 | + jquery-atwho-rails (~> 1.3.2) | |
951 | + jquery-rails (~> 4.0.0) | |
952 | + jquery-scrollto-rails (~> 1.4.3) | |
953 | + jquery-turbolinks (~> 2.1.0) | |
954 | + jquery-ui-rails (~> 5.0.0) | |
955 | + kaminari (~> 0.16.3) | |
956 | + letter_opener (~> 1.1.2) | |
957 | + mail_room (~> 0.6.1) | |
958 | + method_source (~> 0.8) | |
959 | + minitest (~> 5.7.0) | |
960 | + mousetrap-rails (~> 1.4.6) | |
961 | + mysql2 (~> 0.3.16) | |
962 | + nested_form (~> 0.3.2) | |
963 | + net-ssh (~> 3.0.1) | |
964 | + newrelic-grape | |
965 | + newrelic_rpm (~> 3.9.4.245) | |
966 | + nokogiri (= 1.6.7.2) | |
967 | + nprogress-rails (~> 0.1.6.7) | |
968 | + oauth2 (~> 1.0.0) | |
969 | + octokit (~> 3.7.0) | |
970 | + omniauth (~> 1.2.2) | |
971 | + omniauth-azure-oauth2 (~> 0.0.6) | |
972 | + omniauth-bitbucket (~> 0.0.2) | |
973 | + omniauth-cas3 (~> 1.1.2) | |
974 | + omniauth-facebook (~> 3.0.0) | |
975 | + omniauth-github (~> 1.1.1) | |
976 | + omniauth-gitlab (~> 1.0.0) | |
977 | + omniauth-google-oauth2 (~> 0.2.0) | |
978 | + omniauth-kerberos (~> 0.3.0) | |
661 | 979 | omniauth-remote-user (>= 0.0.6) |
662 | - omniauth-shibboleth | |
663 | - omniauth-twitter | |
664 | - org-ruby (= 0.9.9) | |
665 | - pg | |
666 | - poltergeist (~> 1.5.1) | |
667 | - pry | |
668 | - quiet_assets (~> 1.0.1) | |
669 | - rack-attack | |
670 | - rack-cors | |
671 | - rack-mini-profiler | |
672 | - rails (~> 4.1.0) | |
673 | - rails_autolink (~> 1.1) | |
674 | - rails_best_practices | |
980 | + omniauth-saml (~> 1.4.2) | |
981 | + omniauth-shibboleth (~> 1.2.0) | |
982 | + omniauth-twitter (~> 1.2.0) | |
983 | + omniauth_crowd (~> 2.2.0) | |
984 | + org-ruby (~> 0.9.12) | |
985 | + paranoia (~> 2.0) | |
986 | + pg (~> 0.18.2) | |
987 | + poltergeist (~> 1.8.1) | |
988 | + pry-rails | |
989 | + quiet_assets (~> 1.0.2) | |
990 | + rack-attack (~> 4.3.1) | |
991 | + rack-cors (~> 0.4.0) | |
992 | + rack-oauth2 (~> 1.2.1) | |
993 | + rails (= 4.2.5.1) | |
994 | + rails-deprecated_sanitizer (~> 1.0.3) | |
675 | 995 | raphael-rails (~> 2.1.2) |
676 | - rb-fsevent | |
677 | - rb-inotify | |
996 | + rblineprof | |
678 | 997 | rdoc (~> 3.6) |
679 | - redcarpet (~> 3.1.2) | |
680 | - redis-rails | |
681 | - request_store | |
682 | - rspec-rails | |
998 | + recaptcha | |
999 | + redcarpet (~> 3.3.3) | |
1000 | + redis-namespace | |
1001 | + redis-rails (~> 4.0.0) | |
1002 | + request_store (~> 1.2.0) | |
1003 | + rerun (~> 0.11.0) | |
1004 | + responders (~> 2.0) | |
1005 | + rouge (~> 1.10.1) | |
1006 | + rqrcode-rails3 (~> 0.1.7) | |
1007 | + rspec-rails (~> 3.3.0) | |
1008 | + rubocop (~> 0.35.0) | |
1009 | + ruby-fogbugz (~> 0.2.1) | |
683 | 1010 | sanitize (~> 2.0) |
684 | - sass-rails (~> 4.0.2) | |
685 | - sdoc | |
686 | - seed-fu | |
687 | - select2-rails | |
688 | - semantic-ui-sass (~> 0.16.1.0) | |
689 | - settingslogic | |
690 | - shoulda-matchers (~> 2.1.0) | |
691 | - sidekiq (= 2.17.0) | |
692 | - simplecov | |
693 | - sinatra | |
694 | - six | |
695 | - slack-notifier (~> 1.0.0) | |
696 | - slim | |
697 | - spinach-rails | |
698 | - spring (= 1.1.3) | |
699 | - spring-commands-rspec (= 1.0.1) | |
700 | - spring-commands-spinach (= 1.0.0) | |
701 | - stamp | |
702 | - state_machine | |
703 | - test_after_commit | |
704 | - therubyracer | |
705 | - thin | |
706 | - tinder (~> 1.9.2) | |
707 | - turbolinks | |
708 | - uglifier | |
709 | - underscore-rails (~> 1.4.4) | |
710 | - unf | |
711 | - unicorn (~> 4.6.3) | |
712 | - unicorn-worker-killer | |
713 | - version_sorter | |
714 | - virtus | |
715 | - webmock | |
1011 | + sass-rails (~> 5.0.0) | |
1012 | + sdoc (~> 0.3.20) | |
1013 | + seed-fu (~> 2.3.5) | |
1014 | + select2-rails (~> 3.5.9) | |
1015 | + sentry-raven | |
1016 | + settingslogic (~> 2.0.9) | |
1017 | + sham_rack | |
1018 | + shoulda-matchers (~> 2.8.0) | |
1019 | + sidekiq (~> 4.0) | |
1020 | + sidekiq-cron (~> 0.4.0) | |
1021 | + simplecov (~> 0.10.0) | |
1022 | + sinatra (~> 1.4.4) | |
1023 | + six (~> 0.2.0) | |
1024 | + slack-notifier (~> 1.2.0) | |
1025 | + spinach-rails (~> 0.2.1) | |
1026 | + spring (~> 1.3.6) | |
1027 | + spring-commands-rspec (~> 1.0.4) | |
1028 | + spring-commands-spinach (~> 1.0.0) | |
1029 | + spring-commands-teaspoon (~> 0.0.2) | |
1030 | + sprockets (~> 2.12.3) | |
1031 | + state_machines-activerecord (~> 0.3.0) | |
1032 | + task_list (~> 1.0.2) | |
1033 | + teaspoon (~> 1.0.0) | |
1034 | + teaspoon-jasmine (~> 2.2.0) | |
1035 | + test_after_commit (~> 0.4.2) | |
1036 | + thin (~> 1.6.1) | |
1037 | + tinder (~> 1.10.0) | |
1038 | + turbolinks (~> 2.5.0) | |
1039 | + uglifier (~> 2.7.2) | |
1040 | + underscore-rails (~> 1.8.0) | |
1041 | + unf (~> 0.1.4) | |
1042 | + unicorn (~> 4.8.2) | |
1043 | + unicorn-worker-killer (~> 0.4.2) | |
1044 | + version_sorter (~> 2.0.0) | |
1045 | + virtus (~> 1.0.1) | |
1046 | + web-console (~> 2.0) | |
1047 | + webmock (~> 1.21.0) | |
716 | 1048 | wikicloth (= 0.8.1) |
1049 | + | |
1050 | +BUNDLED WITH | |
1051 | + 1.11.2 | ... | ... |
Makefile
1 | -VERSION = 7.5.4 | |
1 | +VERSION = 8.4 | |
2 | 2 | TARBALL = gitlab-deps-$(VERSION).tar.gz |
3 | 3 | PREFIX = /usr |
4 | 4 | WGET = wget |
5 | -GITLAB_BRANCH = 7-5-stable | |
5 | +GITLAB_BRANCH = 8-4-stable | |
6 | 6 | BUNDLE_OPTS = --verbose --without='development test' |
7 | 7 | |
8 | 8 | all: |
... | ... | @@ -25,6 +25,7 @@ update: clean |
25 | 25 | $(WGET) -O Gemfile https://gitlab.com/gitlab-org/gitlab-ce/raw/$(GITLAB_BRANCH)/Gemfile |
26 | 26 | $(WGET) -O Gemfile.lock https://gitlab.com/gitlab-org/gitlab-ce/raw/$(GITLAB_BRANCH)/Gemfile.lock |
27 | 27 | echo 'gem "omniauth-remote-user", ">= 0.0.6"' >> Gemfile |
28 | + bundle update | |
28 | 29 | bundle install $(BUNDLE_OPTS) --path vendor/bundle |
29 | 30 | |
30 | 31 | clean: | ... | ... |
No preview for this file type
vendor/cache/actionmailer-4.1.1.gem
No preview for this file type
No preview for this file type
vendor/cache/actionpack-4.1.1.gem
No preview for this file type
No preview for this file type
vendor/cache/actionview-4.1.1.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/activemodel-4.1.1.gem
No preview for this file type
No preview for this file type
vendor/cache/activerecord-4.1.1.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/activesupport-4.1.1.gem
No preview for this file type
No preview for this file type
vendor/cache/acts-as-taggable-on-2.4.1.gem
No preview for this file type
No preview for this file type
vendor/cache/addressable-2.3.5.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/arel-5.0.1.20140414130214.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/asciidoctor-0.1.4.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/axiom-types-0.0.5.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/bcrypt-3.1.7.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/bootstrap-sass-3.0.3.0.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/celluloid-0.15.2.gem
No preview for this file type
vendor/cache/charlock_holmes-0.6.9.4.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/coffee-rails-4.0.1.gem
No preview for this file type
No preview for this file type
vendor/cache/coffee-script-2.2.0.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/coffee-script-source-1.6.3.gem
No preview for this file type
vendor/cache/colored-1.2.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/connection_pool-1.2.0.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/creole-0.3.8.gem
No preview for this file type
No preview for this file type
vendor/cache/d3_rails-3.1.10.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/default_value_for-3.0.0.gem
No preview for this file type
No preview for this file type
vendor/cache/descendants_tracker-0.0.3.gem
No preview for this file type
No preview for this file type
vendor/cache/devise-3.2.4.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/diffy-3.0.3.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/dotenv-0.9.0.gem
No preview for this file type
vendor/cache/dropzonejs-rails-0.4.14.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/emoji-1.0.1.gem
No preview for this file type
No preview for this file type
vendor/cache/enumerize-0.7.0.gem
No preview for this file type
No preview for this file type
vendor/cache/equalizer-0.0.8.gem
No preview for this file type
vendor/cache/escape_utils-0.2.4.gem
No preview for this file type
No preview for this file type
vendor/cache/eventmachine-1.0.3.gem
No preview for this file type
No preview for this file type
vendor/cache/excon-0.32.1.gem
No preview for this file type
No preview for this file type
vendor/cache/execjs-2.0.2.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/faraday-0.8.9.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/faraday_middleware-0.9.0.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/fog-1.21.0.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/fog-brightbox-0.0.1.gem
No preview for this file type
No preview for this file type
vendor/cache/fog-core-1.21.1.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/fog-json-1.0.0.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/font-awesome-rails-4.2.0.0.gem
No preview for this file type
No preview for this file type
vendor/cache/foreman-0.63.0.gem
No preview for this file type
No preview for this file type
vendor/cache/formatador-0.2.4.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/gemnasium-gitlab-service-0.2.2.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/github-markup-1.1.0.gem
No preview for this file type
No preview for this file type
vendor/cache/gitlab-flowdock-git-hook-0.4.2.2.gem
No preview for this file type
No preview for this file type
vendor/cache/gitlab-grack-2.0.0.pre.gem
No preview for this file type
vendor/cache/gitlab-grit-2.6.12.gem
No preview for this file type
No preview for this file type
vendor/cache/gitlab-linguist-3.0.0.gem
No preview for this file type
vendor/cache/gitlab_emoji-0.0.1.1.gem
No preview for this file type
No preview for this file type
vendor/cache/gitlab_git-7.0.0.rc12.gem
No preview for this file type
No preview for this file type
vendor/cache/gitlab_omniauth-ldap-1.2.0.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/gollum-lib-3.0.0.gem
No preview for this file type
No preview for this file type
vendor/cache/gon-5.0.1.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/grape-0.6.1.gem
No preview for this file type
vendor/cache/grape-entity-0.4.2.gem
No preview for this file type
No preview for this file type
vendor/cache/haml-4.0.5.gem
No preview for this file type
No preview for this file type
vendor/cache/haml-rails-0.5.3.gem
No preview for this file type
No preview for this file type
vendor/cache/hashie-2.1.2.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/hipchat-0.14.0.gem
No preview for this file type
No preview for this file type
vendor/cache/html-pipeline-gitlab-0.1.5.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/httparty-0.13.0.gem
No preview for this file type
No preview for this file type
vendor/cache/httpauth-0.2.1.gem
No preview for this file type
No preview for this file type
vendor/cache/i18n-0.6.11.gem
No preview for this file type
No preview for this file type
vendor/cache/ice_nine-0.10.0.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/jquery-atwho-rails-0.3.3.gem
No preview for this file type
No preview for this file type
vendor/cache/jquery-rails-3.1.0.gem
No preview for this file type
No preview for this file type
vendor/cache/jquery-turbolinks-2.0.1.gem
No preview for this file type
No preview for this file type
vendor/cache/jquery-ui-rails-4.2.1.gem
No preview for this file type
No preview for this file type
vendor/cache/json-1.8.1.gem
No preview for this file type
No preview for this file type
vendor/cache/jwt-0.1.13.gem
No preview for this file type
No preview for this file type
vendor/cache/kaminari-0.15.1.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/kgio-2.8.1.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/libv8-3.16.14.3-x86_64-linux.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/mail-2.5.4.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/mini_portile-0.6.0.gem
No preview for this file type
No preview for this file type
vendor/cache/minitest-5.3.5.gem
No preview for this file type
No preview for this file type
vendor/cache/multi_json-1.10.1.gem
No preview for this file type
No preview for this file type
vendor/cache/multipart-post-1.2.0.gem
No preview for this file type
No preview for this file type
vendor/cache/mysql2-0.3.16.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/net-ldap-0.9.0.gem
No preview for this file type
vendor/cache/net-scp-1.1.2.gem
No preview for this file type
vendor/cache/net-ssh-2.8.0.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/nokogiri-1.6.2.1.gem
No preview for this file type
No preview for this file type
vendor/cache/nprogress-rails-0.1.2.3.gem
No preview for this file type
No preview for this file type
vendor/cache/oauth-0.4.7.gem
No preview for this file type
No preview for this file type
vendor/cache/oauth2-0.8.1.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/omniauth-1.1.4.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/omniauth-github-1.1.1.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/omniauth-google-oauth2-0.2.5.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/omniauth-oauth-1.0.1.gem
No preview for this file type
No preview for this file type
vendor/cache/omniauth-oauth2-1.1.1.gem
No preview for this file type
No preview for this file type
vendor/cache/omniauth-remote-user-0.0.6.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/omniauth-shibboleth-1.1.1.gem
No preview for this file type
No preview for this file type
vendor/cache/omniauth-twitter-1.0.1.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/org-ruby-0.9.9.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/pg-0.15.1.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/polyglot-0.3.4.gem
No preview for this file type
No preview for this file type
vendor/cache/posix-spawn-0.3.9.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/rack-1.5.2.gem
No preview for this file type
No preview for this file type
vendor/cache/rack-attack-2.3.0.gem
No preview for this file type
No preview for this file type
vendor/cache/rack-cors-0.2.9.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/rack-protection-1.5.1.gem
No preview for this file type
No preview for this file type
vendor/cache/rack-test-0.6.2.gem
No preview for this file type
No preview for this file type
vendor/cache/rails-4.1.1.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/rails_autolink-1.1.6.gem
No preview for this file type
vendor/cache/railties-4.1.1.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/raindrops-0.12.0.gem
No preview for this file type
No preview for this file type
vendor/cache/rake-10.3.2.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/redcarpet-3.1.2.gem
No preview for this file type
No preview for this file type
vendor/cache/redis-3.0.6.gem
No preview for this file type
No preview for this file type
vendor/cache/redis-actionpack-4.0.0.gem
No preview for this file type
No preview for this file type
vendor/cache/redis-activesupport-4.0.0.gem
No preview for this file type
No preview for this file type
vendor/cache/redis-namespace-1.4.1.gem
No preview for this file type
No preview for this file type
vendor/cache/redis-store-1.1.4.gem
No preview for this file type
No preview for this file type
vendor/cache/ref-1.0.5.gem
No preview for this file type
vendor/cache/request_store-1.0.5.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/rouge-1.3.3.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/rubyntlm-0.4.0.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/rugged-0.21.2.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/sass-3.2.19.gem
No preview for this file type
No preview for this file type
vendor/cache/sass-rails-4.0.3.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/seed-fu-2.3.1.gem
No preview for this file type
No preview for this file type
vendor/cache/select2-rails-3.5.2.gem
No preview for this file type
No preview for this file type
vendor/cache/semantic-ui-sass-0.16.1.0.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/sidekiq-2.17.0.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/sinatra-1.4.4.gem
No preview for this file type
No preview for this file type
vendor/cache/slack-notifier-1.0.0.gem
No preview for this file type
No preview for this file type
vendor/cache/slim-2.0.2.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/sprockets-2.11.0.gem
No preview for this file type
No preview for this file type
vendor/cache/sprockets-rails-2.1.3.gem
No preview for this file type
No preview for this file type
vendor/cache/stamp-0.5.0.gem
No preview for this file type
vendor/cache/state_machine-1.2.0.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/stringex-2.5.1.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/temple-0.6.7.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/therubyracer-0.12.0.gem
No preview for this file type
No preview for this file type
vendor/cache/thread_safe-0.3.4.gem
No preview for this file type
No preview for this file type
vendor/cache/timers-1.1.0.gem
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/tinder-1.9.3.gem
No preview for this file type
No preview for this file type
vendor/cache/treetop-1.4.15.gem
No preview for this file type
vendor/cache/turbolinks-2.0.0.gem
No preview for this file type
No preview for this file type
vendor/cache/uglifier-2.3.2.gem
No preview for this file type
No preview for this file type
vendor/cache/underscore-rails-1.4.4.gem
No preview for this file type
No preview for this file type
vendor/cache/unf_ext-0.0.6.gem
No preview for this file type
No preview for this file type
vendor/cache/unicorn-4.6.3.gem
No preview for this file type
No preview for this file type
vendor/cache/unicorn-worker-killer-0.4.2.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
vendor/cache/version_sorter-1.1.0.gem
No preview for this file type
No preview for this file type
vendor/cache/virtus-1.0.1.gem
No preview for this file type
No preview for this file type
vendor/cache/warden-1.2.3.gem
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type