foreman_theme_satellite 13.3.3 → 13.3.4
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 966937c6f4d5139ef3de22690a5f37c31efdd3e0e2984f3f45bd674e723c2bd7
|
4
|
+
data.tar.gz: f5d308d9c3f2ad7d7afe5261d9a030e1ec3c8320daa22839075b6a2bfbbebe19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd805d2d514558645424acfceb29802214ea754bbbd57b8e3802e4e025aa5933e0f5cc497d4136584ce39637970b041dfad82cf4bf310b15888f209cafecf7a9
|
7
|
+
data.tar.gz: 360171d52536b20796d6db57e7acbce8cef80cbe41548ed33b30bfdf564a5f1ab7b48a76fda6db477d6fbf5bdb4dc7ef2fe65b9c3fd7e81719f3530f57c2a2ae
|
@@ -100,6 +100,10 @@ module ForemanThemeSatellite
|
|
100
100
|
ForemanRhCloud::BranchInfo.send :prepend, BranchInfoBranding
|
101
101
|
end
|
102
102
|
|
103
|
+
if defined?(ForemanOpenscap)
|
104
|
+
ForemanOpenscap::BulkUpload.send :prepend, ScapBulkUploadExtensions
|
105
|
+
end
|
106
|
+
|
103
107
|
UINotifications::StringParser.send :prepend, DeprecationNotification::StringParser
|
104
108
|
Notification.singleton_class.send :prepend, DeprecationNotification::Notification
|
105
109
|
LinksController.prepend DocumentationControllerBranding
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ForemanThemeSatellite
|
4
|
+
module ScapBulkUploadExtensions
|
5
|
+
extend ActiveSupport::Concern
|
6
|
+
|
7
|
+
def security_guide_packages
|
8
|
+
packages = super
|
9
|
+
packages.unshift('scap-security-guide-satellite')
|
10
|
+
packages
|
11
|
+
end
|
12
|
+
|
13
|
+
def extract_name_from_file(file)
|
14
|
+
# SCAP datastream files are in format of ssg-sat-<OS>-ds.xml
|
15
|
+
# We wish to extract the <OS> and create a name of it
|
16
|
+
super.gsub('sat-', '')
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
data/package.json
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_theme_satellite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 13.3.
|
4
|
+
version: 13.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shimon Stein
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2025-02-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -152,6 +152,7 @@ files:
|
|
152
152
|
- lib/foreman_theme_satellite/pry_rack.rb
|
153
153
|
- lib/foreman_theme_satellite/replacer_repository.rb
|
154
154
|
- lib/foreman_theme_satellite/rss_checker_branding.rb
|
155
|
+
- lib/foreman_theme_satellite/scap_bulk_upload_extensions.rb
|
155
156
|
- lib/foreman_theme_satellite/version.rb
|
156
157
|
- lib/generators/foreman_theme_satellite/color_diff_generator.rb
|
157
158
|
- lib/generators/foreman_theme_satellite/lib/color_changer.rb
|