ld-celluloid-eventsource 0.8.3 → 0.8.4

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
  SHA1:
3
- metadata.gz: 288de259557b7071ab952b7df40df3e2b8587f19
4
- data.tar.gz: 3edd6ecf59ea11f86e6566694097803fe74b70bd
3
+ metadata.gz: e040451be340d3c8f933e665fb70c123736ac3fe
4
+ data.tar.gz: 993d94fae833cb4ab05f6ca34475f427fa5fc462
5
5
  SHA512:
6
- metadata.gz: 91a01ad04de73834ccf18831b1acb5d784de31e2101c995082004e3c41b901adecbb31eef9f0a234059fae879093007aa76b67a3e1b313e508b4b366add12b5d
7
- data.tar.gz: 039ddf8432791cefed4e82e6b60457fc984277373f42c284747acf62633b15a3f493b4b8c9ff6f9499de62fbe5496f1bfa14ce80ae94d70dfc90079b212077ec
6
+ metadata.gz: 97dd6a189803c922756b28dad8b8d8709a00be51650c03dfa92f2ff1aa58be2a0cf526eb47572cea800fd78eb73cfffc8999673def9e4fae3d0300ecedf82c38
7
+ data.tar.gz: 7962621a8ce379de6578b898ad6d0b9c622003c877d9f9398b1015be90d82c07b72fb15f976742c4e5ab909aa3fa1e57338b26347fc28be524eb169e11211943
@@ -2,7 +2,6 @@
2
2
 
3
3
  To release:
4
4
  1. Bump version in version.rb
5
- 1. Commit changes and tag with version: ie 0.9.0
6
- 1. `gem build ld-celluloid-eventsource.gemspec`
7
- 1. `gem push ld-celluloid-eventsource-<version>.gem`
5
+ 1. Commit changes and tag with version: ie 0.8.4
6
+ 1. `VERSION=0.8.4 && git tag $VERSION && git push origin $VERSION && gem build ld-celluloid-eventsource.gemspec && gem push ld-celluloid-eventsource-$VERSION.gem`
8
7
  1. Release on Github
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # Celluloid::Eventsource
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/celluloid-eventsource.png)](http://badge.fury.io/rb/celluloid-eventsource)
4
- [![Code Climate](https://codeclimate.com/github/Tonkpils/celluloid-eventsource.png)](https://codeclimate.com/github/Tonkpils/celluloid-eventsource)
5
- [![Build Status](https://travis-ci.org/Tonkpils/celluloid-eventsource.svg?branch=master)](https://travis-ci.org/Tonkpils/celluloid-eventsource)
3
+ [![Gem Version](https://badge.fury.io/rb/celluloid-eventsource.png)](http://badge.fury.io/rb/ld-celluloid-eventsource)
6
4
 
7
5
  An EventSource client based off Celluloid::IO.
8
6
 
@@ -12,7 +10,7 @@ Specification based on [EventSource](http://www.w3.org/TR/2012/CR-eventsource-20
12
10
 
13
11
  Add this line to your application's Gemfile:
14
12
 
15
- gem 'celluloid-eventsource'
13
+ gem 'ld-celluloid-eventsource'
16
14
 
17
15
  And then execute:
18
16
 
@@ -6,8 +6,8 @@ require 'celluloid/eventsource/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "ld-celluloid-eventsource"
8
8
  spec.version = Celluloid::EventSource::VERSION
9
- spec.authors = ["Leo Correa"]
10
- spec.email = ["lcorr005@gmail.com"]
9
+ spec.authors = ["LaunchDarky"]
10
+ spec.email = ["dev@launchdarkly.com"]
11
11
  spec.description = %q{Celluloid::IO based library to consume Server-Sent Events. This library was forked from https://github.com/Tonkpils/celluloid-eventsource}
12
12
  spec.summary = %q{ld-celluloid-eventsource is a gem to consume SSE streaming API.}
13
13
  spec.homepage = "https://github.com/launchdarkly/celluloid-eventsource"
@@ -19,6 +19,7 @@ Gem::Specification.new do |spec|
19
19
  spec.require_paths = ["lib"]
20
20
 
21
21
  spec.add_dependency 'celluloid-io', '~> 0.17.3'
22
+ spec.add_dependency 'celluloid', '~> 0.18.0.pre' # because https://github.com/celluloid/celluloid/issues/696
22
23
  spec.add_dependency 'nio4r', '~> 1.1'
23
24
  spec.add_dependency 'http_parser.rb', '~> 0.6.0'
24
25
  spec.add_dependency 'concurrent-ruby', '~> 1.0'
@@ -10,6 +10,7 @@ require 'uri'
10
10
  module Celluloid
11
11
  class EventSource
12
12
  include Celluloid::IO
13
+ Celluloid.boot
13
14
 
14
15
  attr_reader :url, :with_credentials, :heartbeat_timeout, :logger
15
16
  attr_reader :ready_state
@@ -1,5 +1,5 @@
1
1
  module Celluloid
2
2
  class EventSource
3
- VERSION = "0.8.3"
3
+ VERSION = "0.8.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ld-celluloid-eventsource
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.3
4
+ version: 0.8.4
5
5
  platform: ruby
6
6
  authors:
7
- - Leo Correa
7
+ - LaunchDarky
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-13 00:00:00.000000000 Z
11
+ date: 2017-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: celluloid-io
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.17.3
27
+ - !ruby/object:Gem::Dependency
28
+ name: celluloid
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.18.0.pre
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.18.0.pre
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: nio4r
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -139,7 +153,7 @@ dependencies:
139
153
  description: Celluloid::IO based library to consume Server-Sent Events. This library
140
154
  was forked from https://github.com/Tonkpils/celluloid-eventsource
141
155
  email:
142
- - lcorr005@gmail.com
156
+ - dev@launchdarkly.com
143
157
  executables: []
144
158
  extensions: []
145
159
  extra_rdoc_files: []