fiber_stream 0.2.0 → 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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fiber_stream
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dai Akatsuka
@@ -117,10 +117,13 @@ files:
117
117
  - examples/file_copy.rb
118
118
  - examples/line_processing.rb
119
119
  - examples/ractor_map_hashing.rb
120
+ - examples/ractor_merge_ports_and_map.rb
120
121
  - examples/ractor_port_source.rb
122
+ - examples/ractor_producer_sources.rb
121
123
  - lib/fiber_stream.rb
122
124
  - lib/fiber_stream/errors.rb
123
125
  - lib/fiber_stream/flow.rb
126
+ - lib/fiber_stream/internal/ractor_transfer_policy.rb
124
127
  - lib/fiber_stream/pipeline.rb
125
128
  - lib/fiber_stream/pull.rb
126
129
  - lib/fiber_stream/pull/async_boundary.rb
@@ -129,17 +132,25 @@ files:
129
132
  - lib/fiber_stream/pull/drop.rb
130
133
  - lib/fiber_stream/pull/drop_while.rb
131
134
  - lib/fiber_stream/pull/each.rb
135
+ - lib/fiber_stream/pull/grouped.rb
132
136
  - lib/fiber_stream/pull/io_source.rb
133
137
  - lib/fiber_stream/pull/lines.rb
134
138
  - lib/fiber_stream/pull/map.rb
139
+ - lib/fiber_stream/pull/merge.rb
135
140
  - lib/fiber_stream/pull/parallel_map_boundary.rb
141
+ - lib/fiber_stream/pull/parallel_unordered_map_boundary.rb
136
142
  - lib/fiber_stream/pull/ractor_map_boundary.rb
143
+ - lib/fiber_stream/pull/ractor_merge_ports_source.rb
137
144
  - lib/fiber_stream/pull/ractor_port_source.rb
145
+ - lib/fiber_stream/pull/ractor_producer_source.rb
146
+ - lib/fiber_stream/pull/scan.rb
138
147
  - lib/fiber_stream/pull/select.rb
148
+ - lib/fiber_stream/pull/split.rb
139
149
  - lib/fiber_stream/pull/take.rb
140
150
  - lib/fiber_stream/pull/take_while.rb
141
151
  - lib/fiber_stream/pull/zip.rb
142
152
  - lib/fiber_stream/ractor_port.rb
153
+ - lib/fiber_stream/ractor_producer.rb
143
154
  - lib/fiber_stream/running_pipeline.rb
144
155
  - lib/fiber_stream/sink.rb
145
156
  - lib/fiber_stream/source.rb
@@ -151,7 +162,7 @@ licenses:
151
162
  metadata:
152
163
  allowed_push_host: https://rubygems.org
153
164
  homepage_uri: https://github.com/dakatsuka/fiber_stream
154
- source_code_uri: https://github.com/dakatsuka/fiber_stream/tree/v0.2.0
165
+ source_code_uri: https://github.com/dakatsuka/fiber_stream/tree/v0.4.0
155
166
  changelog_uri: https://github.com/dakatsuka/fiber_stream/blob/main/CHANGELOG.md
156
167
  rubygems_mfa_required: 'true'
157
168
  rdoc_options: []
@@ -168,7 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
168
179
  - !ruby/object:Gem::Version
169
180
  version: '0'
170
181
  requirements: []
171
- rubygems_version: 4.0.6
182
+ rubygems_version: 4.0.10
172
183
  specification_version: 4
173
184
  summary: Asynchronous, non-blocking stream processing with backpressure.
174
185
  test_files: []