inferno_core 1.0.3 → 1.0.5
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25ba87f81348468d348fb560fea2b87cc25a85b0a20e10c561593135583b14bc
|
4
|
+
data.tar.gz: 65e6e8d5726a8a7f01e47049e3e38bbd8eec84792d1afbc02bd1a4c7c912bf9a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6255877fe8d62f455d35133158c9197ed6e606fa1d4b6f0cd76ba2c9a5b5af0c88bcb1580fb0f1ca8e65edee5a04e578927359c31cae94213a2959c1af71700f
|
7
|
+
data.tar.gz: 5d306049dfaa4b5a6f3f64956593dd1a49a93df9dd434f2e336d1269b026b98638617849c4e4ed4133a54f94887a240248259bfedc3c2f0403fdd8f0accc5092
|
Binary file
|
Binary file
|
@@ -23,11 +23,6 @@ module Inferno
|
|
23
23
|
suite.test_count(options[:suite_options])
|
24
24
|
end
|
25
25
|
|
26
|
-
field :inputs do |suite, options|
|
27
|
-
suite_options = options[:suite_options]
|
28
|
-
Input.render_as_hash(suite.available_inputs(suite_options).values)
|
29
|
-
end
|
30
|
-
|
31
26
|
association :suite_options, blueprint: SuiteOption
|
32
27
|
association :presets, view: :summary, blueprint: Preset
|
33
28
|
end
|
@@ -41,6 +36,10 @@ module Inferno
|
|
41
36
|
TestGroup.render_as_hash(suite.groups(suite_options), suite_options:, suite_requirement_ids:)
|
42
37
|
end
|
43
38
|
field :configuration_messages
|
39
|
+
field :inputs do |suite, options|
|
40
|
+
suite_options = options[:suite_options]
|
41
|
+
Input.render_as_hash(suite.available_inputs(suite_options).values)
|
42
|
+
end
|
44
43
|
field :requirement_sets, if: :field_present? do |suite, options|
|
45
44
|
selected_options = options[:suite_options] || []
|
46
45
|
requirement_sets = suite.requirement_sets.select do |requirement_set|
|
data/lib/inferno/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: inferno_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stephen MacVicar
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2025-07-
|
13
|
+
date: 2025-07-24 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activesupport
|
@@ -438,14 +438,14 @@ dependencies:
|
|
438
438
|
requirements:
|
439
439
|
- - "~>"
|
440
440
|
- !ruby/object:Gem::Version
|
441
|
-
version: 1.
|
441
|
+
version: '1.4'
|
442
442
|
type: :runtime
|
443
443
|
prerelease: false
|
444
444
|
version_requirements: !ruby/object:Gem::Requirement
|
445
445
|
requirements:
|
446
446
|
- - "~>"
|
447
447
|
- !ruby/object:Gem::Version
|
448
|
-
version: 1.
|
448
|
+
version: '1.4'
|
449
449
|
- !ruby/object:Gem::Dependency
|
450
450
|
name: tty-markdown
|
451
451
|
requirement: !ruby/object:Gem::Requirement
|
@@ -494,6 +494,7 @@ files:
|
|
494
494
|
- lib/inferno/apps/cli/suite_input_template.rb
|
495
495
|
- lib/inferno/apps/cli/suites.rb
|
496
496
|
- lib/inferno/apps/cli/templates/%library_name%.gemspec.tt
|
497
|
+
- lib/inferno/apps/cli/templates/.DS_Store
|
497
498
|
- lib/inferno/apps/cli/templates/.dockerignore
|
498
499
|
- lib/inferno/apps/cli/templates/.env
|
499
500
|
- lib/inferno/apps/cli/templates/.env.development
|
@@ -531,6 +532,8 @@ files:
|
|
531
532
|
- lib/inferno/apps/cli/templates/lib/%library_name%/igs/README.md
|
532
533
|
- lib/inferno/apps/cli/templates/lib/%library_name%/igs/put_ig_package_dot_tgz_here
|
533
534
|
- lib/inferno/apps/cli/templates/lib/%library_name%/metadata.rb.tt
|
535
|
+
- lib/inferno/apps/cli/templates/lib/%library_name%/requirements/Inferno Requirements
|
536
|
+
Template.xlsx
|
534
537
|
- lib/inferno/apps/cli/templates/lib/%library_name%/suite.rb.tt
|
535
538
|
- lib/inferno/apps/cli/templates/lib/%library_name%/version.rb.tt
|
536
539
|
- lib/inferno/apps/cli/templates/run.sh
|