pubnub 4.0.27 → 4.0.28

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pubnub might be problematic. Click here for more details.

Files changed (119) hide show
  1. checksums.yaml +4 -4
  2. data/.pubnub.yml +8 -1
  3. data/.rubocop.yml +9 -3
  4. data/.travis.yml +6 -19
  5. data/CHANGELOG.md +86 -82
  6. data/Gemfile +7 -5
  7. data/Gemfile.lock +155 -157
  8. data/README.md +34 -34
  9. data/VERSION +1 -1
  10. data/gemfiles/celluloid_017.gemfile +4 -4
  11. data/gemfiles/celluloid_018.gemfile +4 -4
  12. data/gemfiles/celluloid_master.gemfile +4 -4
  13. data/gemfiles/concurrent-ruby-1.0.5.gem +0 -0
  14. data/gemfiles/concurrent-ruby-edge-0.3.1.gem +0 -0
  15. data/lib/pubnub.rb +3 -3
  16. data/lib/pubnub/client.rb +19 -16
  17. data/lib/pubnub/client/events.rb +5 -5
  18. data/lib/pubnub/client/getters_setters.rb +11 -12
  19. data/lib/pubnub/client/paged_history.rb +11 -9
  20. data/lib/pubnub/configuration.rb +1 -2
  21. data/lib/pubnub/constants.rb +47 -47
  22. data/lib/pubnub/crypto.rb +2 -2
  23. data/lib/pubnub/envelope.rb +7 -5
  24. data/lib/pubnub/error.rb +22 -15
  25. data/lib/pubnub/event.rb +24 -25
  26. data/lib/pubnub/event/formatter.rb +8 -5
  27. data/lib/pubnub/event/signature.rb +3 -3
  28. data/lib/pubnub/events/audit.rb +1 -1
  29. data/lib/pubnub/events/channel_registration.rb +10 -15
  30. data/lib/pubnub/events/delete_messages.rb +9 -9
  31. data/lib/pubnub/events/grant.rb +3 -3
  32. data/lib/pubnub/events/heartbeat.rb +4 -8
  33. data/lib/pubnub/events/here_now.rb +4 -8
  34. data/lib/pubnub/events/history.rb +10 -10
  35. data/lib/pubnub/events/leave.rb +2 -2
  36. data/lib/pubnub/events/presence.rb +1 -1
  37. data/lib/pubnub/events/publish.rb +3 -5
  38. data/lib/pubnub/events/revoke.rb +3 -3
  39. data/lib/pubnub/events/set_state.rb +3 -3
  40. data/lib/pubnub/events/state.rb +4 -6
  41. data/lib/pubnub/events/subscribe.rb +1 -1
  42. data/lib/pubnub/events/time.rb +2 -2
  43. data/lib/pubnub/events/where_now.rb +6 -6
  44. data/lib/pubnub/format.rb +73 -0
  45. data/lib/pubnub/formatter.rb +23 -21
  46. data/lib/pubnub/heart.rb +4 -4
  47. data/lib/pubnub/origin_manager.rb +3 -5
  48. data/lib/pubnub/pam.rb +5 -5
  49. data/lib/pubnub/schemas/envelope_schema.rb +1 -1
  50. data/lib/pubnub/subscribe_callback.rb +3 -3
  51. data/lib/pubnub/subscribe_event.rb +6 -10
  52. data/lib/pubnub/subscribe_event/formatter.rb +82 -80
  53. data/lib/pubnub/subscribe_event/heartbeat.rb +1 -1
  54. data/lib/pubnub/subscriber.rb +31 -32
  55. data/lib/pubnub/telemetry.rb +26 -27
  56. data/lib/pubnub/validators/audit.rb +3 -2
  57. data/lib/pubnub/validators/channel_registration.rb +6 -4
  58. data/lib/pubnub/validators/client.rb +1 -0
  59. data/lib/pubnub/validators/common_validator.rb +37 -31
  60. data/lib/pubnub/validators/delete.rb +5 -4
  61. data/lib/pubnub/validators/grant.rb +3 -2
  62. data/lib/pubnub/validators/history.rb +3 -2
  63. data/lib/pubnub/validators/leave.rb +3 -2
  64. data/lib/pubnub/validators/presence.rb +3 -2
  65. data/lib/pubnub/validators/publish.rb +15 -10
  66. data/lib/pubnub/validators/set_state.rb +0 -2
  67. data/lib/pubnub/validators/state.rb +3 -2
  68. data/lib/pubnub/version.rb +1 -1
  69. data/pubnub.gemspec +19 -18
  70. data/spec/examples/audit_examples_spec.rb +1268 -1418
  71. data/spec/examples/channel_registration_examples_spec.rb +655 -757
  72. data/spec/examples/delete_messages_examples_spec.rb +19 -21
  73. data/spec/examples/grant_examples_spec.rb +34028 -37920
  74. data/spec/examples/heartbeat_examples_spec.rb +583 -731
  75. data/spec/examples/here_now_examples_spec.rb +493 -569
  76. data/spec/examples/history_examples_spec.rb +979 -1127
  77. data/spec/examples/leave_examples_spec.rb +439 -551
  78. data/spec/examples/presence_examples_spec.rb +686 -830
  79. data/spec/examples/publish_examples_spec.rb +27223 -31547
  80. data/spec/examples/publish_with_ttl_spec.rb +11 -14
  81. data/spec/examples/revoke_examples_spec.rb +68048 -75828
  82. data/spec/examples/set_state_examples_spec.rb +295 -371
  83. data/spec/examples/state_examples_spec.rb +169 -197
  84. data/spec/examples/status_request_message_count_exceeded_spec.rb +16 -19
  85. data/spec/examples/subscribe_examples_spec.rb +43843 -52035
  86. data/spec/examples/time_examples_spec.rb +82 -98
  87. data/spec/examples/where_now_examples_spec.rb +88 -104
  88. data/spec/lib/client_spec.rb +99 -117
  89. data/spec/lib/connection_callback_spec.rb +27 -33
  90. data/spec/lib/custom_retries_examples_spec.rb +8 -11
  91. data/spec/lib/event_spec.rb +35 -42
  92. data/spec/lib/events/audit_spec.rb +19 -25
  93. data/spec/lib/events/channel_registration_spec.rb +17 -23
  94. data/spec/lib/events/delete_messages_spec.rb +14 -20
  95. data/spec/lib/events/grant_spec.rb +15 -21
  96. data/spec/lib/events/heartbeat_spec.rb +21 -27
  97. data/spec/lib/events/here_now_spec.rb +14 -20
  98. data/spec/lib/events/history_spec.rb +14 -20
  99. data/spec/lib/events/leave_spec.rb +14 -20
  100. data/spec/lib/events/presence_delta_spec.rb +15 -16
  101. data/spec/lib/events/presence_spec.rb +36 -45
  102. data/spec/lib/events/publish_spec.rb +33 -40
  103. data/spec/lib/events/revoke_spec.rb +16 -22
  104. data/spec/lib/events/state_spec.rb +16 -22
  105. data/spec/lib/events/subscribe_spec.rb +75 -85
  106. data/spec/lib/events/time_spec.rb +12 -18
  107. data/spec/lib/events/timeout_handling_spec.rb +8 -14
  108. data/spec/lib/events/where_now_spec.rb +14 -20
  109. data/spec/lib/keep_alive_spec.rb +4 -8
  110. data/spec/lib/multiple_ciphers_spec.rb +56 -60
  111. data/spec/lib/pubnub_spec.rb +10 -13
  112. data/spec/lib/signatures_spec.rb +118 -120
  113. data/spec/lib/ssl_error_spec.rb +14 -18
  114. data/spec/lib/super_admin_spec.rb +58 -66
  115. data/spec/lib/uuid_spec.rb +3 -4
  116. data/spec/spec_expectations.rb +3 -3
  117. data/spec/spec_helper.rb +29 -46
  118. metadata +52 -22
  119. data/lib/pubnub/message.rb +0 -43
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7e55bed6bd3c1a29dc97660dc20e4cef5baa4f2f
4
- data.tar.gz: 4b4e5da9700ee2f655d4275e49b309caa802feb4
3
+ metadata.gz: 88b73fbc6592b489fa25a48028c0d6b80b4c0b70
4
+ data.tar.gz: 4e9a790b61303e81badf79e9c02651138029e329
5
5
  SHA512:
6
- metadata.gz: c3a74e72ac3690ee6c1fd4868ccce50999d1b1ba1fa04766f6fdd5d8af5c66f2dff787654ed5f020321f23c805fbfdd0b8e8b8b4460e8aa60c23409a74f9469a
7
- data.tar.gz: dc0df48da9f9f37d0cca3e72ff49668310f241d5a6921d2030e01f153d4d826c0c72bfa4e10f0906a4978e07e6c6f3d40dd943bbd8fdf0a3ae040e135b951d34
6
+ metadata.gz: a43bcb6b9c28dc29523832cf90f03b4da53260a389c871de888958d405d6e1077a8b1c5af3db9103f546e4b4575b0d0037dcf1645283693abac470348705a6a2
7
+ data.tar.gz: f7fefe6f2e4db1f86652dbac011bc3a47b5ddda8ce132fc72db88a85a02d649403a4d830280ea50be8c05d272793a541c592fe6e7861d631c82f5a8e25793acd
@@ -1,6 +1,13 @@
1
1
  ---
2
- version: "4.0.27"
2
+ version: "4.0.28"
3
3
  changelog:
4
+ -
5
+ changes:
6
+ -
7
+ text: "Switch from Celluloid to concurrent-ruby."
8
+ type: bugfix
9
+ date: 28-08-2018
10
+ version: "4.0.28"
4
11
  -
5
12
  changes:
6
13
  -
@@ -2,18 +2,24 @@ AllCops:
2
2
  Exclude:
3
3
  - 'spec/**/*'
4
4
  - 'examples/**/*'
5
+ - 'lib/pubnub/crypto.rb'
6
+ - 'lib/pubnub/format.rb'
7
+
5
8
 
6
9
  Metrics/ClassLength:
7
10
  Max: 150
8
11
 
9
12
  Metrics/LineLength:
10
- Max: 120
13
+ Max: 150
11
14
 
12
15
  Metrics/AbcSize:
13
16
  Max: 30
14
17
 
15
18
  Metrics/MethodLength:
16
- Max: 15
19
+ Max: 35
17
20
 
18
21
  Metrics/PerceivedComplexity:
19
- Max: 10
22
+ Max: 10
23
+
24
+ Metrics/CyclomaticComplexity:
25
+ Enabled: false
@@ -1,7 +1,6 @@
1
1
  sudo: false
2
2
  language: ruby
3
3
  addons:
4
- srcclr: true
5
4
  code_climate:
6
5
  repo_token: 48739096f72763cbed9bd407efd2ed33151ce5663fb3181455128f06d6123ef3
7
6
 
@@ -14,27 +13,15 @@ bundler_args: --without development
14
13
 
15
14
  script: bundle exec rspec
16
15
 
17
- gemfile:
18
- - gemfiles/celluloid_017.gemfile
19
- - gemfiles/celluloid_018.gemfile
20
- - gemfiles/celluloid_master.gemfile
21
-
22
16
  rvm:
23
- - 2.4.1
24
- - 2.3.4
25
- - 2.2.7
17
+ - 2.5.1
18
+ - 2.4.4
19
+ - 2.3.7
20
+ - 2.2.10
26
21
 
27
22
  matrix:
28
23
  include:
29
- - rvm: jruby-9.1.13.0
30
- env: JRUBY_OPTS="--server -J-Xms1500m -J-Xmx1500m -J-XX:+UseConcMarkSweepGC -J-XX:-UseGCOverheadLimit -J-XX:+CMSClassUnloadingEnabled"
31
- jdk: oraclejdk8
32
- gemfile: gemfiles/celluloid_017.gemfile
33
- - rvm: jruby-9.1.13.0
24
+ - rvm: jruby-head
34
25
  env: JRUBY_OPTS="--server -J-Xms1500m -J-Xmx1500m -J-XX:+UseConcMarkSweepGC -J-XX:-UseGCOverheadLimit -J-XX:+CMSClassUnloadingEnabled"
35
26
  jdk: oraclejdk8
36
- gemfile: gemfiles/celluloid_018.gemfile
37
- - rvm: jruby-9.1.13.0
38
- env: JRUBY_OPTS="--server -J-Xms1500m -J-Xmx1500m -J-XX:+UseConcMarkSweepGC -J-XX:-UseGCOverheadLimit -J-XX:+CMSClassUnloadingEnabled"
39
- jdk: oraclejdk8
40
- gemfile: gemfiles/celluloid_master.gemfile
27
+
@@ -1,82 +1,86 @@
1
- ##### 4.0.25
2
- * Added Telemetry
3
-
4
- ##### 4.0.24
5
- * Added #delete_messages method
6
- * Improved timeout error handling (thanks @f1sherman)
7
-
8
- ##### 4.0.23
9
- * Fixed HereNow envelope generation
10
-
11
- ##### 4.0.22
12
- * Fixed signature generation and channel name escaping
13
-
14
- ##### 4.0.21
15
- * Fixed signature generation
16
-
17
- ##### 4.0.20
18
- * Allowing using multiple cipher keys
19
-
20
- ##### 4.0.19
21
- * Fixed sync subscribe.
22
-
23
- ##### 4.0.16
24
- * Fixed missing channel group parameter in Leave event
25
-
26
- ##### 4.0.15
27
- * Fixed PAM signature when some special characters are present
28
-
29
- ##### 4.0.13
30
- * Changed init message log level to debug
31
- * Added ttl parameter for publish
32
-
33
- ##### 4.0.12
34
- * Added alert on catchup failure (REQUEST_MESSAGE_COUNT_EXCEEDED)
35
-
36
- ##### 4.0.11
37
- * Added super admin mode (Enabled when secret key is set on Pubnub::Client init)
38
-
39
- ##### 4.0.10
40
- * Better single events timeout handling
41
- * DRYed envelope formatting a bit
42
-
43
- ##### 4.0.9
44
- * Removed json dependency
45
- * Updated dependecies
46
-
47
- ##### 4.0.8
48
- * Updated dry-validation
49
- * Dropped support for ruby 2.0
50
-
51
- ##### 4.0.7
52
- * Added message decrypting in history
53
-
54
- ##### 4.0.6
55
- * channel and channels are the same argument
56
- * channel_group and channel_groups are the same argument
57
- * added `with_presence` flag for subscibe, default false.
58
-
59
- ##### 4.0.5
60
- * Required CGI
61
-
62
- ##### 4.0.2
63
- * Added #subscribe_filter for client
64
-
65
- ##### 4.0.1
66
- * Updated dry-validation and EnvelopeSchema
67
-
68
- ##### 4.0.0
69
- * Removed auth_key and uuid setters (#set_auth_key, #auth_key=, #set_uuid, #uuid=)
70
- * Added #subscribed_to, #current_region, #region=, #current_heartbeat
71
-
72
- ##### 3.8.3
73
- * Restored auth_key and uuid setters. Important notice: they will be removed in v4 of this library.
74
-
75
- ##### 3.8.2
76
- * Added :include_token parameter to history call.
77
-
78
- ##### 3.8.1
79
- * Updated celluloid dependency.
80
-
81
- ##### 3.8.0
82
- * Release of celluloid version of pubnub gem. It's complete rewrite but public API doesn't change.
1
+ ##### 4.0.28
2
+ * Added Concurrent-ruby Gem
3
+ * Removed Celluloid
4
+
5
+ ##### 4.0.25
6
+ * Added Telemetry
7
+
8
+ ##### 4.0.24
9
+ * Added #delete_messages method
10
+ * Improved timeout error handling (thanks @f1sherman)
11
+
12
+ ##### 4.0.23
13
+ * Fixed HereNow envelope generation
14
+
15
+ ##### 4.0.22
16
+ * Fixed signature generation and channel name escaping
17
+
18
+ ##### 4.0.21
19
+ * Fixed signature generation
20
+
21
+ ##### 4.0.20
22
+ * Allowing using multiple cipher keys
23
+
24
+ ##### 4.0.19
25
+ * Fixed sync subscribe.
26
+
27
+ ##### 4.0.16
28
+ * Fixed missing channel group parameter in Leave event
29
+
30
+ ##### 4.0.15
31
+ * Fixed PAM signature when some special characters are present
32
+
33
+ ##### 4.0.13
34
+ * Changed init message log level to debug
35
+ * Added ttl parameter for publish
36
+
37
+ ##### 4.0.12
38
+ * Added alert on catchup failure (REQUEST_MESSAGE_COUNT_EXCEEDED)
39
+
40
+ ##### 4.0.11
41
+ * Added super admin mode (Enabled when secret key is set on Pubnub::Client init)
42
+
43
+ ##### 4.0.10
44
+ * Better single events timeout handling
45
+ * DRYed envelope formatting a bit
46
+
47
+ ##### 4.0.9
48
+ * Removed json dependency
49
+ * Updated dependecies
50
+
51
+ ##### 4.0.8
52
+ * Updated dry-validation
53
+ * Dropped support for ruby 2.0
54
+
55
+ ##### 4.0.7
56
+ * Added message decrypting in history
57
+
58
+ ##### 4.0.6
59
+ * channel and channels are the same argument
60
+ * channel_group and channel_groups are the same argument
61
+ * added `with_presence` flag for subscibe, default false.
62
+
63
+ ##### 4.0.5
64
+ * Required CGI
65
+
66
+ ##### 4.0.2
67
+ * Added #subscribe_filter for client
68
+
69
+ ##### 4.0.1
70
+ * Updated dry-validation and EnvelopeSchema
71
+
72
+ ##### 4.0.0
73
+ * Removed auth_key and uuid setters (#set_auth_key, #auth_key=, #set_uuid, #uuid=)
74
+ * Added #subscribed_to, #current_region, #region=, #current_heartbeat
75
+
76
+ ##### 3.8.3
77
+ * Restored auth_key and uuid setters. Important notice: they will be removed in v4 of this library.
78
+
79
+ ##### 3.8.2
80
+ * Added :include_token parameter to history call.
81
+
82
+ ##### 3.8.1
83
+ * Updated celluloid dependency.
84
+
85
+ ##### 3.8.0
86
+ * Release of celluloid version of pubnub gem. It's complete rewrite but public API doesn't change.
data/Gemfile CHANGED
@@ -3,17 +3,19 @@ source 'https://rubygems.org'
3
3
  gemspec
4
4
 
5
5
  group :test do
6
- gem 'rubocop'
7
- gem 'simplecov', '>= 0.12', require: false
8
6
  gem 'codacy-coverage', require: false
7
+ gem 'rr'
9
8
  gem 'rspec'
10
- gem 'rspec-wait'
9
+ gem 'rspec-retry'
10
+ gem 'rubocop'
11
+ gem 'simplecov', '>= 0.12', require: false
11
12
  gem 'vcr'
12
- gem 'rr'
13
13
  gem 'webmock'
14
14
  end
15
15
 
16
16
  group :development, :test do
17
- gem 'pry'
18
17
  gem 'awesome_print'
18
+ gem 'pry'
19
+ gem 'pry-rescue'
20
+ gem 'pry-stack_explorer'
19
21
  end
@@ -1,157 +1,155 @@
1
- PATH
2
- remote: .
3
- specs:
4
- pubnub (4.0.25)
5
- celluloid (~> 0.17)
6
- dry-validation (~> 0.10)
7
- httpclient (~> 2.8, >= 2.8.3)
8
- json (>= 1.8, < 3)
9
-
10
- GEM
11
- remote: https://rubygems.org/
12
- specs:
13
- addressable (2.5.2)
14
- public_suffix (>= 2.0.2, < 4.0)
15
- ast (2.3.0)
16
- awesome_print (1.8.0)
17
- celluloid (0.17.3)
18
- celluloid-essentials
19
- celluloid-extras
20
- celluloid-fsm
21
- celluloid-pool
22
- celluloid-supervision
23
- timers (>= 4.1.1)
24
- celluloid-essentials (0.20.5)
25
- timers (>= 4.1.1)
26
- celluloid-extras (0.20.5)
27
- timers (>= 4.1.1)
28
- celluloid-fsm (0.20.5)
29
- timers (>= 4.1.1)
30
- celluloid-pool (0.20.5)
31
- timers (>= 4.1.1)
32
- celluloid-supervision (0.20.6)
33
- timers (>= 4.1.1)
34
- codacy-coverage (1.1.7)
35
- simplecov
36
- coderay (1.1.2)
37
- concurrent-ruby (1.0.5)
38
- concurrent-ruby (1.0.5-java)
39
- crack (0.4.3)
40
- safe_yaml (~> 1.0.0)
41
- diff-lcs (1.3)
42
- docile (1.1.5)
43
- dry-configurable (0.7.0)
44
- concurrent-ruby (~> 1.0)
45
- dry-container (0.6.0)
46
- concurrent-ruby (~> 1.0)
47
- dry-configurable (~> 0.1, >= 0.1.3)
48
- dry-core (0.3.3)
49
- concurrent-ruby (~> 1.0)
50
- dry-equalizer (0.2.0)
51
- dry-logic (0.4.1)
52
- dry-container (~> 0.2, >= 0.2.6)
53
- dry-core (~> 0.2)
54
- dry-equalizer (~> 0.2)
55
- dry-types (0.11.1)
56
- concurrent-ruby (~> 1.0)
57
- dry-configurable (~> 0.1)
58
- dry-container (~> 0.3)
59
- dry-core (~> 0.2, >= 0.2.1)
60
- dry-equalizer (~> 0.2)
61
- dry-logic (~> 0.4, >= 0.4.0)
62
- inflecto (~> 0.0.0, >= 0.0.2)
63
- dry-validation (0.11.0)
64
- concurrent-ruby (~> 1.0)
65
- dry-configurable (~> 0.1, >= 0.1.3)
66
- dry-core (~> 0.2, >= 0.2.1)
67
- dry-equalizer (~> 0.2)
68
- dry-logic (~> 0.4, >= 0.4.0)
69
- dry-types (~> 0.11.0)
70
- ffi (1.9.18-java)
71
- hashdiff (0.3.6)
72
- hitimes (1.2.6)
73
- hitimes (1.2.6-java)
74
- httpclient (2.8.3)
75
- inflecto (0.0.2)
76
- json (2.1.0)
77
- json (2.1.0-java)
78
- method_source (0.8.2)
79
- parallel (1.12.0)
80
- parser (2.4.0.0)
81
- ast (~> 2.2)
82
- powerpack (0.1.1)
83
- pry (0.10.4)
84
- coderay (~> 1.1.0)
85
- method_source (~> 0.8.1)
86
- slop (~> 3.4)
87
- pry (0.10.4-java)
88
- coderay (~> 1.1.0)
89
- method_source (~> 0.8.1)
90
- slop (~> 3.4)
91
- spoon (~> 0.0)
92
- public_suffix (3.0.0)
93
- rainbow (2.2.2)
94
- rake
95
- rake (12.1.0)
96
- rr (1.2.1)
97
- rspec (3.6.0)
98
- rspec-core (~> 3.6.0)
99
- rspec-expectations (~> 3.6.0)
100
- rspec-mocks (~> 3.6.0)
101
- rspec-core (3.6.0)
102
- rspec-support (~> 3.6.0)
103
- rspec-expectations (3.6.0)
104
- diff-lcs (>= 1.2.0, < 2.0)
105
- rspec-support (~> 3.6.0)
106
- rspec-mocks (3.6.0)
107
- diff-lcs (>= 1.2.0, < 2.0)
108
- rspec-support (~> 3.6.0)
109
- rspec-support (3.6.0)
110
- rspec-wait (0.0.9)
111
- rspec (>= 3, < 4)
112
- rubocop (0.49.1)
113
- parallel (~> 1.10)
114
- parser (>= 2.3.3.1, < 3.0)
115
- powerpack (~> 0.1)
116
- rainbow (>= 1.99.1, < 3.0)
117
- ruby-progressbar (~> 1.7)
118
- unicode-display_width (~> 1.0, >= 1.0.1)
119
- ruby-progressbar (1.8.1)
120
- safe_yaml (1.0.4)
121
- simplecov (0.15.1)
122
- docile (~> 1.1.0)
123
- json (>= 1.8, < 3)
124
- simplecov-html (~> 0.10.0)
125
- simplecov-html (0.10.2)
126
- slop (3.6.0)
127
- spoon (0.0.6)
128
- ffi
129
- timers (4.1.2)
130
- hitimes
131
- unicode-display_width (1.3.0)
132
- vcr (3.0.3)
133
- webmock (3.0.1)
134
- addressable (>= 2.3.6)
135
- crack (>= 0.3.2)
136
- hashdiff
137
-
138
- PLATFORMS
139
- java
140
- ruby
141
-
142
- DEPENDENCIES
143
- awesome_print
144
- bundler (~> 1.7)
145
- codacy-coverage
146
- pry
147
- pubnub!
148
- rr
149
- rspec
150
- rspec-wait
151
- rubocop
152
- simplecov (>= 0.12)
153
- vcr
154
- webmock
155
-
156
- BUNDLED WITH
157
- 1.15.4
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ pubnub (4.0.28)
5
+ concurrent-ruby (~> 1.0.5)
6
+ concurrent-ruby-edge (~> 0.3.1)
7
+ dry-validation (~> 0.10)
8
+ httpclient (~> 2.8, >= 2.8.3)
9
+ json (>= 1.8, < 3)
10
+ timers (>= 4.1.1)
11
+
12
+ GEM
13
+ remote: https://rubygems.org/
14
+ specs:
15
+ addressable (2.5.2)
16
+ public_suffix (>= 2.0.2, < 4.0)
17
+ ast (2.4.0)
18
+ awesome_print (1.8.0)
19
+ binding_of_caller (0.8.0)
20
+ debug_inspector (>= 0.0.1)
21
+ codacy-coverage (1.1.8)
22
+ simplecov
23
+ coderay (1.1.2)
24
+ concurrent-ruby (1.0.5)
25
+ concurrent-ruby (1.0.5-java)
26
+ concurrent-ruby-edge (0.3.1)
27
+ concurrent-ruby (= 1.0.5)
28
+ crack (0.4.3)
29
+ safe_yaml (~> 1.0.0)
30
+ debug_inspector (0.0.3)
31
+ diff-lcs (1.3)
32
+ docile (1.3.1)
33
+ dry-configurable (0.7.0)
34
+ concurrent-ruby (~> 1.0)
35
+ dry-container (0.6.0)
36
+ concurrent-ruby (~> 1.0)
37
+ dry-configurable (~> 0.1, >= 0.1.3)
38
+ dry-core (0.4.6)
39
+ concurrent-ruby (~> 1.0)
40
+ dry-equalizer (0.2.1)
41
+ dry-inflector (0.1.2)
42
+ dry-logic (0.4.2)
43
+ dry-container (~> 0.2, >= 0.2.6)
44
+ dry-core (~> 0.2)
45
+ dry-equalizer (~> 0.2)
46
+ dry-types (0.13.2)
47
+ concurrent-ruby (~> 1.0)
48
+ dry-container (~> 0.3)
49
+ dry-core (~> 0.4, >= 0.4.4)
50
+ dry-equalizer (~> 0.2)
51
+ dry-inflector (~> 0.1, >= 0.1.2)
52
+ dry-logic (~> 0.4, >= 0.4.2)
53
+ dry-validation (0.12.0)
54
+ concurrent-ruby (~> 1.0)
55
+ dry-configurable (~> 0.1, >= 0.1.3)
56
+ dry-core (~> 0.2, >= 0.2.1)
57
+ dry-equalizer (~> 0.2)
58
+ dry-logic (~> 0.4, >= 0.4.0)
59
+ dry-types (~> 0.13.1)
60
+ ffi (1.9.25-java)
61
+ hashdiff (0.3.7)
62
+ hitimes (1.3.0)
63
+ hitimes (1.3.0-java)
64
+ hitimes (1.3.0-x64-mingw32)
65
+ httpclient (2.8.3)
66
+ interception (0.5)
67
+ jaro_winkler (1.5.1)
68
+ jaro_winkler (1.5.1-java)
69
+ json (2.1.0)
70
+ json (2.1.0-java)
71
+ method_source (0.9.0)
72
+ parallel (1.12.1)
73
+ parser (2.5.1.0)
74
+ ast (~> 2.4.0)
75
+ powerpack (0.1.2)
76
+ pry (0.11.3)
77
+ coderay (~> 1.1.0)
78
+ method_source (~> 0.9.0)
79
+ pry (0.11.3-java)
80
+ coderay (~> 1.1.0)
81
+ method_source (~> 0.9.0)
82
+ spoon (~> 0.0)
83
+ pry-rescue (1.4.5)
84
+ interception (>= 0.5)
85
+ pry
86
+ pry-stack_explorer (0.4.9.2)
87
+ binding_of_caller (>= 0.7)
88
+ pry (>= 0.9.11)
89
+ public_suffix (3.0.2)
90
+ rainbow (3.0.0)
91
+ rr (1.2.1)
92
+ rspec (3.7.0)
93
+ rspec-core (~> 3.7.0)
94
+ rspec-expectations (~> 3.7.0)
95
+ rspec-mocks (~> 3.7.0)
96
+ rspec-core (3.7.1)
97
+ rspec-support (~> 3.7.0)
98
+ rspec-expectations (3.7.0)
99
+ diff-lcs (>= 1.2.0, < 2.0)
100
+ rspec-support (~> 3.7.0)
101
+ rspec-mocks (3.7.0)
102
+ diff-lcs (>= 1.2.0, < 2.0)
103
+ rspec-support (~> 3.7.0)
104
+ rspec-retry (0.6.1)
105
+ rspec-core (> 3.3)
106
+ rspec-support (3.7.1)
107
+ rubocop (0.57.2)
108
+ jaro_winkler (~> 1.5.1)
109
+ parallel (~> 1.10)
110
+ parser (>= 2.5)
111
+ powerpack (~> 0.1)
112
+ rainbow (>= 2.2.2, < 4.0)
113
+ ruby-progressbar (~> 1.7)
114
+ unicode-display_width (~> 1.0, >= 1.0.1)
115
+ ruby-progressbar (1.9.0)
116
+ safe_yaml (1.0.4)
117
+ simplecov (0.16.1)
118
+ docile (~> 1.1)
119
+ json (>= 1.8, < 3)
120
+ simplecov-html (~> 0.10.0)
121
+ simplecov-html (0.10.2)
122
+ spoon (0.0.6)
123
+ ffi
124
+ timers (4.1.2)
125
+ hitimes
126
+ unicode-display_width (1.4.0)
127
+ vcr (4.0.0)
128
+ webmock (3.4.2)
129
+ addressable (>= 2.3.6)
130
+ crack (>= 0.3.2)
131
+ hashdiff
132
+
133
+ PLATFORMS
134
+ java
135
+ ruby
136
+ x64-mingw32
137
+
138
+ DEPENDENCIES
139
+ awesome_print
140
+ bundler (~> 1.7)
141
+ codacy-coverage
142
+ pry
143
+ pry-rescue
144
+ pry-stack_explorer
145
+ pubnub!
146
+ rr
147
+ rspec
148
+ rspec-retry
149
+ rubocop
150
+ simplecov (>= 0.12)
151
+ vcr
152
+ webmock
153
+
154
+ BUNDLED WITH
155
+ 1.16.2