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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 98cf3556d809dacc27ff9aebe5179bb0203539d0357f4d6ca52352833f76450d
4
- data.tar.gz: dbeb4685dcef94355a0d71ad0e89cece01fbb69bcde53400e2d7755e2e252669
3
+ metadata.gz: 7dfaf7e19516bf8afda6fdc5a848b10acfbad088f9b680a5e943268f74338a35
4
+ data.tar.gz: 4dd3af0f3d31969dad47de9f5d0cc1f809d6a18b59c733e2c837fd50909b7278
5
5
  SHA512:
6
- metadata.gz: ffdcffe64f0ddd71565010439debaea23bc5bbb542d1318ef46a9846d4c5e54e3a3f43267de344851a6d6e89517d71dd199d8eeb2b2b79c2ececdd6b5f49ebbb
7
- data.tar.gz: 679f209458cc1d9bb63e758dbb0decd1bdbba578edb538e758d0716e328e23e1e66ee6c1d0143c4b71aecf65aed9244a307ea6d923005aa87e07879f7a5c2334
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Conduit
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "conduit"
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.0
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