pubnub 3.6.7 → 3.6.9
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.txt +6 -0
- data/README.md +3 -3
- data/lib/pubnub/event.rb +1 -1
- data/lib/pubnub/events/heartbeat.rb +1 -0
- data/lib/pubnub/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 129da4ca2af9417f9964d5f2730b6b1273b860db
|
|
4
|
+
data.tar.gz: 3d385ff0bbcbb04cf250049a90ed34c9eb84cbdd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55a1b93f43c5a1d6e8394cf6ca5c1001ee0aca4bb0beb250df7ff121221cb5648e0dbcd53d0f98d275771d873f0334ba81af48c54d5163b26606a297dbdc9c01
|
|
7
|
+
data.tar.gz: 589b847e41ff538ced05e557b0d1f4d6376e9e8cdfeb9615e18a9691684a4923e7ce559ceef93e834d242bfe2662a4f07a9833e5dec85598a7282b23b75840d9
|
data/CHANGELOG.txt
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Please direct all Support Questions and Concerns to Support@PubNub.com
|
|
2
2
|
|
|
3
|
-
## PubNub Gem version 3.6.
|
|
3
|
+
## PubNub Gem version 3.6.9
|
|
4
4
|
|
|
5
5
|
##### YOU MUST HAVE A PUBNUB ACCOUNT TO USE THE API.
|
|
6
6
|
##### http://www.pubnub.com/account
|
|
@@ -17,10 +17,10 @@ We've made the response format compatible across all operations. This may break
|
|
|
17
17
|
Examples of affected operations can be found [here](3.5_to_3.6_upgrade_notes.md).
|
|
18
18
|
|
|
19
19
|
### Upgrading from PubNub 3.3.x and Earlier
|
|
20
|
-
PubNub 3.6.
|
|
20
|
+
PubNub 3.6.9 is NOT compatible with earlier than 3.4 versions of Pubnub Ruby Client.
|
|
21
21
|
|
|
22
22
|
### Upgrading from PubNub 3.4 and higher versions
|
|
23
|
-
PubNub 3.6.
|
|
23
|
+
PubNub 3.6.9 is compatible with 3.4 version.
|
|
24
24
|
|
|
25
25
|
## Important Notice about Blocking vs Non-Blocking Calls
|
|
26
26
|
|
data/lib/pubnub/event.rb
CHANGED
|
@@ -433,7 +433,7 @@ module Pubnub
|
|
|
433
433
|
end
|
|
434
434
|
|
|
435
435
|
def path(app)
|
|
436
|
-
path =
|
|
436
|
+
path = "/subscribe/#{@subscribe_key}/#{channels_for_url(@channel)}/0/#{@timetoken}".gsub(/\?/,'%3F')
|
|
437
437
|
end
|
|
438
438
|
|
|
439
439
|
def timetoken(parsed_response)
|
|
@@ -33,6 +33,7 @@ module Pubnub
|
|
|
33
33
|
def parameters(app)
|
|
34
34
|
parameters = super(app)
|
|
35
35
|
parameters.merge!({:state => encode_state(app.env[:state][@origin])}) if app.env[:state] && app.env[:state][@origin]
|
|
36
|
+
parameters.merge!({:heartbeat => app.env[:heartbeat]}) if app.env[:heartbeat]
|
|
36
37
|
parameters
|
|
37
38
|
end
|
|
38
39
|
|
data/lib/pubnub/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pubnub
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.6.
|
|
4
|
+
version: 3.6.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- PubNub
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-11-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: eventmachine
|