tdc 0.3.9 → 0.4.0
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/CHANGELOG.md +6 -0
- data/lib/tdc/data_definition_file_reader.rb +1 -7
- data/lib/tdc/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a574acff7829e69b0f0921e3057ed00ccbf149aa6bc23e77585de0c4372183af
|
|
4
|
+
data.tar.gz: b8242f2461ab9eab727e3aca43de8b7ad4f31b45435ce67a4e8cd868893263d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5bfe223f7dbbe91f3b92e0d6582d0964a5a1f309190a3f787dde1c6c7132678f2c3f1d0c0faf442231a6c1462ee43941dd1b03460dd0d5f5135612998df0a59b
|
|
7
|
+
data.tar.gz: 056c5002c9fbc2cd94ec5a9de9a06d229a271867a915a486abc316c245499ae8c3f069ef8a1bfb14c10d895b9e2af3b5a5035b8af086c5d3187a3bf7592829a5
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.4.0] - 2020-08-14
|
|
10
|
+
|
|
11
|
+
#### New Features
|
|
12
|
+
|
|
13
|
+
- Drop requirement that an empty test data definition file must be provided
|
|
14
|
+
|
|
9
15
|
## [0.3.9] - 2020-08-12
|
|
10
16
|
|
|
11
17
|
#### Breaking Changes
|
|
@@ -29,7 +29,7 @@ module Tdc
|
|
|
29
29
|
if File.exist?(definitions_file)
|
|
30
30
|
load_yaml(definitions_file) || EMPTY_DEFINITIONS
|
|
31
31
|
else
|
|
32
|
-
|
|
32
|
+
EMPTY_DEFINITIONS
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
|
|
@@ -45,11 +45,5 @@ module Tdc
|
|
|
45
45
|
def expand_erb(definitions_file)
|
|
46
46
|
ERB.new(File.read(definitions_file)).result
|
|
47
47
|
end
|
|
48
|
-
|
|
49
|
-
def missing_data_definition(definitions_file)
|
|
50
|
-
return EMPTY_DEFINITIONS if ENV.key?("TDC_IGNORE_MISSING_TEST_DATA_DEFINITION_ERROR")
|
|
51
|
-
|
|
52
|
-
raise Tdc::FatalError, "Missing test definitions file: '#{definitions_file}'"
|
|
53
|
-
end
|
|
54
48
|
end
|
|
55
49
|
end
|
data/lib/tdc/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tdc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alistair McKinnell
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-08-
|
|
11
|
+
date: 2020-08-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|