inferno_core 0.6.10 → 0.6.11
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 +4 -4
- data/lib/inferno/apps/cli/execute.rb +17 -21
- data/lib/inferno/apps/web/router.rb +10 -5
- data/lib/inferno/apps/web/serializers/serializer.rb +7 -0
- data/lib/inferno/apps/web/serializers/test.rb +1 -1
- data/lib/inferno/apps/web/serializers/test_group.rb +1 -1
- data/lib/inferno/apps/web/serializers/test_suite.rb +2 -2
- data/lib/inferno/feature.rb +9 -0
- data/lib/inferno/public/bundle.js +34 -34
- data/lib/inferno/version.rb +1 -1
- metadata +3 -3
- data/spec/features_helper.rb +0 -12
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: 0.6.
|
4
|
+
version: 0.6.11
|
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-05-
|
13
|
+
date: 2025-05-30 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activesupport
|
@@ -619,6 +619,7 @@ files:
|
|
619
619
|
- lib/inferno/ext/fhir_models.rb
|
620
620
|
- lib/inferno/ext/json_parser.rb
|
621
621
|
- lib/inferno/ext/rack.rb
|
622
|
+
- lib/inferno/feature.rb
|
622
623
|
- lib/inferno/jobs.rb
|
623
624
|
- lib/inferno/jobs/execute_test_run.rb
|
624
625
|
- lib/inferno/jobs/invoke_validator_session.rb
|
@@ -674,7 +675,6 @@ files:
|
|
674
675
|
- spec/factories/result.rb
|
675
676
|
- spec/factories/test_run.rb
|
676
677
|
- spec/factories/test_session.rb
|
677
|
-
- spec/features_helper.rb
|
678
678
|
- spec/fixtures/auth_info_constants.rb
|
679
679
|
- spec/fixtures/basic_test_group.rb
|
680
680
|
- spec/fixtures/basic_test_suite.rb
|
data/spec/features_helper.rb
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
# Require this file for feature tests
|
2
|
-
require_relative 'spec_helper'
|
3
|
-
|
4
|
-
require 'capybara'
|
5
|
-
require 'capybara/rspec'
|
6
|
-
|
7
|
-
RSpec.configure do |config|
|
8
|
-
config.include RSpec::FeatureExampleGroup
|
9
|
-
|
10
|
-
config.include Capybara::DSL, feature: true
|
11
|
-
config.include Capybara::RSpecMatchers, feature: true
|
12
|
-
end
|