epb_view_models 1.0.14 → 1.0.15

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -1
  3. data/Gemfile +10 -10
  4. data/Gemfile.lock +32 -39
  5. data/api/schemas/data/orchestrate.json +4 -0
  6. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/ExternalDefinitions.xml +1352 -0
  7. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/ExternalDefinitions.xsd +236 -0
  8. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/AssessorManagement.xsd +207 -0
  9. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/EPC-Certificate.xsd +476 -0
  10. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/ExceptionList.xsd +18 -0
  11. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/Property.xsd +71 -0
  12. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/ReportList.xsd +25 -0
  13. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/SAP-CollectedData.xsd +1793 -0
  14. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/SAP-Compliance-Report.xsd +36 -0
  15. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/SAP-Report.xsd +196 -0
  16. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/UDT/EPC-Domains.xsd +558 -0
  17. data/api/schemas/xml/SAP-Schema-19.0.0/SAP/UDT/SAP-Domains.xsd +3127 -0
  18. data/lib/epb_view_models.rb +1 -1
  19. data/lib/presenter/ac_cert/export_configuration.rb +7 -0
  20. data/lib/presenter/ac_report/export_configuration.rb +7 -0
  21. data/lib/presenter/cepc/export_configuration.rb +7 -0
  22. data/lib/presenter/cepc_rr/export_configuration.rb +7 -0
  23. data/lib/presenter/dec/export_configuration.rb +7 -0
  24. data/lib/presenter/dec_rr/export_configuration.rb +7 -0
  25. data/lib/presenter/export/statistics.rb +3 -14
  26. data/lib/presenter/rd_sap/export_configuration.rb +57 -1
  27. data/lib/presenter/sap/export_configuration.rb +7 -0
  28. data/lib/presenter/xml/parser.rb +6 -0
  29. data/lib/view_model/factory.rb +1 -0
  30. data/lib/view_model/sap_schema_1900/common_schema.rb +587 -0
  31. data/lib/view_model/sap_wrapper.rb +2 -0
  32. metadata +22 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ee84c9018a99e7ecc114cd9e16da64303f337d6d53ecd4f243510fdcdeeace59
4
- data.tar.gz: f2a5ecdb96d373dfc64317ab94a626b9fab1c91b9957de9d765927fdca73f5b2
3
+ metadata.gz: 44ac3c497106cfad05b3f659f0f67c680bec0d68bf129dba9ee85f4b84c92ea1
4
+ data.tar.gz: f4a5b74aa6b3fe31dd79d3b6b0e3895c33c6652faccfd59fe7ef580a077599a8
5
5
  SHA512:
6
- metadata.gz: bf9fc7e313914c1b34ba94c7ea3dd9f83c6a1ae47b80669e53f01b75b1721f57fb57b356e52eeac54d58d24ba3d03e561ff6e5725f4980a42b02b74d5e971345
7
- data.tar.gz: cc89d10482409d65e7fadc02fb7db449e2d54bab4f2d7fa8bf45dcc293883201e81d618fbfa36f24eed6c980bd1e65651f89cdda616aa3bc3a75c2d81d40b602
6
+ metadata.gz: e991f69ff3f8990512da92df7aaeb1b2a2c0b0014e925d8da0ffbbc4560e09b39446e1731a76a8b0aa87dbdd48d101ae79dda7746cba426c53b9e8146d8c5a32
7
+ data.tar.gz: 36600d67398158417c478bb42366d7d7dea759ea75a746d5864ba4b1e24c7c55e3b4d164fdd949018e8b0c0954ddc73c606112e5d7ba70c5dca2bf33c2878648
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.3
1
+ 2.7.5
data/Gemfile CHANGED
@@ -2,14 +2,14 @@
2
2
 
3
3
  ruby "~> 2.7"
4
4
 
5
- source "https://rubygems.org" do
6
- group :test do
7
- gem "rake", "~> 13.0.6"
8
- gem "rspec", "~> 3.0"
9
- gem "rubocop-govuk", "~> 4.0.0", require: false
10
- end
11
-
12
- gem "nokogiri", "~> 1.11"
13
- gem "rexml", "~> 3.2", ">= 3.2.5"
14
- gem "zeitwerk", "~> 2.4.2"
5
+ source "https://rubygems.org"
6
+
7
+ group :test do
8
+ gem "rake", "~> 13.0.6"
9
+ gem "rspec", "~> 3.0"
10
+ gem "rubocop-govuk", "~> 4.0.0", require: false
15
11
  end
12
+
13
+ gem "nokogiri", "~> 1.11"
14
+ gem "rexml", "~> 3.2", ">= 3.2.5"
15
+ gem "zeitwerk", "~> 2.4.2"
data/Gemfile.lock CHANGED
@@ -1,49 +1,43 @@
1
- GEM
2
- specs:
3
-
4
1
  GEM
5
2
  remote: https://rubygems.org/
6
3
  specs:
7
- activesupport (6.1.4)
4
+ activesupport (7.0.2.3)
8
5
  concurrent-ruby (~> 1.0, >= 1.0.2)
9
6
  i18n (>= 1.6, < 2)
10
7
  minitest (>= 5.1)
11
8
  tzinfo (~> 2.0)
12
- zeitwerk (~> 2.3)
13
9
  ast (2.4.2)
14
10
  concurrent-ruby (1.1.9)
15
- diff-lcs (1.4.4)
16
- i18n (1.8.10)
11
+ diff-lcs (1.5.0)
12
+ i18n (1.10.0)
17
13
  concurrent-ruby (~> 1.0)
18
- mini_portile2 (2.5.3)
19
- minitest (5.14.4)
20
- nokogiri (1.11.7)
21
- mini_portile2 (~> 2.5.0)
22
- racc (~> 1.4)
23
- nokogiri (1.11.7-x86_64-darwin)
14
+ mini_portile2 (2.8.0)
15
+ minitest (5.15.0)
16
+ nokogiri (1.13.3)
17
+ mini_portile2 (~> 2.8.0)
24
18
  racc (~> 1.4)
25
- parallel (1.20.1)
26
- parser (3.0.2.0)
19
+ parallel (1.21.0)
20
+ parser (3.1.1.0)
27
21
  ast (~> 2.4.1)
28
- racc (1.5.2)
22
+ racc (1.6.0)
29
23
  rack (2.2.3)
30
- rainbow (3.0.0)
24
+ rainbow (3.1.1)
31
25
  rake (13.0.6)
32
- regexp_parser (2.1.1)
26
+ regexp_parser (2.2.1)
33
27
  rexml (3.2.5)
34
- rspec (3.10.0)
35
- rspec-core (~> 3.10.0)
36
- rspec-expectations (~> 3.10.0)
37
- rspec-mocks (~> 3.10.0)
38
- rspec-core (3.10.1)
39
- rspec-support (~> 3.10.0)
40
- rspec-expectations (3.10.1)
28
+ rspec (3.11.0)
29
+ rspec-core (~> 3.11.0)
30
+ rspec-expectations (~> 3.11.0)
31
+ rspec-mocks (~> 3.11.0)
32
+ rspec-core (3.11.0)
33
+ rspec-support (~> 3.11.0)
34
+ rspec-expectations (3.11.0)
41
35
  diff-lcs (>= 1.2.0, < 2.0)
42
- rspec-support (~> 3.10.0)
43
- rspec-mocks (3.10.2)
36
+ rspec-support (~> 3.11.0)
37
+ rspec-mocks (3.11.0)
44
38
  diff-lcs (>= 1.2.0, < 2.0)
45
- rspec-support (~> 3.10.0)
46
- rspec-support (3.10.2)
39
+ rspec-support (~> 3.11.0)
40
+ rspec-support (3.11.0)
47
41
  rubocop (1.15.0)
48
42
  parallel (~> 1.10)
49
43
  parser (>= 3.0.0.0)
@@ -73,23 +67,22 @@ GEM
73
67
  ruby-progressbar (1.11.0)
74
68
  tzinfo (2.0.4)
75
69
  concurrent-ruby (~> 1.0)
76
- unicode-display_width (2.0.0)
70
+ unicode-display_width (2.1.0)
77
71
  zeitwerk (2.4.2)
78
72
 
79
73
  PLATFORMS
80
74
  ruby
81
- x86_64-darwin-20
82
75
 
83
76
  DEPENDENCIES
84
- nokogiri (~> 1.11)!
85
- rake (~> 13.0.6)!
86
- rexml (~> 3.2, >= 3.2.5)!
87
- rspec (~> 3.0)!
88
- rubocop-govuk (~> 4.0.0)!
89
- zeitwerk (~> 2.4.2)!
77
+ nokogiri (~> 1.11)
78
+ rake (~> 13.0.6)
79
+ rexml (~> 3.2, >= 3.2.5)
80
+ rspec (~> 3.0)
81
+ rubocop-govuk (~> 4.0.0)
82
+ zeitwerk (~> 2.4.2)
90
83
 
91
84
  RUBY VERSION
92
- ruby 2.7.3p183
85
+ ruby 2.7.5p203
93
86
 
94
87
  BUNDLED WITH
95
- 2.2.21
88
+ 2.2.32
@@ -1,4 +1,8 @@
1
1
  {
2
+ "SAP-Schema-19.0.0": {
3
+ "schema_path":
4
+ "api/schemas/xml/SAP-Schema-19.0.0/SAP/Templates/SAP-Report.xsd"
5
+ },
2
6
  "SAP-Schema-17.1": {
3
7
  "schema_path":
4
8
  "api/schemas/xml/SAP-Schema-17.1/SAP/Templates/SAP-Report.xsd"