conduit-sse 0.1.0 → 0.1.1
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 +8 -0
- data/lib/conduit/version.rb +1 -1
- data/lib/conduit-sse.rb +3 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7dfaf7e19516bf8afda6fdc5a848b10acfbad088f9b680a5e943268f74338a35
|
|
4
|
+
data.tar.gz: 4dd3af0f3d31969dad47de9f5d0cc1f809d6a18b59c733e2c837fd50909b7278
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f8ec3cb99f7ed744af158c6359910e23b152f23d7479daf50692f0f12b9dafad15dc3d0d8fa323f659daec6a622c3e85ff17d2f43079a7c9db295c32218e4c97
|
|
7
|
+
data.tar.gz: 12944abcb2f6f30c5b3405280ea433b66d8c92caea68491695f954593a0556bd860c44bbc63b8e4182647d58e5a4505eb17894eb121d011fc93a01c2a6eff493
|
data/CHANGELOG.md
CHANGED
|
@@ -5,9 +5,17 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.1.1] - 2026-05-08
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Shim file `lib/conduit-sse.rb` to allow automatic requiring when gem is added to Gemfile
|
|
13
|
+
- Renamed gem from `conduit` to `conduit-sse` due to name conflict on RubyGems
|
|
14
|
+
|
|
8
15
|
## [0.1.0] - 2026-05-08
|
|
9
16
|
|
|
10
17
|
### Added
|
|
18
|
+
|
|
11
19
|
- Initial release of Conduit, a lightweight, zero-dependency Ruby gem for parsing Server-Sent Events (SSE) streams
|
|
12
20
|
- Flexible callback-based architecture for processing real-time server push data
|
|
13
21
|
- Custom parser support for transforming event data into any shape
|
data/lib/conduit/version.rb
CHANGED
data/lib/conduit-sse.rb
ADDED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: conduit-sse
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- franbach
|
|
@@ -22,6 +22,7 @@ files:
|
|
|
22
22
|
- LICENSE.txt
|
|
23
23
|
- README.md
|
|
24
24
|
- Rakefile
|
|
25
|
+
- lib/conduit-sse.rb
|
|
25
26
|
- lib/conduit.rb
|
|
26
27
|
- lib/conduit/callbacks.rb
|
|
27
28
|
- lib/conduit/defaults.rb
|