Skip to content
This repository has been archived by the owner on Feb 9, 2022. It is now read-only.

Commit

Permalink
Merge pull request pubnub#89 from dominik-qsd/develop
Browse files Browse the repository at this point in the history
Remove sec keys from tests
  • Loading branch information
qsoftdevelopment authored May 31, 2019
2 parents 7ad985b + b0b2196 commit b2056d7
Show file tree
Hide file tree
Showing 15 changed files with 27 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: "4.1.2"
version: "4.1.3"
changelog:
-
changes:
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ addons:

before_install:
# See https://github.com/travis-ci/travis-ci/issues/5861
- gem update --system
- gem install bundler
- gem update bundler

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
pubnub (4.1.2)
pubnub (4.1.3)
concurrent-ruby (~> 1.0.5)
concurrent-ruby-edge (~> 0.3.1)
dry-validation (~> 0.10)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
4.1.2
4.1.3

2 changes: 1 addition & 1 deletion lib/pubnub/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Toplevel Pubnub module.
module Pubnub
VERSION = '4.1.2'.freeze
VERSION = '4.1.3'.freeze
end
2 changes: 1 addition & 1 deletion spec/examples/audit_examples_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@pubnub = Pubnub.new(
publish_key: "pub-a-mock-key",
subscribe_key: "sub-a-mock-key",
secret_key: "sec-c-OWIyYmVlYWYtYWMxMS00OTcxLTlhZDAtZDBlYTM4ODE1MWUy",
secret_key: "sec-a-mock-key",
uuid: "ruby-test-uuid-client-one",
auth_key: "ruby-test-auth-client-one",
)
Expand Down
2 changes: 1 addition & 1 deletion spec/examples/grant_examples_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@pubnub = Pubnub.new(
publish_key: "pub-a-mock-key",
subscribe_key: "sub-a-mock-key",
secret_key: "sec-c-OWIyYmVlYWYtYWMxMS00OTcxLTlhZDAtZDBlYTM4ODE1MWUy",
secret_key: "sec-a-mock-key",
uuid: "ruby-test-uuid-client-one",
auth_key: "ruby-test-auth-client-one",
)
Expand Down
2 changes: 1 addition & 1 deletion spec/examples/revoke_examples_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@pubnub = Pubnub.new(
publish_key: "pub-a-mock-key",
subscribe_key: "sub-a-mock-key",
secret_key: "sec-c-OWIyYmVlYWYtYWMxMS00OTcxLTlhZDAtZDBlYTM4ODE1MWUy",
secret_key: "sec-a-mock-key",
uuid: "ruby-test-uuid-client-one",
auth_key: "ruby-test-auth-client-one",
)
Expand Down
2 changes: 1 addition & 1 deletion spec/lib/custom_retries_examples_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-MTQyMzhjZGUtNTJiYi00MDU0LThkZWQtZDRmMGUwZDk4NjQz",
secret_key: "sec-a-mock-key",
uuid: "ruby-test-client",
)
end
Expand Down
2 changes: 1 addition & 1 deletion spec/lib/events/audit_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@pubnub = Pubnub::Client.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OWIyYmVlYWYtYWMxMS00OTcxLTlhZDAtZDBlYTM4ODE1MWUy",
secret_key: "sec-a-mock-key",
auth_key: "ruby-test-auth",
uuid: "ruby-test-uuid",
)
Expand Down
2 changes: 1 addition & 1 deletion spec/lib/events/grant_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Pubnub::Client.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OWIyYmVlYWYtYWMxMS00OTcxLTlhZDAtZDBlYTM4ODE1MWUy",
secret_key: "sec-a-mock-key",
auth_key: "ruby-test-auth",
uuid: "ruby-test-uuid",
)
Expand Down
2 changes: 1 addition & 1 deletion spec/lib/events/revoke_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@pubnub = Pubnub::Client.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OWIyYmVlYWYtYWMxMS00OTcxLTlhZDAtZDBlYTM4ODE1MWUy",
secret_key: "sec-a-mock-key",
auth_key: "ruby-test-auth",
uuid: "ruby-test-uuid",
)
Expand Down
26 changes: 13 additions & 13 deletions spec/lib/signatures_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OTMzNmViNGEtYjg0MS00ZTZkLWI5ZmMtNDYzMDA0NTBlMDdi",
secret_key: "sec-a-mock-key",
uuid: "test",
)

Expand All @@ -29,7 +29,7 @@
pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OTMzNmViNGEtYjg0MS00ZTZkLWI5ZmMtNDYzMDA0NTBlMDdi",
secret_key: "sec-a-mock-key",
uuid: "test",
)

Expand All @@ -47,7 +47,7 @@
pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OTMzNmViNGEtYjg0MS00ZTZkLWI5ZmMtNDYzMDA0NTBlMDdi",
secret_key: "sec-a-mock-key",
uuid: "test",
)

Expand All @@ -65,7 +65,7 @@
pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OTMzNmViNGEtYjg0MS00ZTZkLWI5ZmMtNDYzMDA0NTBlMDdi",
secret_key: "sec-a-mock-key",
uuid: "test",
)

Expand All @@ -82,7 +82,7 @@
pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OTMzNmViNGEtYjg0MS00ZTZkLWI5ZmMtNDYzMDA0NTBlMDdi",
secret_key: "sec-a-mock-key",
uuid: "test",
)

Expand All @@ -99,7 +99,7 @@
pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OTMzNmViNGEtYjg0MS00ZTZkLWI5ZmMtNDYzMDA0NTBlMDdi",
secret_key: "sec-a-mock-key",
uuid: "test",
)

Expand All @@ -116,7 +116,7 @@
pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OTMzNmViNGEtYjg0MS00ZTZkLWI5ZmMtNDYzMDA0NTBlMDdi",
secret_key: "sec-a-mock-key",
uuid: "test",
)

Expand All @@ -133,7 +133,7 @@
pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OTMzNmViNGEtYjg0MS00ZTZkLWI5ZmMtNDYzMDA0NTBlMDdi",
secret_key: "sec-a-mock-key",
uuid: "test",
)

Expand All @@ -150,7 +150,7 @@
pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OTMzNmViNGEtYjg0MS00ZTZkLWI5ZmMtNDYzMDA0NTBlMDdi",
secret_key: "sec-a-mock-key",
uuid: "test",
)

Expand All @@ -165,7 +165,7 @@
pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OTMzNmViNGEtYjg0MS00ZTZkLWI5ZmMtNDYzMDA0NTBlMDdi",
secret_key: "sec-a-mock-key",
uuid: "test",
)
pubnub.env[:no_telemetry] = true
Expand Down Expand Up @@ -215,7 +215,7 @@
pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OTMzNmViNGEtYjg0MS00ZTZkLWI5ZmMtNDYzMDA0NTBlMDdi",
secret_key: "sec-a-mock-key",
uuid: "test",
)

Expand All @@ -232,7 +232,7 @@
pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OTMzNmViNGEtYjg0MS00ZTZkLWI5ZmMtNDYzMDA0NTBlMDdi",
secret_key: "sec-a-mock-key",
uuid: 'a!@#$%^&()ŻÓŁ[]{}""<>??~`Z',
)
pubnub.env[:no_telemetry] = true
Expand All @@ -258,7 +258,7 @@
pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-OTMzNmViNGEtYjg0MS00ZTZkLWI5ZmMtNDYzMDA0NTBlMDdi",
secret_key: "sec-a-mock-key",
uuid: "test",
)

Expand Down
2 changes: 1 addition & 1 deletion spec/lib/ssl_error_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-MjZkYmQyMDUtYmRhZi00ZDY3LThjZGQtNjU2NmNjNmJkODM3",
secret_key: "sec-a-mock-key",
uuid: "ruby-test",
reconnect_interval: 0,
ssl: true,
Expand Down
2 changes: 1 addition & 1 deletion spec/lib/super_admin_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
@pubnub = Pubnub.new(
subscribe_key: "sub-a-mock-key",
publish_key: "pub-a-mock-key",
secret_key: "sec-c-MjZkYmQyMDUtYmRhZi00ZDY3LThjZGQtNjU2NmNjNmJkODM3",
secret_key: "sec-a-mock-key",
uuid: "ruby-test",
reconnect_interval: 0,
)
Expand Down

0 comments on commit b2056d7

Please sign in to comment.