foreman_openscap 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 52ccf5d3a2cc3bae2f3c55710682384f2b61f014
|
|
4
|
+
data.tar.gz: 2d5b7cc101b171f481fa245491d00770e47ba40c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 02cc5a12f0646e510c0b1eb5b637a796305adb0138f8dd6d61b715982a7e066385556b8dc91b10a8a2be9c57aa7b49a74ebcc2d560f508591e01ea563fc76dc5
|
|
7
|
+
data.tar.gz: 6ce694688245b777a394284ab7412d13b53f2f4d0d2c19e9a9e70c895c8a918256bc764b2a629ac329bda51cfd9be2c54e3c3d7c78c069c54619cf6dc8165741
|
|
@@ -55,7 +55,7 @@ class ArfReportsController < ApplicationController
|
|
|
55
55
|
process_error(:error_msg => (_("Failed to delete %s compliance reports") % failed_deletes),
|
|
56
56
|
:error_redirect => arf_reports_path)
|
|
57
57
|
else
|
|
58
|
-
process_success(:success_msg => (_("Successfully deleted %s compliance reports") % @arf_reports.
|
|
58
|
+
process_success(:success_msg => (_("Successfully deleted %s compliance reports") % @arf_reports.size),
|
|
59
59
|
:success_redirect => arf_reports_path)
|
|
60
60
|
end
|
|
61
61
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: foreman_openscap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- "Šimon Lukašík"
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2016-09-
|
|
14
|
+
date: 2016-09-06 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: deface
|
|
@@ -272,31 +272,31 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
272
272
|
version: '0'
|
|
273
273
|
requirements: []
|
|
274
274
|
rubyforge_project:
|
|
275
|
-
rubygems_version: 2.4.
|
|
275
|
+
rubygems_version: 2.4.5
|
|
276
276
|
signing_key:
|
|
277
277
|
specification_version: 4
|
|
278
278
|
summary: Foreman plug-in for displaying OpenSCAP audit reports
|
|
279
279
|
test_files:
|
|
280
|
-
- test/
|
|
281
|
-
- test/
|
|
282
|
-
- test/
|
|
280
|
+
- test/lib/foreman_openscap/bulk_upload_test.rb
|
|
281
|
+
- test/unit/scap_content_test.rb
|
|
282
|
+
- test/unit/concerns/openscap_proxy_extenstions_test.rb
|
|
283
|
+
- test/unit/openscap_host_test.rb
|
|
284
|
+
- test/unit/policy_test.rb
|
|
285
|
+
- test/unit/compliance_status_test.rb
|
|
286
|
+
- test/unit/arf_report_status_calculator_test.rb
|
|
287
|
+
- test/unit/policy_mailer_test.rb
|
|
288
|
+
- test/unit/services/report_dashboard/data_test.rb
|
|
289
|
+
- test/unit/arf_report_test.rb
|
|
290
|
+
- test/test_plugin_helper.rb
|
|
283
291
|
- test/functional/arf_reports_controller_test.rb
|
|
292
|
+
- test/functional/api/v2/compliance/arf_reports_controller_test.rb
|
|
293
|
+
- test/functional/api/v2/compliance/scap_contents_controller_test.rb
|
|
294
|
+
- test/functional/api/v2/compliance/policies_controller_test.rb
|
|
284
295
|
- test/factories/asset_factory.rb
|
|
285
|
-
- test/factories/compliance_host_factory.rb
|
|
286
|
-
- test/factories/scap_content_related.rb
|
|
287
296
|
- test/factories/compliance_log_factory.rb
|
|
288
297
|
- test/factories/arf_report_factory.rb
|
|
298
|
+
- test/factories/scap_content_related.rb
|
|
299
|
+
- test/factories/compliance_host_factory.rb
|
|
289
300
|
- test/factories/policy_arf_report_factory.rb
|
|
290
301
|
- test/factories/policy_factory.rb
|
|
291
302
|
- test/files/scap_contents/ssg-fedora-ds.xml
|
|
292
|
-
- test/lib/foreman_openscap/bulk_upload_test.rb
|
|
293
|
-
- test/test_plugin_helper.rb
|
|
294
|
-
- test/unit/arf_report_status_calculator_test.rb
|
|
295
|
-
- test/unit/compliance_status_test.rb
|
|
296
|
-
- test/unit/arf_report_test.rb
|
|
297
|
-
- test/unit/policy_mailer_test.rb
|
|
298
|
-
- test/unit/openscap_host_test.rb
|
|
299
|
-
- test/unit/scap_content_test.rb
|
|
300
|
-
- test/unit/concerns/openscap_proxy_extenstions_test.rb
|
|
301
|
-
- test/unit/services/report_dashboard/data_test.rb
|
|
302
|
-
- test/unit/policy_test.rb
|