pubnub 3.5.8 → 3.5.12
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.
Potentially problematic release.
This version of pubnub might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG +7 -0
- data/Gemfile.lock +1 -1
- data/README.md +3 -3
- data/VERSION +1 -1
- data/examples/chaos/tmp/pids/passenger.3000.pid.lock +0 -0
- data/fixtures/vcr_cassettes/eof_subscribe.yml +85 -0
- data/fixtures/vcr_cassettes/grant-multiple-channels.yml +45 -0
- data/fixtures/vcr_cassettes/heartbeat-non200.yml +173 -25
- data/lib/pubnub/client.rb +4 -0
- data/lib/pubnub/event.rb +50 -29
- data/lib/pubnub/events/grant.rb +1 -1
- data/lib/pubnub/events/publish.rb +1 -0
- data/lib/pubnub/events/revoke.rb +1 -1
- data/lib/pubnub/pam.rb +2 -2
- data/lib/pubnub/version.rb +1 -1
- data/pubnub.gemspec +2 -2
- data/spec/lib/eof_error_spec.rb +48 -0
- data/spec/lib/integration/audit_dpc_spec.rb +544 -0
- data/spec/lib/integration/global_here_now_dpc_spec.rb +541 -0
- data/spec/lib/integration/grant_dpc_spec.rb +555 -0
- data/spec/lib/integration/grant_spec.rb +25 -0
- data/spec/lib/integration/here_now_dpc_spec.rb +543 -0
- data/spec/lib/integration/history_dpc_spec.rb +541 -0
- data/spec/lib/integration/leave_dpc_spec.rb +540 -0
- data/spec/lib/integration/presence_dpc_spec.rb +557 -0
- data/spec/lib/integration/publish_dpc_spec.rb +1877 -0
- data/spec/lib/integration/revoke_dpc_spec.rb +555 -0
- data/spec/lib/integration/subscribe_dpc_spec.rb +564 -0
- data/spec/lib/integration/time_dpc_spec.rb +541 -0
- data/spec/lib/integration/v3_presence_dpc_spec.rb +557 -0
- metadata +18 -2
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.5.
|
4
|
+
version: 3.5.12
|
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-10-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: eventmachine
|
@@ -66,6 +66,7 @@ files:
|
|
66
66
|
- README.md
|
67
67
|
- Rakefile
|
68
68
|
- VERSION
|
69
|
+
- examples/chaos/tmp/pids/passenger.3000.pid.lock
|
69
70
|
- examples/demo_console.rb
|
70
71
|
- examples/demo_console_new.rb
|
71
72
|
- examples/error_server.rb
|
@@ -204,6 +205,7 @@ files:
|
|
204
205
|
- fixtures/vcr_cassettes/auth_key_flow_instead_auth_audit.yml
|
205
206
|
- fixtures/vcr_cassettes/auth_key_flow_no_auth_publish.yml
|
206
207
|
- fixtures/vcr_cassettes/auth_key_flow_non_auth_audit.yml
|
208
|
+
- fixtures/vcr_cassettes/eof_subscribe.yml
|
207
209
|
- fixtures/vcr_cassettes/formatting-envelope-subscribe-cipherkey-many-channels-array.yml
|
208
210
|
- fixtures/vcr_cassettes/formatting-envelope-subscribe-cipherkey-many-channels-hash.yml
|
209
211
|
- fixtures/vcr_cassettes/formatting-envelope-subscribe-cipherkey-many-channels-integer.yml
|
@@ -227,6 +229,7 @@ files:
|
|
227
229
|
- fixtures/vcr_cassettes/formatting-envelope-subscribe-without-cipherkey-one-channel-mix.yml
|
228
230
|
- fixtures/vcr_cassettes/formatting-envelope-subscribe-without-cipherkey-one-channel-string.yml
|
229
231
|
- fixtures/vcr_cassettes/grant-application-level.yml
|
232
|
+
- fixtures/vcr_cassettes/grant-multiple-channels.yml
|
230
233
|
- fixtures/vcr_cassettes/grant-nonssl-block-invalid-200-async.yml
|
231
234
|
- fixtures/vcr_cassettes/grant-nonssl-block-invalid-200-sync.yml
|
232
235
|
- fixtures/vcr_cassettes/grant-nonssl-block-invalid-non-200-async.yml
|
@@ -652,21 +655,34 @@ files:
|
|
652
655
|
- spec/lib/auth_key_flow_spec.rb
|
653
656
|
- spec/lib/client_spec.rb
|
654
657
|
- spec/lib/encoder_spec.rb
|
658
|
+
- spec/lib/eof_error_spec.rb
|
655
659
|
- spec/lib/formatting_envelope_spec.rb
|
656
660
|
- spec/lib/heartbeat_spec.rb
|
661
|
+
- spec/lib/integration/audit_dpc_spec.rb
|
657
662
|
- spec/lib/integration/audit_spec.rb
|
663
|
+
- spec/lib/integration/global_here_now_dpc_spec.rb
|
658
664
|
- spec/lib/integration/global_here_now_spec.rb
|
665
|
+
- spec/lib/integration/grant_dpc_spec.rb
|
659
666
|
- spec/lib/integration/grant_spec.rb
|
667
|
+
- spec/lib/integration/here_now_dpc_spec.rb
|
660
668
|
- spec/lib/integration/here_now_spec.rb
|
669
|
+
- spec/lib/integration/history_dpc_spec.rb
|
661
670
|
- spec/lib/integration/history_spec.rb
|
671
|
+
- spec/lib/integration/leave_dpc_spec.rb
|
662
672
|
- spec/lib/integration/leave_spec.rb
|
663
673
|
- spec/lib/integration/multiplexed_subscribe_flow_spec.rb
|
674
|
+
- spec/lib/integration/presence_dpc_spec.rb
|
664
675
|
- spec/lib/integration/presence_spec.rb
|
676
|
+
- spec/lib/integration/publish_dpc_spec.rb
|
665
677
|
- spec/lib/integration/publish_spec.rb
|
666
678
|
- spec/lib/integration/publish_spec_old.rb
|
679
|
+
- spec/lib/integration/revoke_dpc_spec.rb
|
667
680
|
- spec/lib/integration/revoke_spec.rb
|
681
|
+
- spec/lib/integration/subscribe_dpc_spec.rb
|
668
682
|
- spec/lib/integration/subscribe_spec.rb
|
683
|
+
- spec/lib/integration/time_dpc_spec.rb
|
669
684
|
- spec/lib/integration/time_spec.rb
|
685
|
+
- spec/lib/integration/v3_presence_dpc_spec.rb
|
670
686
|
- spec/lib/integration/v3_presence_spec.rb
|
671
687
|
- spec/lib/retry_logic_spec.rb
|
672
688
|
- spec/lib/subscribe_event.rb
|