tdc 0.3.4 → 0.3.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 +4 -4
- data/.rubocop.yml +6 -2
- data/CHANGELOG.md +9 -1
- data/lib/tdc/generators/catalog_entries.rb +6 -0
- data/lib/tdc/generators/singular_generator.rb +1 -11
- 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: 2f0fa7ec99a40148ff1ca3fccaaa4ffeee29cc12034dc688b0957deeeb5df9a1
|
4
|
+
data.tar.gz: 2bcd19c81b665611f4f7abbfc8d23fb79db098b84eb837de5e6e6a67a69d7cf7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7cc7b66e9a063bd23e6ccfc482f187b1c8b1a8b2950e16984785c2f9c5c40615e2fb0375e59afd2d374ca3d782719d5f164ac4a2d177d746f0858551b0804061
|
7
|
+
data.tar.gz: dd2476bd5f82a387b89353e790661263d1c28b5c65f901ec01d0f50c3efcf1e716904eacab039f2c39fd44c91f97aeb4dd386dc884a3de07029354c8549acd43
|
data/.rubocop.yml
CHANGED
@@ -120,6 +120,10 @@ Style/HashSyntax:
|
|
120
120
|
Exclude:
|
121
121
|
- 'Rakefile'
|
122
122
|
|
123
|
+
# We are not going to optimize by freezing strings.
|
124
|
+
Style/MutableConstant:
|
125
|
+
Enabled: false
|
126
|
+
|
123
127
|
Style/RedundantAssignment:
|
124
128
|
Enabled: true
|
125
129
|
|
@@ -150,6 +154,6 @@ Style/StringLiterals:
|
|
150
154
|
Style/SymbolArray:
|
151
155
|
Enabled: false
|
152
156
|
|
153
|
-
#
|
154
|
-
Style/
|
157
|
+
# I prefer not to use %w or %W for an array of words.
|
158
|
+
Style/WordArray:
|
155
159
|
Enabled: false
|
data/CHANGELOG.md
CHANGED
@@ -6,12 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [0.3.5] - 2020-08-06
|
10
|
+
|
11
|
+
- Add the `single_entry` method to `CatalogEntries`
|
12
|
+
|
13
|
+
#### Breaking Changes
|
14
|
+
|
15
|
+
- Drop the `with_definition` method from `SingularGenerator`
|
16
|
+
|
9
17
|
## [0.3.4] - 2020-08-05
|
10
18
|
|
11
19
|
#### Breaking Changes
|
12
20
|
|
13
21
|
- Introduce the `GenerationContext` abstraction
|
14
|
-
- All generators are initialized with an instance of `Tdc::GenerationContext`
|
22
|
+
- All generators are initialized with an instance of `Tdc::Generators::GenerationContext`
|
15
23
|
|
16
24
|
## [0.3.3] - 2020-08-04
|
17
25
|
|
@@ -6,24 +6,14 @@ module Tdc
|
|
6
6
|
# See also StandardGenerator.
|
7
7
|
#
|
8
8
|
class SingularGenerator < Tdc::Generators::ConfigurableGenerator
|
9
|
-
def with_definition(additional_definitions)
|
10
|
-
@additional_definitions = additional_definitions.stringify_keys.reject { |_, v| v == :missing_definition }
|
11
|
-
|
12
|
-
self
|
13
|
-
end
|
14
|
-
|
15
9
|
def generate
|
16
|
-
configure_instance_definition(singular_instance_definition
|
10
|
+
configure_instance_definition(singular_instance_definition)
|
17
11
|
|
18
12
|
run_resolvers_and_generate_instance
|
19
13
|
end
|
20
14
|
|
21
15
|
private
|
22
16
|
|
23
|
-
def additional_definitions
|
24
|
-
@additional_definitions || {}
|
25
|
-
end
|
26
|
-
|
27
17
|
def singular_instance_definition
|
28
18
|
all_instance_definitions = instance_definitions
|
29
19
|
|
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.3.
|
4
|
+
version: 0.3.5
|
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-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|