foreman_rh_cloud 1.0.14 → 1.0.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 830861dcfd46371108e610046d742960ace76310a79bf3fde268de4230de0ccb
4
- data.tar.gz: a42767333df5769a37bcd9e28ebb9e7eab815a13933bdd38cb678c77602eb5b0
3
+ metadata.gz: cec94143f5b6ae6450f847c09e74b6a3d67690c6c31d52106994f22d1e3b39a8
4
+ data.tar.gz: 95c68320f909dfb3173585781f6a8c06f553a8cdc63998e13e13b2b4b207cd7f
5
5
  SHA512:
6
- metadata.gz: bc3f5e9f3f5dff9c8198bc10d131c42f6b2cd8ef5409711182af631effda0b0b99a2c12f9e0b0e1cf4d30a821f58d28fef94edc2341a2938693ba773832a8a27
7
- data.tar.gz: 87731548c51473f8f88d20f9036d3709135734795c950ffb70fe86b302d18c209a3825fa720b1227ffbe3cc4a51960f7386a6cbfce0d91494f94afb0d2de4745
6
+ metadata.gz: 240c951be40fbb866f7f3e3fde8c63017f17d0108eebe91f74e379163aadbb6b8e8746b12d34d618307696e252c9b08b143f64c87cffd7d387e8fc72243abf56
7
+ data.tar.gz: 793312fa6bf24267c16343672343d446df541397bb333092fe077eea3cd359c043edf2f5553be0e9cf0ec5c86d58401acbf0b70132a9466b91a248c621fc8ee5
@@ -3,12 +3,12 @@ class Setting::RhCloud < Setting
3
3
  return unless ActiveRecord::Base.connection.table_exists?('settings')
4
4
  return unless super
5
5
  [
6
- set('allow_auto_inventory_upload', N_('Allow automatic upload of the host inventory to the Red Hat cloud'), false),
7
- set('allow_auto_insights_sync', N_('Allow recommendations synchronization from Red Hat cloud'), false),
8
- set('obfuscate_inventory_hostnames', N_('Obfuscate host names sent to Red Hat cloud'), false),
9
- set('obfuscate_inventory_ips', N_('Obfuscate ip addresses sent to Red Hat cloud'), false),
6
+ set('allow_auto_inventory_upload', N_('Allow automatic upload of the host inventory to the Red Hat cloud'), false, N_('Allow automatic inventory uploads')),
7
+ set('allow_auto_insights_sync', N_('Allow recommendations synchronization from Red Hat cloud'), false, N_('Allow recommendations synchronization')),
8
+ set('obfuscate_inventory_hostnames', N_('Obfuscate host names sent to Red Hat cloud'), false, N_('Obfuscate host names')),
9
+ set('obfuscate_inventory_ips', N_('Obfuscate ip addresses sent to Red Hat cloud'), false, N_('Obfuscate IPs')),
10
10
  set('rh_cloud_token', N_('Authentication token to Red Hat cloud services. Used to authenticate requests to cloud APIs'), 'DEFAULT', N_('Red Hat Cloud token'), nil, encrypted: true),
11
- set('exclude_installed_packages', N_('Exclude installed packages from Red Hat cloud inventory report'), false),
11
+ set('exclude_installed_packages', N_('Exclude installed packages from Red Hat cloud inventory report'), false, N_("Don't upload installed packages")),
12
12
  ]
13
13
  end
14
14
 
@@ -0,0 +1,757 @@
1
+ PATH
2
+ remote: ../foreman_rh_cloud
3
+ specs:
4
+ foreman_rh_cloud (1.0.13.1)
5
+ katello
6
+ redhat_access
7
+
8
+ PATH
9
+ remote: ../katello
10
+ specs:
11
+ katello (3.14.1)
12
+ activerecord-import
13
+ anemone
14
+ angular-rails-templates (~> 1.0.2)
15
+ apipie-rails (>= 0.5.14)
16
+ deface (>= 1.0.2, < 2.0.0)
17
+ dynflow (>= 1.2.0)
18
+ foreman-tasks (~> 0.13, >= 0.14.1)
19
+ gettext_i18n_rails
20
+ json
21
+ oauth
22
+ pulp_ansible_client (<= 0.2.0b6.dev01570985981)
23
+ pulp_docker_client (<= 4.0.0b8.dev01571062112)
24
+ pulp_file_client (<= 0.1.0b5.dev01571253617)
25
+ pulp_rpm_client (<= 3.0.0b71571331815)
26
+ pulpcore_client (<= 3.0.0rc8.dev01571235538)
27
+ qpid_messaging
28
+ rabl
29
+ rails
30
+ rest-client
31
+ runcible (>= 2.12.1, < 3.0.0)
32
+
33
+ GEM
34
+ remote: https://rubygems.org/
35
+ specs:
36
+ actioncable (5.2.1)
37
+ actionpack (= 5.2.1)
38
+ nio4r (~> 2.0)
39
+ websocket-driver (>= 0.6.1)
40
+ actionmailer (5.2.1)
41
+ actionpack (= 5.2.1)
42
+ actionview (= 5.2.1)
43
+ activejob (= 5.2.1)
44
+ mail (~> 2.5, >= 2.5.4)
45
+ rails-dom-testing (~> 2.0)
46
+ actionpack (5.2.1)
47
+ actionview (= 5.2.1)
48
+ activesupport (= 5.2.1)
49
+ rack (~> 2.0)
50
+ rack-test (>= 0.6.3)
51
+ rails-dom-testing (~> 2.0)
52
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
53
+ actionview (5.2.1)
54
+ activesupport (= 5.2.1)
55
+ builder (~> 3.1)
56
+ erubi (~> 1.4)
57
+ rails-dom-testing (~> 2.0)
58
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
59
+ activejob (5.2.1)
60
+ activesupport (= 5.2.1)
61
+ globalid (>= 0.3.6)
62
+ activemodel (5.2.1)
63
+ activesupport (= 5.2.1)
64
+ activerecord (5.2.1)
65
+ activemodel (= 5.2.1)
66
+ activesupport (= 5.2.1)
67
+ arel (>= 9.0)
68
+ activerecord-import (1.0.7)
69
+ activerecord (>= 3.2)
70
+ activerecord-nulldb-adapter (0.5.0)
71
+ activerecord (>= 5.2.0)
72
+ activerecord-session_store (1.1.3)
73
+ actionpack (>= 4.0)
74
+ activerecord (>= 4.0)
75
+ multi_json (~> 1.11, >= 1.11.2)
76
+ rack (>= 1.5.2, < 3)
77
+ railties (>= 4.0)
78
+ activestorage (5.2.1)
79
+ actionpack (= 5.2.1)
80
+ activerecord (= 5.2.1)
81
+ marcel (~> 0.3.1)
82
+ activesupport (5.2.1)
83
+ concurrent-ruby (~> 1.0, >= 1.0.2)
84
+ i18n (>= 0.7, < 2)
85
+ minitest (~> 5.1)
86
+ tzinfo (~> 1.1)
87
+ addressable (2.7.0)
88
+ public_suffix (>= 2.0.2, < 5.0)
89
+ algebrick (0.7.5)
90
+ ancestry (3.0.7)
91
+ activerecord (>= 3.2.0)
92
+ anemone (0.7.2)
93
+ nokogiri (>= 1.3.0)
94
+ robotex (>= 1.0.0)
95
+ angular-rails-templates (1.0.2)
96
+ railties (>= 4.2, < 6)
97
+ sprockets (>= 3.0, < 5)
98
+ tilt
99
+ ansi (1.5.0)
100
+ apipie-params (0.0.5)
101
+ apipie-rails (0.5.17)
102
+ rails (>= 4.1)
103
+ arel (9.0.0)
104
+ as_deprecation_tracker (1.5.0)
105
+ activesupport (>= 4.2)
106
+ railties (>= 4.2)
107
+ ast (2.4.0)
108
+ audited (4.9.0)
109
+ activerecord (>= 4.2, < 6.1)
110
+ autoprefixer-rails (9.7.4)
111
+ execjs
112
+ awesome_print (1.8.0)
113
+ bcrypt (3.1.13)
114
+ benchmark-ips (2.8.3)
115
+ bootsnap (1.4.6)
116
+ msgpack (~> 1.0)
117
+ bootstrap-sass (3.3.7)
118
+ autoprefixer-rails (>= 5.2.1)
119
+ sass (>= 3.3.4)
120
+ builder (3.2.4)
121
+ bullet (6.1.0)
122
+ activesupport (>= 3.0.0)
123
+ uniform_notifier (~> 1.11)
124
+ capybara (3.31.0)
125
+ addressable
126
+ mini_mime (>= 0.1.3)
127
+ nokogiri (~> 1.8)
128
+ rack (>= 1.6.0)
129
+ rack-test (>= 0.6.3)
130
+ regexp_parser (~> 1.5)
131
+ xpath (~> 3.2)
132
+ childprocess (3.0.0)
133
+ ci_reporter (2.0.0)
134
+ builder (>= 2.1.2)
135
+ ci_reporter_minitest (1.0.0)
136
+ ci_reporter (~> 2.0)
137
+ minitest (~> 5.0)
138
+ cliver (0.3.2)
139
+ coderay (1.1.2)
140
+ coffee-rails (5.0.0)
141
+ coffee-script (>= 2.2.0)
142
+ railties (>= 5.2.0)
143
+ coffee-script (2.4.1)
144
+ coffee-script-source
145
+ execjs
146
+ coffee-script-source (1.12.2)
147
+ concurrent-ruby (1.1.6)
148
+ concurrent-ruby-edge (0.6.0)
149
+ concurrent-ruby (~> 1.1.6)
150
+ connection_pool (2.2.2)
151
+ crack (0.4.3)
152
+ safe_yaml (~> 1.0.0)
153
+ crass (1.0.6)
154
+ css_parser (1.7.1)
155
+ addressable
156
+ daemons (1.3.1)
157
+ database_cleaner (1.8.3)
158
+ deacon (1.0.0)
159
+ declarative (0.0.10)
160
+ declarative-option (0.1.0)
161
+ deep_cloneable (3.0.0)
162
+ activerecord (>= 3.1.0, < 7)
163
+ deface (1.5.3)
164
+ nokogiri (>= 1.6)
165
+ polyglot
166
+ rails (>= 4.1)
167
+ rainbow (>= 2.1.0)
168
+ docile (1.3.2)
169
+ domain_name (0.5.20190701)
170
+ unf (>= 0.0.5, < 1.0.0)
171
+ dynflow (1.4.3)
172
+ algebrick (~> 0.7.0)
173
+ apipie-params
174
+ concurrent-ruby (~> 1.1.3)
175
+ concurrent-ruby-edge (~> 0.6.0)
176
+ multi_json
177
+ sequel (>= 4.0.0)
178
+ erubi (1.9.0)
179
+ excon (0.72.0)
180
+ execjs (2.7.0)
181
+ facter (2.5.7)
182
+ factory_bot (5.1.1)
183
+ activesupport (>= 4.2.0)
184
+ factory_bot_rails (5.1.1)
185
+ factory_bot (~> 5.1.0)
186
+ railties (>= 4.2.0)
187
+ faraday (0.17.3)
188
+ multipart-post (>= 1.2, < 3)
189
+ fast_gettext (1.8.0)
190
+ ffi (1.12.2)
191
+ fog-aws (3.5.2)
192
+ fog-core (~> 2.1)
193
+ fog-json (~> 1.1)
194
+ fog-xml (~> 0.1)
195
+ ipaddress (~> 0.8)
196
+ fog-core (2.1.0)
197
+ builder
198
+ excon (~> 0.58)
199
+ formatador (~> 0.2)
200
+ mime-types
201
+ fog-google (1.8.2)
202
+ fog-core (<= 2.1.0)
203
+ fog-json (~> 1.2)
204
+ fog-xml (~> 0.1.0)
205
+ google-api-client (~> 0.23.0)
206
+ fog-json (1.2.0)
207
+ fog-core
208
+ multi_json (~> 1.10)
209
+ fog-libvirt (0.7.0)
210
+ fog-core (>= 1.27.4)
211
+ fog-json
212
+ fog-xml (~> 0.1.1)
213
+ json
214
+ ruby-libvirt (>= 0.7.0)
215
+ fog-openstack (1.0.10)
216
+ fog-core (~> 2.1)
217
+ fog-json (>= 1.0)
218
+ ipaddress (>= 0.8)
219
+ fog-ovirt (1.2.4)
220
+ fog-core
221
+ fog-json
222
+ fog-xml
223
+ ovirt-engine-sdk (>= 4.1.3)
224
+ rbovirt (~> 0.1.5)
225
+ fog-rackspace (0.1.6)
226
+ fog-core (>= 1.35)
227
+ fog-json (>= 1.0)
228
+ fog-xml (>= 0.1)
229
+ ipaddress (>= 0.8)
230
+ fog-vsphere (3.2.5)
231
+ fog-core
232
+ rbvmomi (>= 1.9, < 3)
233
+ fog-xml (0.1.3)
234
+ fog-core
235
+ nokogiri (>= 1.5.11, < 2.0.0)
236
+ font-awesome-sass (4.6.2)
237
+ sass (>= 3.2)
238
+ foreman (0.87.0)
239
+ foreman-tasks (0.17.6)
240
+ dynflow (>= 1.2.3)
241
+ foreman-tasks-core
242
+ get_process_mem
243
+ parse-cron (~> 0.1.4)
244
+ sinatra
245
+ foreman-tasks-core (0.3.4)
246
+ dynflow (>= 1.2.0)
247
+ formatador (0.2.5)
248
+ friendly_id (5.3.0)
249
+ activerecord (>= 4.0.0)
250
+ get_process_mem (0.2.5)
251
+ ffi (~> 1.0)
252
+ gettext (3.3.5)
253
+ locale (>= 2.0.5)
254
+ text (>= 1.3.0)
255
+ gettext_i18n_rails (1.8.1)
256
+ fast_gettext (>= 0.9.0)
257
+ gettext_i18n_rails_js (1.3.0)
258
+ gettext (>= 3.0.2)
259
+ gettext_i18n_rails (>= 0.7.1)
260
+ po_to_json (>= 1.0.0)
261
+ rails (>= 3.2.0)
262
+ gitlab-sidekiq-fetcher (0.5.2)
263
+ sidekiq (~> 5)
264
+ globalid (0.4.2)
265
+ activesupport (>= 4.2.0)
266
+ google-api-client (0.23.9)
267
+ addressable (~> 2.5, >= 2.5.1)
268
+ googleauth (>= 0.5, < 0.7.0)
269
+ httpclient (>= 2.8.1, < 3.0)
270
+ mime-types (~> 3.0)
271
+ representable (~> 3.0)
272
+ retriable (>= 2.0, < 4.0)
273
+ signet (~> 0.9)
274
+ googleauth (0.6.7)
275
+ faraday (~> 0.12)
276
+ jwt (>= 1.4, < 3.0)
277
+ memoist (~> 0.16)
278
+ multi_json (~> 1.11)
279
+ os (>= 0.9, < 2.0)
280
+ signet (~> 0.7)
281
+ graphiql-rails (1.7.0)
282
+ railties
283
+ sprockets-rails
284
+ graphql (1.8.17)
285
+ graphql-batch (0.4.2)
286
+ graphql (>= 1.3, < 2)
287
+ promise.rb (~> 0.7.2)
288
+ hashdiff (1.0.1)
289
+ http-accept (1.7.0)
290
+ http-cookie (1.0.3)
291
+ domain_name (~> 0.5)
292
+ httpclient (2.8.3)
293
+ i18n (1.8.2)
294
+ concurrent-ruby (~> 1.0)
295
+ immigrant (0.3.6)
296
+ activerecord (>= 3.0)
297
+ ipaddress (0.8.3)
298
+ jaro_winkler (1.5.4)
299
+ journald-logger (3.0.0)
300
+ journald-native (~> 1.0)
301
+ journald-native (1.0.11)
302
+ jquery-turbolinks (2.1.0)
303
+ railties (>= 3.1.0)
304
+ turbolinks
305
+ jquery-ui-rails (4.2.1)
306
+ railties (>= 3.2.16)
307
+ json (2.3.0)
308
+ jwt (2.2.1)
309
+ launchy (2.5.0)
310
+ addressable (~> 2.7)
311
+ ldap_fluff (0.4.7)
312
+ activesupport
313
+ net-ldap (>= 0.3.1)
314
+ little-plugger (1.1.4)
315
+ locale (2.1.3)
316
+ logging (2.2.2)
317
+ little-plugger (~> 1.1)
318
+ multi_json (~> 1.10)
319
+ logging-journald (2.1.0)
320
+ journald-logger (~> 3.0)
321
+ logging
322
+ loofah (2.4.0)
323
+ crass (~> 1.0.2)
324
+ nokogiri (>= 1.5.9)
325
+ mail (2.7.1)
326
+ mini_mime (>= 0.1.1)
327
+ marcel (0.3.3)
328
+ mimemagic (~> 0.3.2)
329
+ maruku (0.7.3)
330
+ memoist (0.16.2)
331
+ metaclass (0.0.4)
332
+ method_source (0.9.2)
333
+ mime-types (3.3.1)
334
+ mime-types-data (~> 3.2015)
335
+ mime-types-data (3.2019.1009)
336
+ mimemagic (0.3.4)
337
+ mini_mime (1.0.2)
338
+ mini_portile2 (2.4.0)
339
+ minitest (5.10.3)
340
+ minitest-reporters (1.4.2)
341
+ ansi
342
+ builder
343
+ minitest (>= 5.0)
344
+ ruby-progressbar
345
+ minitest-retry (0.2.0)
346
+ minitest (>= 5.0)
347
+ minitest-spec-rails (6.0.2)
348
+ minitest (>= 5.0)
349
+ railties (>= 4.1)
350
+ minitest-tags (0.0.5)
351
+ mocha (1.9.0)
352
+ metaclass (~> 0.0.1)
353
+ msgpack (1.3.3)
354
+ multi_json (1.14.1)
355
+ multipart-post (2.1.1)
356
+ mustermann (1.1.1)
357
+ ruby2_keywords (~> 0.0.1)
358
+ mysql2 (0.5.2)
359
+ net-ldap (0.16.2)
360
+ net-ping (2.0.6)
361
+ net-scp (2.0.0)
362
+ net-ssh (>= 2.6.5, < 6.0.0)
363
+ net-ssh (4.2.0)
364
+ netrc (0.11.0)
365
+ nio4r (2.5.2)
366
+ nokogiri (1.10.9)
367
+ mini_portile2 (~> 2.4.0)
368
+ oauth (0.5.4)
369
+ optimist (3.0.0)
370
+ os (1.0.1)
371
+ ovirt-engine-sdk (4.3.0)
372
+ json (>= 1, < 3)
373
+ paint (2.2.0)
374
+ parallel (1.19.1)
375
+ parallel_tests (2.31.0)
376
+ parallel
377
+ parse-cron (0.1.4)
378
+ parser (2.7.0.4)
379
+ ast (~> 2.4.0)
380
+ patternfly-sass (3.37.10)
381
+ bootstrap-sass (~> 3.3.7)
382
+ font-awesome-sass (~> 4.6.2)
383
+ sass (~> 3.4.15)
384
+ pg (1.2.2)
385
+ po_to_json (1.0.1)
386
+ json (>= 1.6.0)
387
+ poltergeist (1.18.1)
388
+ capybara (>= 2.1, < 4)
389
+ cliver (~> 0.3.1)
390
+ websocket-driver (>= 0.2.0)
391
+ polyglot (0.3.5)
392
+ prometheus-client (1.0.0)
393
+ promise.rb (0.7.4)
394
+ pry (0.12.2)
395
+ coderay (~> 1.1.0)
396
+ method_source (~> 0.9.0)
397
+ public_suffix (4.0.3)
398
+ pulp_ansible_client (0.2.0b6.dev01570985981)
399
+ faraday (>= 0.14.0)
400
+ json (~> 2.1, >= 2.1.0)
401
+ pulp_docker_client (4.0.0b8.dev01571062112)
402
+ faraday (>= 0.14.0)
403
+ json (~> 2.1, >= 2.1.0)
404
+ pulp_file_client (0.1.0b5.dev01571253617)
405
+ faraday (>= 0.14.0)
406
+ json (~> 2.1, >= 2.1.0)
407
+ pulp_rpm_client (3.0.0b71571331815)
408
+ faraday (>= 0.14.0)
409
+ json (~> 2.1, >= 2.1.0)
410
+ pulpcore_client (3.0.0rc8.dev01571235538)
411
+ faraday (>= 0.14.0)
412
+ json (~> 2.1, >= 2.1.0)
413
+ puma (4.3.3)
414
+ nio4r (~> 2.0)
415
+ qpid_messaging (1.39.0)
416
+ rabl (0.14.2)
417
+ activesupport (>= 2.3.14)
418
+ rack (2.0.9)
419
+ rack-cors (1.0.6)
420
+ rack (>= 1.6.0)
421
+ rack-jsonp (1.3.1)
422
+ rack
423
+ rack-openid (1.4.2)
424
+ rack (>= 1.1.0)
425
+ ruby-openid (>= 2.1.8)
426
+ rack-protection (2.0.8.1)
427
+ rack
428
+ rack-test (1.1.0)
429
+ rack (>= 1.0, < 3)
430
+ rails (5.2.1)
431
+ actioncable (= 5.2.1)
432
+ actionmailer (= 5.2.1)
433
+ actionpack (= 5.2.1)
434
+ actionview (= 5.2.1)
435
+ activejob (= 5.2.1)
436
+ activemodel (= 5.2.1)
437
+ activerecord (= 5.2.1)
438
+ activestorage (= 5.2.1)
439
+ activesupport (= 5.2.1)
440
+ bundler (>= 1.3.0)
441
+ railties (= 5.2.1)
442
+ sprockets-rails (>= 2.0.0)
443
+ rails-controller-testing (1.0.4)
444
+ actionpack (>= 5.0.1.x)
445
+ actionview (>= 5.0.1.x)
446
+ activesupport (>= 5.0.1.x)
447
+ rails-dom-testing (2.0.3)
448
+ activesupport (>= 4.2.0)
449
+ nokogiri (>= 1.6)
450
+ rails-html-sanitizer (1.3.0)
451
+ loofah (~> 2.3)
452
+ rails-i18n (5.1.3)
453
+ i18n (>= 0.7, < 2)
454
+ railties (>= 5.0, < 6)
455
+ railties (5.2.1)
456
+ actionpack (= 5.2.1)
457
+ activesupport (= 5.2.1)
458
+ method_source
459
+ rake (>= 0.8.7)
460
+ thor (>= 0.19.0, < 2.0)
461
+ rainbow (3.0.0)
462
+ rake (13.0.1)
463
+ rbovirt (0.1.7)
464
+ nokogiri
465
+ rest-client (> 1.7.0)
466
+ rbvmomi (2.3.0)
467
+ builder (~> 3.0)
468
+ json (>= 1.8)
469
+ nokogiri (~> 1.5)
470
+ optimist (~> 3.0)
471
+ rdoc (6.2.1)
472
+ record_tag_helper (1.0.1)
473
+ actionview (>= 5)
474
+ redhat_access (2.2.18)
475
+ angular-rails-templates (>= 0.0.4)
476
+ foreman-tasks
477
+ katello
478
+ redhat_access_lib (>= 1.1.5)
479
+ redhat_access_lib (1.1.5)
480
+ rest-client (>= 1.6.3)
481
+ redis (4.1.3)
482
+ regexp_parser (1.7.0)
483
+ representable (3.0.4)
484
+ declarative (< 0.1.0)
485
+ declarative-option (< 0.2.0)
486
+ uber (< 0.2.0)
487
+ responders (3.0.0)
488
+ actionpack (>= 5.0)
489
+ railties (>= 5.0)
490
+ rest-client (2.1.0)
491
+ http-accept (>= 1.7.0, < 2.0)
492
+ http-cookie (>= 1.0.2, < 2.0)
493
+ mime-types (>= 1.16, < 4.0)
494
+ netrc (~> 0.8)
495
+ retriable (3.1.2)
496
+ rfauxfactory (0.1.5)
497
+ roadie (4.0.0)
498
+ css_parser (~> 1.4)
499
+ nokogiri (~> 1.8)
500
+ roadie-rails (2.1.1)
501
+ railties (>= 5.1, < 6.1)
502
+ roadie (>= 3.1, < 5.0)
503
+ robotex (1.0.0)
504
+ robottelo_reporter (0.1.1)
505
+ builder (>= 2.1.2)
506
+ rubocop (0.71.0)
507
+ jaro_winkler (~> 1.5.1)
508
+ parallel (~> 1.10)
509
+ parser (>= 2.6)
510
+ rainbow (>= 2.2.2, < 4.0)
511
+ ruby-progressbar (~> 1.7)
512
+ unicode-display_width (>= 1.4.0, < 1.7)
513
+ rubocop-checkstyle_formatter (0.4.0)
514
+ rubocop (>= 0.35.1)
515
+ rubocop-performance (1.4.1)
516
+ rubocop (>= 0.71.0)
517
+ rubocop-rails (2.0.1)
518
+ rack (>= 1.1)
519
+ rubocop (>= 0.70.0)
520
+ ruby-libvirt (0.7.1)
521
+ ruby-openid (2.9.2)
522
+ ruby-progressbar (1.10.1)
523
+ ruby2_keywords (0.0.2)
524
+ ruby2ruby (2.4.4)
525
+ ruby_parser (~> 3.1)
526
+ sexp_processor (~> 4.6)
527
+ ruby_parser (3.14.2)
528
+ sexp_processor (~> 4.9)
529
+ rubyzip (2.2.0)
530
+ runcible (2.13.1)
531
+ activesupport (>= 3.0.10)
532
+ i18n (>= 0.5.0)
533
+ json
534
+ oauth
535
+ rest-client (>= 1.6.1, < 3.0.0)
536
+ safe_yaml (1.0.5)
537
+ safemode (1.3.5)
538
+ ruby2ruby (>= 2.4.0)
539
+ ruby_parser (>= 3.10.1)
540
+ sexp_processor (>= 4.10.0)
541
+ sass (3.4.25)
542
+ sass-rails (5.1.0)
543
+ railties (>= 5.2.0)
544
+ sass (~> 3.1)
545
+ sprockets (>= 2.8, < 4.0)
546
+ sprockets-rails (>= 2.0, < 4.0)
547
+ tilt (>= 1.1, < 3)
548
+ scoped_search (4.1.7)
549
+ activerecord (>= 4.2.0)
550
+ secure_headers (6.3.0)
551
+ selenium-webdriver (3.142.7)
552
+ childprocess (>= 0.5, < 4.0)
553
+ rubyzip (>= 1.2.2)
554
+ sequel (5.30.0)
555
+ sexp_processor (4.14.1)
556
+ shoulda-context (1.2.2)
557
+ shoulda-matchers (4.3.0)
558
+ activesupport (>= 4.2.0)
559
+ show_me_the_cookies (5.0.0)
560
+ capybara (>= 2, < 4)
561
+ sidekiq (5.2.8)
562
+ connection_pool (~> 2.2, >= 2.2.2)
563
+ rack (< 2.1.0)
564
+ rack-protection (>= 1.5.0)
565
+ redis (>= 3.3.5, < 5)
566
+ signet (0.13.0)
567
+ addressable (~> 2.3)
568
+ faraday (>= 0.17.3, < 2.0)
569
+ jwt (>= 1.5, < 3.0)
570
+ multi_json (~> 1.10)
571
+ simplecov (0.18.5)
572
+ docile (~> 1.1)
573
+ simplecov-html (~> 0.11)
574
+ simplecov-html (0.12.2)
575
+ simplecov-rcov (0.2.3)
576
+ simplecov (>= 0.4.1)
577
+ sinatra (2.0.8.1)
578
+ mustermann (~> 1.0)
579
+ rack (~> 2.0)
580
+ rack-protection (= 2.0.8.1)
581
+ tilt (~> 2.0)
582
+ single_test (0.6.0)
583
+ rake
584
+ spring (2.1.0)
585
+ sprockets (3.7.2)
586
+ concurrent-ruby (~> 1.0)
587
+ rack (> 1, < 3)
588
+ sprockets-rails (3.2.1)
589
+ actionpack (>= 4.0)
590
+ activesupport (>= 4.0)
591
+ sprockets (>= 3.0.0)
592
+ sqlite3 (1.3.13)
593
+ sshkey (1.9.0)
594
+ statsd-instrument (2.9.2)
595
+ text (1.3.1)
596
+ thor (1.0.1)
597
+ thread_safe (0.3.6)
598
+ tilt (2.0.10)
599
+ turbolinks (2.5.4)
600
+ coffee-rails
601
+ tzinfo (1.2.6)
602
+ thread_safe (~> 0.1)
603
+ uber (0.1.0)
604
+ uglifier (4.2.0)
605
+ execjs (>= 0.3.0, < 3)
606
+ unf (0.1.4)
607
+ unf_ext
608
+ unf_ext (0.0.7.6)
609
+ unicode-display_width (1.6.1)
610
+ uniform_notifier (1.13.0)
611
+ validates_lengths_from_database (0.8.0)
612
+ activerecord (>= 4)
613
+ vcr (3.0.3)
614
+ webmock (3.8.3)
615
+ addressable (>= 2.3.6)
616
+ crack (>= 0.3.2)
617
+ hashdiff (>= 0.4.0, < 2.0.0)
618
+ webpack-rails (0.9.11)
619
+ railties (>= 3.2.0)
620
+ websocket-driver (0.7.1)
621
+ websocket-extensions (>= 0.1.0)
622
+ websocket-extensions (0.1.4)
623
+ will_paginate (3.3.0)
624
+ wirb (2.2.1)
625
+ paint (>= 0.9, < 3.0)
626
+ x-editable-rails (1.5.5.1)
627
+ railties
628
+ xpath (3.2.0)
629
+ nokogiri (~> 1.8)
630
+
631
+ PLATFORMS
632
+ ruby
633
+
634
+ DEPENDENCIES
635
+ activerecord-nulldb-adapter
636
+ activerecord-session_store (>= 1.1.0, < 2)
637
+ ancestry (>= 2.0, < 4)
638
+ apipie-rails (>= 0.5.2, < 0.6.0)
639
+ as_deprecation_tracker (~> 1.4)
640
+ audited (>= 4.9.0, < 5)
641
+ awesome_print (~> 1.0)
642
+ bcrypt (~> 3.1)
643
+ benchmark-ips (>= 2.8.2)
644
+ bootsnap
645
+ bullet (>= 5.7.3)
646
+ capybara (~> 3.0, < 3.32.1)
647
+ ci_reporter_minitest
648
+ daemons
649
+ database_cleaner (~> 1.3)
650
+ deacon (~> 1.0)
651
+ deep_cloneable (>= 3, < 4)
652
+ dynflow (>= 1.4.0, < 2.0.0)
653
+ execjs (>= 1.4.0, < 3.0)
654
+ facter
655
+ factory_bot_rails (~> 5.0)
656
+ fast_gettext (~> 1.4)
657
+ fog-aws (< 4)
658
+ fog-core (= 2.1.0)
659
+ fog-google (~> 1.8.2)
660
+ fog-libvirt (>= 0.6.0)
661
+ fog-openstack (>= 1.0.8, < 2.0.0)
662
+ fog-ovirt (~> 1.2.0)
663
+ fog-rackspace (~> 0.1.4)
664
+ fog-vsphere (~> 3.2, >= 3.2.1)
665
+ foreman
666
+ foreman_rh_cloud!
667
+ friendly_id (>= 5.2.4, < 6)
668
+ get_process_mem
669
+ gettext (>= 3.2.1, < 4.0.0)
670
+ gettext_i18n_rails (~> 1.8)
671
+ gettext_i18n_rails_js (~> 1.0)
672
+ gitlab-sidekiq-fetcher
673
+ graphiql-rails (~> 1.7)
674
+ graphql (~> 1.8.0)
675
+ graphql-batch
676
+ i18n (~> 1.1)
677
+ immigrant (~> 0.1)
678
+ jquery-turbolinks (~> 2.1)
679
+ jquery-ui-rails (< 5.0.0)
680
+ jwt (~> 2.2.1)
681
+ katello!
682
+ launchy (~> 2.4)
683
+ ldap_fluff (>= 0.4.7, < 1.0)
684
+ logging (>= 1.8.0, < 3.0.0)
685
+ logging-journald (~> 2.0)
686
+ mail (~> 2.7)
687
+ maruku (~> 0.7)
688
+ minitest (~> 5.1, < 5.11)
689
+ minitest-reporters
690
+ minitest-retry (~> 0.0)
691
+ minitest-spec-rails (~> 6.0)
692
+ minitest-tags
693
+ mocha (~> 1.4, < 1.10)
694
+ mysql2 (>= 0.4.4, < 0.6.0)
695
+ net-ldap (>= 0.16.0)
696
+ net-ping
697
+ net-scp
698
+ net-ssh (= 4.2.0)
699
+ oauth (>= 0.5.4, < 1)
700
+ parallel_tests
701
+ patternfly-sass (>= 3.32.1, < 3.38.0)
702
+ pg (>= 0.18, < 2.0)
703
+ poltergeist (>= 1.18.0)
704
+ prometheus-client (~> 1.0)
705
+ pry
706
+ puma
707
+ rabl (~> 0.11)
708
+ rack-cors (~> 1.0.2)
709
+ rack-jsonp
710
+ rack-openid (~> 1.3)
711
+ rails (= 5.2.1)
712
+ rails-controller-testing (~> 1.0)
713
+ rails-i18n (~> 5.0)
714
+ rbvmomi (~> 2.0)
715
+ rdoc
716
+ record_tag_helper (~> 1.0)
717
+ redis (~> 4.0)
718
+ responders (~> 3.0)
719
+ rest-client (>= 2.0.0, < 3)
720
+ rfauxfactory (~> 0.1, >= 0.1.5)
721
+ roadie-rails (~> 2.0)
722
+ robottelo_reporter (~> 0.1)
723
+ rubocop (~> 0.71.0)
724
+ rubocop-checkstyle_formatter (~> 0.2)
725
+ rubocop-performance (~> 1.4.0)
726
+ rubocop-rails (~> 2.0.1)
727
+ ruby-libvirt (~> 0.5)
728
+ safemode (>= 1.3.5, < 2)
729
+ sass-rails (>= 5.0, < 6.0)
730
+ scoped_search (>= 4.1.7, < 5)
731
+ secure_headers (~> 6.3)
732
+ selenium-webdriver
733
+ shoulda-context (~> 1.2)
734
+ shoulda-matchers (~> 4.0)
735
+ show_me_the_cookies (~> 5.0)
736
+ sidekiq (~> 5.0)
737
+ simplecov
738
+ simplecov-rcov
739
+ single_test (~> 0.6)
740
+ spring (>= 1.0, < 3)
741
+ sprockets (~> 3)
742
+ sprockets-rails (~> 3.0)
743
+ sqlite3 (~> 1.3.6)
744
+ sshkey (~> 1.9)
745
+ statsd-instrument (< 3)
746
+ turbolinks (>= 2.5.4, < 3)
747
+ uglifier (>= 1.0.3)
748
+ validates_lengths_from_database (>= 0.5, < 1)
749
+ vcr (< 4.0.0)
750
+ webmock
751
+ webpack-rails (~> 0.9.8)
752
+ will_paginate (>= 3.1.7, < 4)
753
+ wirb (>= 1.0, < 3.0)
754
+ x-editable-rails (~> 1.5.5)
755
+
756
+ BUNDLED WITH
757
+ 1.16.1