foreman_rh_cloud 9.0.55 → 9.0.56

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: e63267cff67596355989b7c79e8d84105df6ebc9a8779704f414e3e046ec1902
4
- data.tar.gz: 834bca7a10443cf868a1247dc4d10dd564024dfe69fd9460eba644629cf195d6
3
+ metadata.gz: 275b6d2f844f2b835e214f1744143d10876847c0bc297e3211283ff1d389ed66
4
+ data.tar.gz: 0174eb4d94a1f0d12d464f89d75d53d4e4405c38272cb2fb7203e17c3bc16d8c
5
5
  SHA512:
6
- metadata.gz: 731740c7cb108304f2dadfc5b76a75d9bab9cb6a6cddb2608e2b15ce265885409d96e41c51e2eea06da22dd614a40a56485cf945d05d79da6fb616fd3e407b8d
7
- data.tar.gz: 2747d5cef2268291356e675b493b40bc3fb95a8b309750242b42179445ef875bead8068ece9bcfb2fb687208f5c30babc6a1b9438cc9c5870615d602774f4769
6
+ metadata.gz: 0b0b5acb74eee23ba869cd4df107452ce4e4583598733de4e33d6c347caca74b2f3d2a2997ead9757ac4f4fce7b6a415c50e0c101afb051f9d410eacd8e9f8b7
7
+ data.tar.gz: d34010cfe78dc75157c3aae2ddc5f783dd1c62f8335ecaa57954dcad0023d98498cbcb8bf110d3d51b1c70656d5717dc45649fc0cac409750523a0696a5c808b
@@ -491,6 +491,9 @@
491
491
  "The server returned the following error: %s": [
492
492
  ""
493
493
  ],
494
+ "There are no recommendations for your hosts": [
495
+ ""
496
+ ],
494
497
  "Foreman plugin that process & upload data to Red Hat Cloud": [
495
498
  ""
496
499
  ]
@@ -491,6 +491,9 @@
491
491
  "The server returned the following error: %s": [
492
492
  "Le serveur a renvoyé l'erreur suivante : %s"
493
493
  ],
494
+ "There are no recommendations for your hosts": [
495
+ ""
496
+ ],
494
497
  "Foreman plugin that process & upload data to Red Hat Cloud": [
495
498
  "Plugin Foreman qui traite et télécharge les données vers Red Hat Cloud"
496
499
  ]
@@ -491,6 +491,9 @@
491
491
  "The server returned the following error: %s": [
492
492
  "サーバーは以下のエラーを返しました: %s"
493
493
  ],
494
+ "There are no recommendations for your hosts": [
495
+ ""
496
+ ],
494
497
  "Foreman plugin that process & upload data to Red Hat Cloud": [
495
498
  "データを処理して Red Hat Cloud にアップロードする Foreman プラグイン"
496
499
  ]
@@ -491,6 +491,9 @@
491
491
  "The server returned the following error: %s": [
492
492
  "სერვერმა შემდეგი შეცდომა დააბრუნა: %ს"
493
493
  ],
494
+ "There are no recommendations for your hosts": [
495
+ ""
496
+ ],
494
497
  "Foreman plugin that process & upload data to Red Hat Cloud": [
495
498
  "Foreman-ის დამატება, რომელიც მონაცემების დამუშავებაზე და Red Hat Cloud-ში ატვირთვაზე აგებს პასუხს"
496
499
  ]
@@ -491,6 +491,9 @@
491
491
  "The server returned the following error: %s": [
492
492
  "服务器返回以下错误:%s"
493
493
  ],
494
+ "There are no recommendations for your hosts": [
495
+ ""
496
+ ],
494
497
  "Foreman plugin that process & upload data to Red Hat Cloud": [
495
498
  "处理数据并将其上传到红帽云的 Foreman 插件"
496
499
  ]
@@ -18,10 +18,10 @@ module Api
18
18
 
19
19
  api :POST, "/organizations/:organization_id/rh_cloud/report", N_("Start report generation")
20
20
  param :organization_id, Integer, required: true, desc: N_("Set the current organization context for the request")
21
- param :disconnected, :bool, required: false, desc: N_('Generate the report, but do not upload')
21
+ param :disconnected, :bool, required: false, default: false, desc: N_('Generate the report, but do not upload')
22
22
  def generate_report
23
23
  organization_id = params[:organization_id]
24
- disconnected = params[:disconnected]
24
+ disconnected = params[:disconnected] || false
25
25
 
26
26
  start_report_generation(organization_id, disconnected)
27
27
 
data/config/routes.rb CHANGED
@@ -41,7 +41,7 @@ Rails.application.routes.draw do
41
41
  end
42
42
 
43
43
  scope '/r/insights' do
44
- match '(/*path)(/)', :constraints => lambda { |req| !req.path.include?('view/api') }, to: 'machine_telemetries#forward_request', via: [:get, :post, :delete,:put, :patch]
44
+ match '(/*path)(/)', constraints: ->(req) { !req.path.include?('view/api') }, to: 'machine_telemetries#forward_request', via: [:get, :post, :delete, :put, :patch]
45
45
  end
46
46
  end
47
47
 
@@ -8,4 +8,3 @@ blueprints = [
8
8
  ]
9
9
 
10
10
  blueprints.each { |blueprint| UINotifications::Seed.new(blueprint).configure }
11
-
@@ -4,11 +4,11 @@ User.as_anonymous_admin do
4
4
  JobTemplate.without_auditing do
5
5
  Dir[File.join("#{ForemanRhCloud::Engine.root}/app/views/job_templates/**/*.erb")].each do |template|
6
6
  template = JobTemplate.import_raw!(File.read(template),
7
- :default => true,
8
- :lock => true,
9
- :update => true)
7
+ :default => true,
8
+ :lock => true,
9
+ :update => true)
10
10
  template.organizations = organizations if template.present?
11
11
  template.locations = locations if template.present?
12
12
  end
13
13
  end
14
- end
14
+ end
@@ -20,7 +20,8 @@ module ForemanInventoryUpload
20
20
  total_hosts = ForemanInventoryUpload::Generators::Queries.for_org(organization.id, use_batches: false).count
21
21
 
22
22
  if total_hosts <= ForemanInventoryUpload.max_org_size
23
- plan_generate_report(ForemanInventoryUpload.generated_reports_folder, organization)
23
+ disconnected = false
24
+ plan_generate_report(ForemanInventoryUpload.generated_reports_folder, organization, disconnected)
24
25
  else
25
26
  logger.info("Skipping automatic uploads for organization #{organization.name}, too many hosts (#{total_hosts}/#{ForemanInventoryUpload.max_org_size})")
26
27
  end
@@ -1,3 +1,3 @@
1
1
  module ForemanRhCloud
2
- VERSION = '9.0.55'.freeze
2
+ VERSION = '9.0.56'.freeze
3
3
  end
@@ -7,7 +7,7 @@ namespace :rh_cloud do |args|
7
7
  task hybridcloud_register: [:environment] do
8
8
  include ::ForemanRhCloud::CertAuth
9
9
  include ::InsightsCloud::CandlepinCache
10
-
10
+
11
11
  def logger
12
12
  @logger ||= Logger.new(STDOUT)
13
13
  end
@@ -21,7 +21,7 @@ namespace :rh_cloud do |args|
21
21
  logger.error('ERROR: org_id needs to be specified.')
22
22
  exit(1)
23
23
  end
24
-
24
+
25
25
  @organization = Organization.find_by(id: ENV['org_id'].to_i) # saw this coming in as a string, so making sure it gets passed as an integer.
26
26
  @uid = cp_owner_id(@organization)
27
27
  @hostname = ForemanRhCloud.foreman_host_name
@@ -33,14 +33,14 @@ namespace :rh_cloud do |args|
33
33
 
34
34
  def headers
35
35
  {
36
- Authorization: "Bearer #{@token}"
36
+ Authorization: "Bearer #{@token}",
37
37
  }
38
38
  end
39
39
 
40
40
  def payload
41
41
  {
42
42
  "uid": @uid,
43
- "display_name": "#{@hostname}+#{@organization.label}"
43
+ "display_name": "#{@hostname}+#{@organization.label}",
44
44
  }
45
45
  end
46
46
 
@@ -57,7 +57,7 @@ namespace :rh_cloud do |args|
57
57
  payload: payload.to_json
58
58
  )
59
59
  logger.debug(response)
60
- rescue Exception => ex
60
+ rescue StandardError => ex
61
61
  logger.error(ex)
62
62
  end
63
63
  end
@@ -4,10 +4,10 @@ namespace :rh_cloud_inventory do
4
4
  namespace :report do
5
5
  desc 'Generate inventory report and send it to Red Hat cloud'
6
6
  task generate_upload: [:environment, 'dynflow:client'] do
7
- unless ENV['organization_id'].nil?
8
- organizations = [ Organization.where(:id => ENV['organization_id']).first ]
9
- else
7
+ if ENV['organization_id'].nil?
10
8
  organizations = Organization.unscoped.all
9
+ else
10
+ organizations = [Organization.where(:id => ENV['organization_id']).first]
11
11
  end
12
12
 
13
13
  User.as_anonymous_admin do
@@ -55,8 +55,8 @@ namespace :rh_cloud_inventory do
55
55
 
56
56
  desc "Synchronize Hosts inventory"
57
57
  task sync: [:environment, 'dynflow:client'] do
58
- if ! ENV['organization_id'].nil?
59
- organizations = [ Organization.where(:id => ENV['organization_id']).first ]
58
+ if !ENV['organization_id'].nil?
59
+ organizations = [Organization.where(:id => ENV['organization_id']).first]
60
60
  else
61
61
  organizations = Organization.all
62
62
  end
@@ -444,6 +444,9 @@ msgstr ""
444
444
  msgid "The task failed with the following error:"
445
445
  msgstr ""
446
446
 
447
+ msgid "There are no recommendations for your hosts"
448
+ msgstr ""
449
+
447
450
  msgid "This action will also enable automatic reports upload"
448
451
  msgstr ""
449
452
 
@@ -8,8 +8,8 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: foreman_rh_cloud 1.0.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2023-11-29 00:27+0100\n"
12
- "PO-Revision-Date: 2023-11-29 00:27+0100\n"
11
+ "POT-Creation-Date: 2024-03-05 20:08+0100\n"
12
+ "PO-Revision-Date: 2024-03-05 20:08+0100\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -799,6 +799,10 @@ msgstr ""
799
799
  msgid "The server returned the following error: %s"
800
800
  msgstr ""
801
801
 
802
+ #: ../webpack/common/table/EmptyState.js:44
803
+ msgid "There are no recommendations for your hosts"
804
+ msgstr ""
805
+
802
806
  #: gemspec.rb:2
803
807
  msgid "Foreman plugin that process & upload data to Red Hat Cloud"
804
808
  msgstr ""
@@ -456,6 +456,9 @@ msgstr "Le serveur a renvoyé l'erreur suivante : %s"
456
456
  msgid "The task failed with the following error:"
457
457
  msgstr "La tâche a échoué avec l'erreur suivante :"
458
458
 
459
+ msgid "There are no recommendations for your hosts"
460
+ msgstr ""
461
+
459
462
  msgid "This action will also enable automatic reports upload"
460
463
  msgstr "Cette action permettra également le téléchargement automatique des rapports"
461
464
 
@@ -449,6 +449,9 @@ msgstr "サーバーは以下のエラーを返しました: %s"
449
449
  msgid "The task failed with the following error:"
450
450
  msgstr "タスクは以下のエラーで失敗しました: "
451
451
 
452
+ msgid "There are no recommendations for your hosts"
453
+ msgstr ""
454
+
452
455
  msgid "This action will also enable automatic reports upload"
453
456
  msgstr "このアクションを実行すると、自動レポートのアップロードも有効になります。"
454
457
 
@@ -448,6 +448,9 @@ msgstr "სერვერმა შემდეგი შეცდომა დ
448
448
  msgid "The task failed with the following error:"
449
449
  msgstr "დავალება შემდეგი შეცდომით დასრულდა:"
450
450
 
451
+ msgid "There are no recommendations for your hosts"
452
+ msgstr ""
453
+
451
454
  msgid "This action will also enable automatic reports upload"
452
455
  msgstr "ეს ქმედება ავტომატურად ანგარიშების ატვირთვასაც ჩართავს"
453
456
 
@@ -454,6 +454,9 @@ msgstr "服务器返回以下错误:%s"
454
454
  msgid "The task failed with the following error:"
455
455
  msgstr "任务失败,错误为:"
456
456
 
457
+ msgid "There are no recommendations for your hosts"
458
+ msgstr ""
459
+
457
460
  msgid "This action will also enable automatic reports upload"
458
461
  msgstr "此操作还会启用自动报告上传"
459
462
 
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foreman_rh_cloud",
3
- "version": "9.0.51",
3
+ "version": "9.0.56",
4
4
  "description": "Inventory Upload =============",
5
5
  "main": "index.js",
6
6
  "scripts": {
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_rh_cloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.0.55
4
+ version: 9.0.56
5
5
  platform: ruby
6
6
  authors:
7
7
  - Foreman Red Hat Cloud team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-15 00:00:00.000000000 Z
11
+ date: 2024-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: katello
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '0'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: '0'
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: foreman_ansible
29
15
  requirement: !ruby/object:Gem::Requirement
@@ -53,27 +39,13 @@ dependencies:
53
39
  - !ruby/object:Gem::Version
54
40
  version: '0'
55
41
  - !ruby/object:Gem::Dependency
56
- name: rdoc
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: '0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - ">="
67
- - !ruby/object:Gem::Version
68
- version: '0'
69
- - !ruby/object:Gem::Dependency
70
- name: rubocop
42
+ name: katello
71
43
  requirement: !ruby/object:Gem::Requirement
72
44
  requirements:
73
45
  - - ">="
74
46
  - !ruby/object:Gem::Version
75
47
  version: '0'
76
- type: :development
48
+ type: :runtime
77
49
  prerelease: false
78
50
  version_requirements: !ruby/object:Gem::Requirement
79
51
  requirements:
@@ -81,7 +53,7 @@ dependencies:
81
53
  - !ruby/object:Gem::Version
82
54
  version: '0'
83
55
  - !ruby/object:Gem::Dependency
84
- name: rubocop-performance
56
+ name: rdoc
85
57
  requirement: !ruby/object:Gem::Requirement
86
58
  requirements:
87
59
  - - ">="
@@ -95,19 +67,19 @@ dependencies:
95
67
  - !ruby/object:Gem::Version
96
68
  version: '0'
97
69
  - !ruby/object:Gem::Dependency
98
- name: rubocop-rails
70
+ name: theforeman-rubocop
99
71
  requirement: !ruby/object:Gem::Requirement
100
72
  requirements:
101
- - - ">="
73
+ - - "~>"
102
74
  - !ruby/object:Gem::Version
103
- version: '0'
75
+ version: 0.0.6
104
76
  type: :development
105
77
  prerelease: false
106
78
  version_requirements: !ruby/object:Gem::Requirement
107
79
  requirements:
108
- - - ">="
80
+ - - "~>"
109
81
  - !ruby/object:Gem::Version
110
- version: '0'
82
+ version: 0.0.6
111
83
  description: Foreman plugin that process & upload data to Red Hat Cloud
112
84
  email:
113
85
  - rlavi@redhat.com, sshtein@redhat.com
@@ -171,7 +143,6 @@ files:
171
143
  - app/views/job_templates/rh_cloud_download_playbook.erb
172
144
  - app/views/job_templates/rh_cloud_remediations.erb
173
145
  - app/views/layouts/foreman_rh_cloud/application.html.erb
174
- - config/Gemfile.lock.gh_test
175
146
  - config/database.yml.example
176
147
  - config/package-lock.json.plugin
177
148
  - config/rh_cert-api_chain.pem
@@ -676,7 +647,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
676
647
  requirements:
677
648
  - - ">="
678
649
  - !ruby/object:Gem::Version
679
- version: '0'
650
+ version: '2.7'
651
+ - - "<"
652
+ - !ruby/object:Gem::Version
653
+ version: '4'
680
654
  required_rubygems_version: !ruby/object:Gem::Requirement
681
655
  requirements:
682
656
  - - ">="
@@ -1,879 +0,0 @@
1
- PATH
2
- remote: ../foreman-tasks
3
- specs:
4
- foreman-tasks (6.0.2)
5
- dynflow (>= 1.6.0)
6
- get_process_mem
7
- parse-cron (~> 0.1.4)
8
- sinatra
9
-
10
- PATH
11
- remote: ../foreman_rh_cloud
12
- specs:
13
- foreman_rh_cloud (6.0.39)
14
- foreman-tasks
15
- foreman_ansible
16
- katello
17
-
18
- PATH
19
- remote: ../katello
20
- specs:
21
- katello (4.5.0)
22
- activerecord-import
23
- anemone
24
- angular-rails-templates (~> 1.1.0)
25
- apipie-rails (>= 0.5.14)
26
- deface (>= 1.0.2, < 2.0.0)
27
- dynflow (>= 1.6.1)
28
- faraday (< 1.9)
29
- foreman-tasks (>= 5.0)
30
- foreman_remote_execution (>= 7.1.0)
31
- fx (< 1.0)
32
- gettext_i18n_rails
33
- json
34
- oauth
35
- pg
36
- pulp_ansible_client (>= 0.13.1, < 0.14)
37
- pulp_certguard_client (< 2.0)
38
- pulp_container_client (>= 2.10.0, < 2.11.0)
39
- pulp_deb_client (>= 2.18.0, < 2.19.0)
40
- pulp_file_client (>= 1.10.0, < 1.11.0)
41
- pulp_ostree_client
42
- pulp_python_client (>= 3.6.0, < 3.7.0)
43
- pulp_rpm_client (>= 3.17.0, < 3.18.0)
44
- pulpcore_client (>= 3.18.0, < 3.19.0)
45
- qpid_proton
46
- rabl
47
- rails
48
- rest-client
49
- runcible (>= 2.13.0, < 3.0.0)
50
- scoped_search (>= 4.1.9)
51
- stomp
52
-
53
- GEM
54
- remote: https://rubygems.org/
55
- specs:
56
- actioncable (6.0.4.8)
57
- actionpack (= 6.0.4.8)
58
- nio4r (~> 2.0)
59
- websocket-driver (>= 0.6.1)
60
- actionmailbox (6.0.4.8)
61
- actionpack (= 6.0.4.8)
62
- activejob (= 6.0.4.8)
63
- activerecord (= 6.0.4.8)
64
- activestorage (= 6.0.4.8)
65
- activesupport (= 6.0.4.8)
66
- mail (>= 2.7.1)
67
- actionmailer (6.0.4.8)
68
- actionpack (= 6.0.4.8)
69
- actionview (= 6.0.4.8)
70
- activejob (= 6.0.4.8)
71
- mail (~> 2.5, >= 2.5.4)
72
- rails-dom-testing (~> 2.0)
73
- actionpack (6.0.4.8)
74
- actionview (= 6.0.4.8)
75
- activesupport (= 6.0.4.8)
76
- rack (~> 2.0, >= 2.0.8)
77
- rack-test (>= 0.6.3)
78
- rails-dom-testing (~> 2.0)
79
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
80
- actiontext (6.0.4.8)
81
- actionpack (= 6.0.4.8)
82
- activerecord (= 6.0.4.8)
83
- activestorage (= 6.0.4.8)
84
- activesupport (= 6.0.4.8)
85
- nokogiri (>= 1.8.5)
86
- actionview (6.0.4.8)
87
- activesupport (= 6.0.4.8)
88
- builder (~> 3.1)
89
- erubi (~> 1.4)
90
- rails-dom-testing (~> 2.0)
91
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
92
- activejob (6.0.4.8)
93
- activesupport (= 6.0.4.8)
94
- globalid (>= 0.3.6)
95
- activemodel (6.0.4.8)
96
- activesupport (= 6.0.4.8)
97
- activerecord (6.0.4.8)
98
- activemodel (= 6.0.4.8)
99
- activesupport (= 6.0.4.8)
100
- activerecord-import (1.4.0)
101
- activerecord (>= 4.2)
102
- activerecord-nulldb-adapter (0.8.0)
103
- activerecord (>= 5.2.0, < 7.1)
104
- activerecord-session_store (2.0.0)
105
- actionpack (>= 5.2.4.1)
106
- activerecord (>= 5.2.4.1)
107
- multi_json (~> 1.11, >= 1.11.2)
108
- rack (>= 2.0.8, < 3)
109
- railties (>= 5.2.4.1)
110
- activestorage (6.0.4.8)
111
- actionpack (= 6.0.4.8)
112
- activejob (= 6.0.4.8)
113
- activerecord (= 6.0.4.8)
114
- marcel (~> 1.0.0)
115
- activesupport (6.0.4.8)
116
- concurrent-ruby (~> 1.0, >= 1.0.2)
117
- i18n (>= 0.7, < 2)
118
- minitest (~> 5.1)
119
- tzinfo (~> 1.1)
120
- zeitwerk (~> 2.2, >= 2.2.2)
121
- acts_as_list (1.0.4)
122
- activerecord (>= 4.2)
123
- addressable (2.8.0)
124
- public_suffix (>= 2.0.2, < 5.0)
125
- algebrick (0.7.5)
126
- amazing_print (1.4.0)
127
- ancestry (3.2.1)
128
- activerecord (>= 4.2.0)
129
- anemone (0.7.2)
130
- nokogiri (>= 1.3.0)
131
- robotex (>= 1.0.0)
132
- angular-rails-templates (1.1.0)
133
- railties (>= 4.2, < 7)
134
- sprockets (>= 3.0, < 5)
135
- tilt
136
- ansi (1.5.0)
137
- apipie-dsl (2.5.0)
138
- apipie-params (0.0.5)
139
- apipie-rails (0.5.20)
140
- rails (>= 4.1)
141
- as_deprecation_tracker (1.6.0)
142
- activesupport (>= 4.2)
143
- railties (>= 4.2)
144
- ast (2.4.2)
145
- audited (4.10.0)
146
- activerecord (>= 4.2, < 6.2)
147
- autoprefixer-rails (10.4.7.0)
148
- execjs (~> 2)
149
- bcrypt (3.1.18)
150
- bcrypt_pbkdf (1.1.0)
151
- benchmark-ips (2.10.0)
152
- binding_of_caller (1.0.0)
153
- debug_inspector (>= 0.0.1)
154
- bootsnap (1.13.0)
155
- msgpack (~> 1.2)
156
- bootstrap-sass (3.4.1)
157
- autoprefixer-rails (>= 5.2.1)
158
- sassc (>= 2.0.0)
159
- builder (3.2.4)
160
- bullet (7.0.2)
161
- activesupport (>= 3.0.0)
162
- uniform_notifier (~> 1.11)
163
- byebug (11.1.3)
164
- capybara (3.37.1)
165
- addressable
166
- matrix
167
- mini_mime (>= 0.1.3)
168
- nokogiri (~> 1.8)
169
- rack (>= 1.6.0)
170
- rack-test (>= 0.6.3)
171
- regexp_parser (>= 1.5, < 3.0)
172
- xpath (~> 3.2)
173
- childprocess (4.1.0)
174
- coderay (1.1.3)
175
- coffee-rails (5.0.0)
176
- coffee-script (>= 2.2.0)
177
- railties (>= 5.2.0)
178
- coffee-script (2.4.1)
179
- coffee-script-source
180
- execjs
181
- coffee-script-source (1.12.2)
182
- concurrent-ruby (1.1.10)
183
- concurrent-ruby-edge (0.6.0)
184
- concurrent-ruby (~> 1.1.6)
185
- connection_pool (2.2.5)
186
- crack (0.4.5)
187
- rexml
188
- crass (1.0.6)
189
- css_parser (1.11.0)
190
- addressable
191
- daemons (1.4.1)
192
- database_cleaner (1.99.0)
193
- deacon (1.0.0)
194
- debug_inspector (1.1.0)
195
- declarative (0.0.20)
196
- deep_cloneable (3.2.0)
197
- activerecord (>= 3.1.0, < 8)
198
- deface (1.9.0)
199
- actionview (>= 5.2)
200
- nokogiri (>= 1.6)
201
- polyglot
202
- railties (>= 5.2)
203
- rainbow (>= 2.1.0)
204
- docile (1.4.0)
205
- domain_name (0.5.20190701)
206
- unf (>= 0.0.5, < 1.0.0)
207
- dynflow (1.6.7)
208
- algebrick (~> 0.7.0)
209
- apipie-params
210
- concurrent-ruby (~> 1.1.3)
211
- concurrent-ruby-edge (~> 0.6.0)
212
- msgpack (~> 1.3, >= 1.3.3)
213
- multi_json
214
- sequel (>= 4.0.0)
215
- ed25519 (1.3.0)
216
- erubi (1.11.0)
217
- excon (0.92.4)
218
- execjs (2.8.1)
219
- facter (4.2.11)
220
- hocon (~> 1.3)
221
- thor (>= 1.0.1, < 2.0)
222
- facterdb (1.19.0)
223
- facter (< 5.0.0)
224
- jgrep
225
- factory_bot (5.2.0)
226
- activesupport (>= 4.2.0)
227
- factory_bot_rails (5.2.0)
228
- factory_bot (~> 5.2.0)
229
- railties (>= 4.2.0)
230
- faraday (0.17.5)
231
- multipart-post (>= 1.2, < 3)
232
- fast_gettext (1.8.0)
233
- ffi (1.15.5)
234
- fog-aws (3.14.0)
235
- fog-core (~> 2.1)
236
- fog-json (~> 1.1)
237
- fog-xml (~> 0.1)
238
- fog-core (2.1.0)
239
- builder
240
- excon (~> 0.58)
241
- formatador (~> 0.2)
242
- mime-types
243
- fog-google (1.11.0)
244
- fog-core (<= 2.1.0)
245
- fog-json (~> 1.2)
246
- fog-xml (~> 0.1.0)
247
- google-api-client (>= 0.32, < 0.34)
248
- google-cloud-env (~> 1.2)
249
- fog-json (1.2.0)
250
- fog-core
251
- multi_json (~> 1.10)
252
- fog-libvirt (0.9.0)
253
- fog-core (>= 1.27.4)
254
- fog-json
255
- fog-xml (~> 0.1.1)
256
- json
257
- ruby-libvirt (>= 0.7.0)
258
- fog-openstack (1.1.0)
259
- fog-core (~> 2.1)
260
- fog-json (>= 1.0)
261
- fog-ovirt (2.0.2)
262
- activesupport
263
- fog-core
264
- fog-json
265
- fog-xml
266
- ovirt-engine-sdk (>= 4.3.1)
267
- fog-vsphere (3.5.2)
268
- fog-core
269
- rbvmomi (>= 1.9, < 3)
270
- fog-xml (0.1.4)
271
- fog-core
272
- nokogiri (>= 1.5.11, < 2.0.0)
273
- font-awesome-sass (4.6.2)
274
- sass (>= 3.2)
275
- foreman (0.87.2)
276
- foreman-tasks-core (0.3.6)
277
- dynflow (>= 1.2.0)
278
- foreman_ansible (7.1.2)
279
- acts_as_list (~> 1.0.3)
280
- deface (< 2.0)
281
- foreman-tasks (>= 5.2.0)
282
- foreman_remote_execution (>= 4.4.0)
283
- foreman_ansible_core (4.2.1)
284
- foreman-tasks-core (~> 0.3.2)
285
- foreman_remote_execution_core (~> 1.1)
286
- net-ssh
287
- foreman_remote_execution (7.1.1)
288
- deface
289
- dynflow (>= 1.0.2, < 2.0.0)
290
- foreman-tasks (>= 5.1.0)
291
- foreman_remote_execution_core (1.5.0)
292
- bcrypt_pbkdf
293
- ed25519
294
- foreman-tasks-core (>= 0.3.1)
295
- net-ssh
296
- smart_proxy_remote_execution_ssh (>= 0.4.0)
297
- formatador (0.3.0)
298
- forwardable (1.3.2)
299
- friendly_id (5.3.0)
300
- activerecord (>= 4.0.0)
301
- fx (0.7.0)
302
- activerecord (>= 4.0.0)
303
- railties (>= 4.0.0)
304
- get_process_mem (0.2.7)
305
- ffi (~> 1.0)
306
- gettext (3.4.3)
307
- erubi
308
- locale (>= 2.0.5)
309
- prime
310
- text (>= 1.3.0)
311
- gettext_i18n_rails (1.8.1)
312
- fast_gettext (>= 0.9.0)
313
- gettext_i18n_rails_js (1.3.1)
314
- gettext (>= 3.0.2)
315
- gettext_i18n_rails (>= 0.7.1)
316
- po_to_json (>= 1.0.0)
317
- rails (>= 3.2.0)
318
- gitlab-sidekiq-fetcher (0.6.1)
319
- sidekiq (>= 5, < 6.1)
320
- globalid (1.0.0)
321
- activesupport (>= 5.0)
322
- google-api-client (0.33.2)
323
- addressable (~> 2.5, >= 2.5.1)
324
- googleauth (~> 0.9)
325
- httpclient (>= 2.8.1, < 3.0)
326
- mini_mime (~> 1.0)
327
- representable (~> 3.0)
328
- retriable (>= 2.0, < 4.0)
329
- signet (~> 0.12)
330
- google-cloud-env (1.6.0)
331
- faraday (>= 0.17.3, < 3.0)
332
- googleauth (0.17.1)
333
- faraday (>= 0.17.3, < 2.0)
334
- jwt (>= 1.4, < 3.0)
335
- memoist (~> 0.16)
336
- multi_json (~> 1.11)
337
- os (>= 0.9, < 2.0)
338
- signet (~> 0.15)
339
- graphiql-rails (1.8.0)
340
- railties
341
- sprockets-rails
342
- graphql (1.8.18)
343
- graphql-batch (0.4.3)
344
- graphql (>= 1.3, < 2)
345
- promise.rb (~> 0.7.2)
346
- hashdiff (1.0.1)
347
- hocon (1.3.1)
348
- http-accept (1.7.0)
349
- http-cookie (1.0.5)
350
- domain_name (~> 0.5)
351
- httpclient (2.8.3)
352
- i18n (1.12.0)
353
- concurrent-ruby (~> 1.0)
354
- immigrant (0.3.6)
355
- activerecord (>= 3.0)
356
- jgrep (1.5.4)
357
- journald-logger (3.1.0)
358
- journald-native (~> 1.0)
359
- journald-native (1.0.12)
360
- jquery-ui-rails (6.0.1)
361
- railties (>= 3.2.16)
362
- json (2.6.2)
363
- jwt (2.2.3)
364
- launchy (2.5.0)
365
- addressable (~> 2.7)
366
- ldap_fluff (0.6.0)
367
- activesupport
368
- net-ldap (>= 0.11)
369
- little-plugger (1.1.4)
370
- locale (2.1.3)
371
- logging (2.3.1)
372
- little-plugger (~> 1.1)
373
- multi_json (~> 1.14)
374
- logging-journald (2.1.0)
375
- journald-logger (~> 3.0)
376
- logging
377
- loofah (2.18.0)
378
- crass (~> 1.0.2)
379
- nokogiri (>= 1.5.9)
380
- mail (2.7.1)
381
- mini_mime (>= 0.1.1)
382
- marcel (1.0.2)
383
- maruku (0.7.3)
384
- matrix (0.4.2)
385
- memoist (0.16.2)
386
- method_source (1.0.0)
387
- mime-types (3.4.1)
388
- mime-types-data (~> 3.2015)
389
- mime-types-data (3.2022.0105)
390
- mini_mime (1.1.2)
391
- minitest (5.16.2)
392
- minitest-reporters (1.5.0)
393
- ansi
394
- builder
395
- minitest (>= 5.0)
396
- ruby-progressbar
397
- minitest-retry (0.2.2)
398
- minitest (>= 5.0)
399
- minitest-spec-rails (6.1.0)
400
- minitest (>= 5.0)
401
- railties (>= 4.1)
402
- minitest-tags (0.0.5)
403
- mocha (1.14.0)
404
- mqtt (0.5.0)
405
- msgpack (1.5.4)
406
- multi_json (1.15.0)
407
- multipart-post (2.2.3)
408
- mustermann (2.0.2)
409
- ruby2_keywords (~> 0.0.1)
410
- net-ldap (0.17.1)
411
- net-ping (2.0.8)
412
- net-scp (3.0.0)
413
- net-ssh (>= 2.6.5, < 7.0.0)
414
- net-ssh (4.2.0)
415
- netrc (0.11.0)
416
- nio4r (2.5.8)
417
- nokogiri (1.13.8-x86_64-linux)
418
- racc (~> 1.4)
419
- oauth (0.5.10)
420
- optimist (3.0.1)
421
- os (1.1.4)
422
- ovirt-engine-sdk (4.4.1)
423
- json (>= 1, < 3)
424
- paint (2.3.0)
425
- parallel (1.22.1)
426
- parallel_tests (3.11.1)
427
- parallel
428
- parse-cron (0.1.4)
429
- parser (3.1.2.1)
430
- ast (~> 2.4.1)
431
- patternfly-sass (3.59.5)
432
- bootstrap-sass (~> 3.4.0)
433
- font-awesome-sass (~> 4.6.2)
434
- sassc (> 2.0.1, < 3.0)
435
- pg (1.4.3)
436
- po_to_json (1.0.1)
437
- json (>= 1.6.0)
438
- polyglot (0.3.5)
439
- prime (0.1.2)
440
- forwardable
441
- singleton
442
- prometheus-client (1.0.0)
443
- promise.rb (0.7.4)
444
- pry (0.13.1)
445
- coderay (~> 1.1)
446
- method_source (~> 1.0)
447
- pry-byebug (3.9.0)
448
- byebug (~> 11.0)
449
- pry (~> 0.13.0)
450
- pry-doc (1.3.0)
451
- pry (~> 0.11)
452
- yard (~> 0.9.11)
453
- pry-rails (0.3.9)
454
- pry (>= 0.10.4)
455
- pry-remote (0.1.8)
456
- pry (~> 0.9)
457
- slop (~> 3.0)
458
- pry-stack_explorer (0.6.1)
459
- binding_of_caller (~> 1.0)
460
- pry (~> 0.13)
461
- public_suffix (4.0.7)
462
- pulp_ansible_client (0.13.2)
463
- faraday (~> 0.17, < 1.9.0)
464
- json (~> 2.1, >= 2.1.0)
465
- pulp_certguard_client (1.5.3)
466
- faraday (~> 0.17, < 1.9.0)
467
- json (~> 2.1, >= 2.1.0)
468
- pulp_container_client (2.10.5)
469
- faraday (>= 0.17, < 1.9.0)
470
- json (~> 2.1, >= 2.1.0)
471
- pulp_deb_client (2.18.0)
472
- faraday (~> 0.17, < 1.9.0)
473
- json (~> 2.1, >= 2.1.0)
474
- pulp_file_client (1.10.3)
475
- faraday (~> 0.17, < 1.9.0)
476
- json (~> 2.1, >= 2.1.0)
477
- pulp_ostree_client (2.0.0a7.dev1660103594)
478
- faraday (>= 0.17, < 2.0)
479
- json (~> 2.1, >= 2.1.0)
480
- pulp_python_client (3.6.0)
481
- faraday (>= 0.14.0)
482
- json (~> 2.1, >= 2.1.0)
483
- pulp_rpm_client (3.17.10)
484
- faraday (>= 0.17, < 1.9.0)
485
- json (~> 2.1, >= 2.1.0)
486
- pulpcore_client (3.18.6)
487
- faraday (>= 0.17, < 1.9.0)
488
- json (~> 2.1, >= 2.1.0)
489
- puma (5.6.4)
490
- nio4r (~> 2.0)
491
- qpid_proton (0.33.0)
492
- rabl (0.14.5)
493
- activesupport (>= 2.3.14)
494
- racc (1.6.0)
495
- rack (2.2.4)
496
- rack-cors (1.0.6)
497
- rack (>= 1.6.0)
498
- rack-jsonp (1.3.1)
499
- rack
500
- rack-openid (1.4.2)
501
- rack (>= 1.1.0)
502
- ruby-openid (>= 2.1.8)
503
- rack-protection (2.2.2)
504
- rack
505
- rack-test (2.0.2)
506
- rack (>= 1.3)
507
- rails (6.0.4.8)
508
- actioncable (= 6.0.4.8)
509
- actionmailbox (= 6.0.4.8)
510
- actionmailer (= 6.0.4.8)
511
- actionpack (= 6.0.4.8)
512
- actiontext (= 6.0.4.8)
513
- actionview (= 6.0.4.8)
514
- activejob (= 6.0.4.8)
515
- activemodel (= 6.0.4.8)
516
- activerecord (= 6.0.4.8)
517
- activestorage (= 6.0.4.8)
518
- activesupport (= 6.0.4.8)
519
- bundler (>= 1.3.0)
520
- railties (= 6.0.4.8)
521
- sprockets-rails (>= 2.0.0)
522
- rails-controller-testing (1.0.5)
523
- actionpack (>= 5.0.1.rc1)
524
- actionview (>= 5.0.1.rc1)
525
- activesupport (>= 5.0.1.rc1)
526
- rails-dom-testing (2.0.3)
527
- activesupport (>= 4.2.0)
528
- nokogiri (>= 1.6)
529
- rails-html-sanitizer (1.4.3)
530
- loofah (~> 2.3)
531
- rails-i18n (6.0.0)
532
- i18n (>= 0.7, < 2)
533
- railties (>= 6.0.0, < 7)
534
- railties (6.0.4.8)
535
- actionpack (= 6.0.4.8)
536
- activesupport (= 6.0.4.8)
537
- method_source
538
- rake (>= 0.8.7)
539
- thor (>= 0.20.3, < 2.0)
540
- rainbow (3.1.1)
541
- rake (13.0.6)
542
- rb-fsevent (0.11.1)
543
- rb-inotify (0.10.1)
544
- ffi (~> 1.0)
545
- rbvmomi (2.4.1)
546
- builder (~> 3.0)
547
- json (>= 1.8)
548
- nokogiri (~> 1.5)
549
- optimist (~> 3.0)
550
- rdoc (6.3.3)
551
- redis (4.5.1)
552
- regexp_parser (2.5.0)
553
- representable (3.2.0)
554
- declarative (< 0.1.0)
555
- trailblazer-option (>= 0.1.1, < 0.2.0)
556
- uber (< 0.2.0)
557
- responders (3.0.1)
558
- actionpack (>= 5.0)
559
- railties (>= 5.0)
560
- rest-client (2.1.0)
561
- http-accept (>= 1.7.0, < 2.0)
562
- http-cookie (>= 1.0.2, < 2.0)
563
- mime-types (>= 1.16, < 4.0)
564
- netrc (~> 0.8)
565
- retriable (3.1.2)
566
- rexml (3.2.5)
567
- rfauxfactory (0.1.5)
568
- roadie (4.0.0)
569
- css_parser (~> 1.4)
570
- nokogiri (~> 1.8)
571
- roadie-rails (2.3.0)
572
- railties (>= 5.1, < 7.1)
573
- roadie (>= 3.1, < 5.0)
574
- robotex (1.0.0)
575
- robottelo_reporter (0.1.1)
576
- builder (>= 2.1.2)
577
- rubocop (0.89.1)
578
- parallel (~> 1.10)
579
- parser (>= 2.7.1.1)
580
- rainbow (>= 2.2.2, < 4.0)
581
- regexp_parser (>= 1.7)
582
- rexml
583
- rubocop-ast (>= 0.3.0, < 1.0)
584
- ruby-progressbar (~> 1.7)
585
- unicode-display_width (>= 1.4.0, < 2.0)
586
- rubocop-ast (0.8.0)
587
- parser (>= 2.7.1.5)
588
- rubocop-checkstyle_formatter (0.4.0)
589
- rubocop (>= 0.35.1)
590
- rubocop-minitest (0.10.3)
591
- rubocop (>= 0.87, < 2.0)
592
- rubocop-performance (1.8.1)
593
- rubocop (>= 0.87.0)
594
- rubocop-ast (>= 0.4.0)
595
- rubocop-rails (2.8.1)
596
- activesupport (>= 4.2.0)
597
- rack (>= 1.1)
598
- rubocop (>= 0.87.0)
599
- rubocop-rspec (1.43.2)
600
- rubocop (~> 0.87)
601
- ruby-libvirt (0.8.0)
602
- ruby-openid (2.9.2)
603
- ruby-progressbar (1.11.0)
604
- ruby2_keywords (0.0.5)
605
- ruby2ruby (2.4.4)
606
- ruby_parser (~> 3.1)
607
- sexp_processor (~> 4.6)
608
- ruby_parser (3.19.1)
609
- sexp_processor (~> 4.16)
610
- rubyzip (2.3.2)
611
- runcible (2.13.1)
612
- activesupport (>= 3.0.10)
613
- i18n (>= 0.5.0)
614
- json
615
- oauth
616
- rest-client (>= 1.6.1, < 3.0.0)
617
- safemode (1.3.7)
618
- ruby2ruby (>= 2.4.0)
619
- ruby_parser (>= 3.10.1)
620
- sexp_processor (>= 4.10.0)
621
- sass (3.7.4)
622
- sass-listen (~> 4.0.0)
623
- sass-listen (4.0.0)
624
- rb-fsevent (~> 0.9, >= 0.9.4)
625
- rb-inotify (~> 0.9, >= 0.9.7)
626
- sass-rails (6.0.0)
627
- sassc-rails (~> 2.1, >= 2.1.1)
628
- sassc (2.4.0)
629
- ffi (~> 1.9)
630
- sassc-rails (2.1.2)
631
- railties (>= 4.0.0)
632
- sassc (>= 2.0)
633
- sprockets (> 3.0)
634
- sprockets-rails
635
- tilt
636
- scoped_search (4.1.10)
637
- activerecord (>= 4.2.0)
638
- sd_notify (0.1.1)
639
- secure_headers (6.4.0)
640
- selenium-webdriver (4.4.0)
641
- childprocess (>= 0.5, < 5.0)
642
- rexml (~> 3.2, >= 3.2.5)
643
- rubyzip (>= 1.2.2, < 3.0)
644
- websocket (~> 1.0)
645
- sequel (5.59.0)
646
- sexp_processor (4.16.1)
647
- shoulda-context (1.2.2)
648
- shoulda-matchers (4.3.0)
649
- activesupport (>= 4.2.0)
650
- show_me_the_cookies (5.0.1)
651
- capybara (>= 2, < 4)
652
- sidekiq (5.2.10)
653
- connection_pool (~> 2.2, >= 2.2.2)
654
- rack (~> 2.0)
655
- rack-protection (>= 1.5.0)
656
- redis (~> 4.5, < 4.6.0)
657
- signet (0.17.0)
658
- addressable (~> 2.8)
659
- faraday (>= 0.17.5, < 3.a)
660
- jwt (>= 1.5, < 3.0)
661
- multi_json (~> 1.10)
662
- simplecov (0.21.2)
663
- docile (~> 1.1)
664
- simplecov-html (~> 0.11)
665
- simplecov_json_formatter (~> 0.1)
666
- simplecov-html (0.12.3)
667
- simplecov-rcov (0.3.1)
668
- simplecov (>= 0.4.1)
669
- simplecov_json_formatter (0.1.4)
670
- sinatra (2.2.2)
671
- mustermann (~> 2.0)
672
- rack (~> 2.2)
673
- rack-protection (= 2.2.2)
674
- tilt (~> 2.0)
675
- single_test (0.6.0)
676
- rake
677
- singleton (0.1.1)
678
- slop (3.6.0)
679
- smart_proxy_dynflow (0.8.1)
680
- dynflow (~> 1.6)
681
- rest-client
682
- sqlite3
683
- smart_proxy_remote_execution_ssh (0.8.0)
684
- mqtt
685
- net-ssh (>= 4.2.0)
686
- smart_proxy_dynflow (~> 0.8)
687
- spring (2.1.1)
688
- sprockets (4.1.1)
689
- concurrent-ruby (~> 1.0)
690
- rack (> 1, < 3)
691
- sprockets-rails (3.4.2)
692
- actionpack (>= 5.2)
693
- activesupport (>= 5.2)
694
- sprockets (>= 3.0.0)
695
- sqlite3 (1.4.4)
696
- sshkey (1.9.0)
697
- statsd-instrument (2.9.2)
698
- stomp (1.4.10)
699
- text (1.3.1)
700
- theforeman-rubocop (0.0.6)
701
- rubocop (~> 0.89.0)
702
- rubocop-checkstyle_formatter (~> 0.4.0)
703
- rubocop-minitest (~> 0.10.1)
704
- rubocop-performance (~> 1.8.1)
705
- rubocop-rails (~> 2.8.1)
706
- rubocop-rspec (~> 1.43.2)
707
- thor (1.2.1)
708
- thread_safe (0.3.6)
709
- tilt (2.0.11)
710
- trailblazer-option (0.1.2)
711
- tzinfo (1.2.10)
712
- thread_safe (~> 0.1)
713
- uber (0.1.0)
714
- uglifier (4.2.0)
715
- execjs (>= 0.3.0, < 3)
716
- unf (0.1.4)
717
- unf_ext
718
- unf_ext (0.0.8.2)
719
- unicode-display_width (1.8.0)
720
- uniform_notifier (1.16.0)
721
- validates_lengths_from_database (0.8.0)
722
- activerecord (>= 4)
723
- vcr (3.0.3)
724
- webmock (3.17.1)
725
- addressable (>= 2.8.0)
726
- crack (>= 0.3.2)
727
- hashdiff (>= 0.4.0, < 2.0.0)
728
- webpack-rails (0.9.11)
729
- railties (>= 3.2.0)
730
- webrick (1.7.0)
731
- websocket (1.2.9)
732
- websocket-driver (0.7.5)
733
- websocket-extensions (>= 0.1.0)
734
- websocket-extensions (0.1.5)
735
- will_paginate (3.3.1)
736
- wirb (2.2.2)
737
- paint (>= 0.9, < 3.0)
738
- xpath (3.2.0)
739
- nokogiri (~> 1.8)
740
- yard (0.9.28)
741
- webrick (~> 1.7.0)
742
- zeitwerk (2.6.0)
743
-
744
- PLATFORMS
745
- x86_64-linux
746
-
747
- DEPENDENCIES
748
- activerecord-nulldb-adapter
749
- activerecord-session_store (>= 2.0.0, < 3)
750
- amazing_print (~> 1.1)
751
- ancestry (>= 3.0.7, < 4, != 3.2.0)
752
- apipie-dsl (>= 2.2.6)
753
- apipie-rails (>= 0.5.17, < 0.6.0)
754
- as_deprecation_tracker (~> 1.4)
755
- audited (>= 4.9.0, < 5)
756
- bcrypt (~> 3.1)
757
- benchmark-ips (>= 2.8.2)
758
- bootsnap
759
- bullet (>= 6.1.0)
760
- byebug
761
- capybara (~> 3.33)
762
- coffee-rails (~> 5.0.0)
763
- daemons
764
- database_cleaner (~> 1.3)
765
- deacon (~> 1.0)
766
- deep_cloneable (>= 3, < 4)
767
- dynflow (>= 1.4.4, < 2.0.0)
768
- execjs (>= 1.4.0, < 3.0)
769
- facter
770
- facterdb (~> 1.7)
771
- factory_bot_rails (~> 5.0)
772
- fast_gettext (~> 1.4)
773
- fog-aws (>= 3.6.2, < 4)
774
- fog-core (= 2.1.0)
775
- fog-google (~> 1.11.0)
776
- fog-libvirt (>= 0.9.0)
777
- fog-openstack (>= 1.0.8, < 2.0.0)
778
- fog-ovirt (>= 2.0.1, < 3)
779
- fog-vsphere (>= 3.5.0, < 4.0)
780
- foreman
781
- foreman-tasks!
782
- foreman_ansible (~> 7.1.2)
783
- foreman_ansible_core
784
- foreman_remote_execution (~> 7.1.0)
785
- foreman_rh_cloud!
786
- friendly_id (>= 5.3.0, < 5.4)
787
- get_process_mem
788
- gettext (>= 3.2.1, < 4.0.0)
789
- gettext_i18n_rails (~> 1.8)
790
- gettext_i18n_rails_js (~> 1.3.1)
791
- gitlab-sidekiq-fetcher
792
- graphiql-rails (~> 1.7)
793
- graphql (~> 1.8.0)
794
- graphql-batch
795
- i18n (~> 1.1)
796
- immigrant (~> 0.1)
797
- jquery-ui-rails (~> 6.0)
798
- jwt (~> 2.2.2)
799
- katello!
800
- launchy (~> 2.4)
801
- ldap_fluff (>= 0.5.0, < 1.0)
802
- logging (>= 1.8.0, < 3.0.0)
803
- logging-journald (~> 2.0)
804
- mail (~> 2.7)
805
- maruku (~> 0.7)
806
- minitest (~> 5.1)
807
- minitest-reporters (~> 1.4)
808
- minitest-retry (~> 0.0)
809
- minitest-spec-rails (~> 6.0)
810
- minitest-tags
811
- mocha (~> 1.11)
812
- net-ldap (>= 0.16.0)
813
- net-ping
814
- net-scp
815
- net-ssh (= 4.2.0)
816
- oauth (>= 0.5.4, < 1)
817
- parallel_tests
818
- patternfly-sass (~> 3.59.4)
819
- pg (>= 0.18, < 2.0)
820
- prometheus-client (~> 1.0)
821
- pry
822
- pry-byebug
823
- pry-doc
824
- pry-rails
825
- pry-remote
826
- pry-stack_explorer
827
- puma (~> 5.1)
828
- qpid_proton (~> 0.33.0)
829
- rabl (~> 0.14.2)
830
- rack-cors (~> 1.0.2)
831
- rack-jsonp
832
- rack-openid (~> 1.3)
833
- rails (~> 6.0.4.7)
834
- rails-controller-testing (~> 1.0)
835
- rails-i18n (~> 6.0)
836
- rainbow (>= 2.2.1)
837
- rbvmomi (~> 2.0)
838
- rdoc (< 6.4)
839
- redis (~> 4.0)
840
- responders (~> 3.0)
841
- rest-client (>= 2.0.0, < 3)
842
- rfauxfactory (~> 0.1, >= 0.1.5)
843
- roadie-rails (~> 2.0)
844
- robottelo_reporter (~> 0.1)
845
- rubocop
846
- rubocop-checkstyle_formatter
847
- rubocop-performance
848
- rubocop-rails
849
- ruby-libvirt (~> 0.5)
850
- safemode (>= 1.3.5, < 2)
851
- sass-rails (~> 6.0)
852
- scoped_search (>= 4.1.8, < 5)
853
- sd_notify (~> 0.1)
854
- secure_headers (~> 6.3)
855
- selenium-webdriver
856
- shoulda-context (~> 1.2)
857
- shoulda-matchers (>= 4.0, < 4.4)
858
- show_me_the_cookies (~> 5.0)
859
- sidekiq (~> 5.0)
860
- simplecov
861
- simplecov-rcov
862
- single_test (~> 0.6)
863
- spring (>= 1.0, < 3)
864
- sprockets (~> 4.0)
865
- sprockets-rails (~> 3.0)
866
- sqlite3
867
- sshkey (~> 1.9)
868
- statsd-instrument (< 3)
869
- theforeman-rubocop (~> 0.0.6)
870
- uglifier (>= 1.0.3)
871
- validates_lengths_from_database (~> 0.5)
872
- vcr (< 4.0.0)
873
- webmock
874
- webpack-rails (~> 0.9.8)
875
- will_paginate (>= 3.1.7, < 4)
876
- wirb (>= 1.0, < 3.0)
877
-
878
- BUNDLED WITH
879
- 2.2.24