core-pipeline 0.5.1 → 0.5.3

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: 9eee559c3f6611fda78768fb157652092a3dac590799cf2f090a9f3e1a24e14c
4
- data.tar.gz: 13b37adb6f55e86139d25935ce2d61d9b244250d2ea708f294d1d267d3faa88e
3
+ metadata.gz: 10088703b97af1aeb7a1ac75ef8739b33ddd6196340d419eb616a24421c5bd12
4
+ data.tar.gz: 9709eb0cf5a5f543ad14e53c52ff12ed7e90131dc941d4141b38a8f770a7a29b
5
5
  SHA512:
6
- metadata.gz: 15e60e985150582f18e66f7caa3feea227cfdb6cfe83fe77deb40897e048c42d50b161aac7ea279e5be1ee30faf831274252d7a064bdc90cd14b07d1b2fbf5fb
7
- data.tar.gz: d06cab76f50362c0b6b013ea52801141b329d0da26768d186bcc2d44fdcd568f5b257a55651f576853900a407e9aeca33279542602b6f996a27ceb283a39b450
6
+ metadata.gz: 4d3b50b53674156daeee0c77fc7cf110fa2bffbfe5a1f919d094e8f8a359b183b017cbfab4ba94b3f571e534e768b385fc268964cffe23e7907c8aa04eba63b9
7
+ data.tar.gz: 53e529e79fc5fdad3996fb0a7e50cb175b6e567b4e8763350314e706999a450c1552bb8838168c7343c2b3326428dc0612369461273c5183d1e434b3fc359501
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
+ ## [v0.5.3](https://github.com/metabahn/corerb/releases/tag/2023-07-16)
2
+
3
+ *released on 2023-07-16*
4
+
5
+ * `fix` [#133](https://github.com/bryanp/corerb/pull/133) Isolate pipelines when subclassed ([bryanp](https://github.com/bryanp))
6
+
7
+ ## [v0.5.2](https://github.com/metabahn/corerb/releases/tag/2022-06-02)
8
+
9
+ *released on 2022-06-02*
10
+
11
+ * `fix` [#130](https://github.com/metabahn/corerb/pull/130) Accept all arguments in prepended finalize ([bryanp](https://github.com/bryanp))
12
+
1
13
  ## [v0.5.1](https://github.com/metabahn/corerb/releases/tag/2021-11-23.1)
2
14
 
3
- *released on 2021-11-23.1*
15
+ *released on 2021-11-23*
4
16
 
5
17
  * `chg` [#109](https://github.com/metabahn/corerb/pull/109) Prefer `__send__` to `send` ([bryanp](https://github.com/bryanp))
6
18
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Core
4
4
  module Pipeline
5
- VERSION = "0.5.1"
5
+ VERSION = "0.5.3"
6
6
 
7
7
  def self.version
8
8
  VERSION
data/lib/is/pipeline.rb CHANGED
@@ -55,6 +55,12 @@ module Is
55
55
  def exclude_pipeline(other_pipeline)
56
56
  pipeline.exclude(other_pipeline)
57
57
  end
58
+
59
+ def inherited(subclass)
60
+ super
61
+
62
+ subclass.pipeline.relocate(subclass)
63
+ end
58
64
  end
59
65
 
60
66
  extends :implementation, dependencies: [Is::Pipeline::Controller] do
@@ -103,7 +109,7 @@ module Is
103
109
  extends :implementation, prepend: true do
104
110
  # [public]
105
111
  #
106
- def finalize
112
+ def finalize(...)
107
113
  super if defined?(super)
108
114
  pipeline.finalize
109
115
  self
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: core-pipeline
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bryan Powell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-23 00:00:00.000000000 Z
11
+ date: 2023-07-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: core-extension
@@ -90,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
90
90
  - !ruby/object:Gem::Version
91
91
  version: '0'
92
92
  requirements: []
93
- rubygems_version: 3.2.22
93
+ rubygems_version: 3.4.12
94
94
  signing_key:
95
95
  specification_version: 4
96
96
  summary: Turns Ruby objects into pipelines.