inferno_core 0.4.32 → 0.4.34
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/new.rb +1 -1
- data/lib/inferno/apps/cli/templates/.dockerignore +22 -0
- data/lib/inferno/apps/cli/templates/.env +1 -0
- data/lib/inferno/apps/cli/templates/.env.development +2 -0
- data/lib/inferno/apps/cli/templates/.env.production +2 -0
- data/lib/inferno/apps/cli/templates/.env.test +2 -0
- data/lib/inferno/apps/cli/templates/.gitignore +20 -0
- data/lib/inferno/apps/cli/templates/.rspec +1 -0
- data/lib/inferno/apps/cli/templates/.ruby-version +1 -0
- data/lib/inferno/apps/cli/templates/.tool-versions +1 -0
- data/lib/inferno/apps/cli/templates/data/.keep +0 -0
- data/lib/inferno/apps/cli/templates/data/redis/.keep +0 -0
- data/lib/inferno/apps/cli/templates/lib/%library_name%/igs/.keep +0 -0
- data/lib/inferno/apps/cli/templates/lib/%library_name%.rb.tt +1 -1
- data/lib/inferno/config/boot/validator.rb +2 -0
- data/lib/inferno/version.rb +1 -1
- metadata +14 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ca2023b80a717f68b6e111807d4a772467f5d5aa8bb541ffea986b0c561f4b1
|
|
4
|
+
data.tar.gz: 9feba37b311872190b1aa2256803e630606eff2a796984dfed2f42746af596a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d9fbfc002dc266b6696ab83b625293d3fca1d84719f2b7fc5aa45106a79f9ce0aa99882d5de549afed30057c4b64e968e2b4b95a3584d2a645eac951de06571
|
|
7
|
+
data.tar.gz: 5c31da4c28d1ead138f25f7245e30959955fdc7e63f5df471e167a2e48f00cd805ba50267d0fa89ba98b6923b15705a175ea2994ad750b1edfe1162318cbc396
|
data/lib/inferno/apps/cli/new.rb
CHANGED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
.env.local
|
|
2
|
+
.env.*.local
|
|
3
|
+
.env.development
|
|
4
|
+
.env.test
|
|
5
|
+
Dockerfile
|
|
6
|
+
.gitignore
|
|
7
|
+
|
|
8
|
+
.byebug_history
|
|
9
|
+
**/.DS_Store
|
|
10
|
+
.vscode/*
|
|
11
|
+
.project
|
|
12
|
+
.settings/.jsdtscope
|
|
13
|
+
.settings/org.eclipse.wst.jsdt.ui.superType.container
|
|
14
|
+
.settings/org.eclipse.wst.jsdt.ui.superType.name
|
|
15
|
+
.idea
|
|
16
|
+
|
|
17
|
+
/coverage
|
|
18
|
+
/data
|
|
19
|
+
/.git
|
|
20
|
+
/.github
|
|
21
|
+
/log
|
|
22
|
+
/tmp
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
JS_HOST=""
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/data/*.db
|
|
2
|
+
/data/redis/**/*.rdb
|
|
3
|
+
/data/redis/**/*.aof
|
|
4
|
+
/data/redis/**/*.manifest
|
|
5
|
+
/tmp
|
|
6
|
+
.env.local
|
|
7
|
+
.env.*.local
|
|
8
|
+
**/.DS_Store
|
|
9
|
+
.vscode/*
|
|
10
|
+
.project
|
|
11
|
+
.settings/.jsdtscope
|
|
12
|
+
.settings/org.eclipse.wst.jsdt.ui.superType.container
|
|
13
|
+
.settings/org.eclipse.wst.jsdt.ui.superType.name
|
|
14
|
+
.idea
|
|
15
|
+
|
|
16
|
+
/coverage
|
|
17
|
+
/spec/examples.txt
|
|
18
|
+
/docs/yard
|
|
19
|
+
.yardoc
|
|
20
|
+
node_modules
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
--require spec_helper
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.1.2
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ruby 3.1.2
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -4,7 +4,7 @@ module <%= module_name %>
|
|
|
4
4
|
class Suite < Inferno::TestSuite
|
|
5
5
|
id :<%= test_suite_id %>
|
|
6
6
|
title '<%= title_name %> Test Suite'
|
|
7
|
-
description '
|
|
7
|
+
description '<%= human_name %> test suite.'
|
|
8
8
|
|
|
9
9
|
# These inputs will be available to all tests in this suite
|
|
10
10
|
input :url,
|
|
@@ -6,6 +6,8 @@ Inferno::Application.boot(:validator) do
|
|
|
6
6
|
# so skipping it on workers will start it only once from the "web" process
|
|
7
7
|
next if Sidekiq.server?
|
|
8
8
|
|
|
9
|
+
next if ENV['APP_ENV'] == 'test'
|
|
10
|
+
|
|
9
11
|
Inferno::Repositories::TestSuites.new.all.each do |suite|
|
|
10
12
|
suite.fhir_validators.each do |name, validators|
|
|
11
13
|
validators.each_with_index do |validator, index|
|
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.4.
|
|
4
|
+
version: 0.4.34
|
|
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: 2024-
|
|
13
|
+
date: 2024-04-08 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: activesupport
|
|
@@ -552,6 +552,15 @@ files:
|
|
|
552
552
|
- lib/inferno/apps/cli/suite_input_template.rb
|
|
553
553
|
- lib/inferno/apps/cli/suites.rb
|
|
554
554
|
- lib/inferno/apps/cli/templates/%library_name%.gemspec.tt
|
|
555
|
+
- lib/inferno/apps/cli/templates/.dockerignore
|
|
556
|
+
- lib/inferno/apps/cli/templates/.env
|
|
557
|
+
- lib/inferno/apps/cli/templates/.env.development
|
|
558
|
+
- lib/inferno/apps/cli/templates/.env.production
|
|
559
|
+
- lib/inferno/apps/cli/templates/.env.test
|
|
560
|
+
- lib/inferno/apps/cli/templates/.gitignore
|
|
561
|
+
- lib/inferno/apps/cli/templates/.rspec
|
|
562
|
+
- lib/inferno/apps/cli/templates/.ruby-version
|
|
563
|
+
- lib/inferno/apps/cli/templates/.tool-versions
|
|
555
564
|
- lib/inferno/apps/cli/templates/Dockerfile.tt
|
|
556
565
|
- lib/inferno/apps/cli/templates/Gemfile.tt
|
|
557
566
|
- lib/inferno/apps/cli/templates/LICENSE.tt
|
|
@@ -563,9 +572,12 @@ files:
|
|
|
563
572
|
- lib/inferno/apps/cli/templates/config/nginx.background.conf.tt
|
|
564
573
|
- lib/inferno/apps/cli/templates/config/nginx.conf.tt
|
|
565
574
|
- lib/inferno/apps/cli/templates/config/puma.rb.tt
|
|
575
|
+
- lib/inferno/apps/cli/templates/data/.keep
|
|
576
|
+
- lib/inferno/apps/cli/templates/data/redis/.keep
|
|
566
577
|
- lib/inferno/apps/cli/templates/docker-compose.background.yml.tt
|
|
567
578
|
- lib/inferno/apps/cli/templates/docker-compose.yml.tt
|
|
568
579
|
- lib/inferno/apps/cli/templates/lib/%library_name%.rb.tt
|
|
580
|
+
- lib/inferno/apps/cli/templates/lib/%library_name%/igs/.keep
|
|
569
581
|
- lib/inferno/apps/cli/templates/lib/%library_name%/igs/put_ig_package_dot_tgz_here
|
|
570
582
|
- lib/inferno/apps/cli/templates/lib/%library_name%/patient_group.rb.tt
|
|
571
583
|
- lib/inferno/apps/cli/templates/run.sh
|