Skip to content

Commit

Permalink
Merge pull request #178 from pusher/develop
Browse files Browse the repository at this point in the history
added encryption_master_key_base64 getter and setter to the Pusher de…
  • Loading branch information
Jon Elverkilde authored Sep 3, 2021
2 parents b81f297 + eba45dd commit 08af7fb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.0.2

* [CHANGED] made encryption_master_key_base64 globally configurable

## 2.0.1

* [CHANGED] Only include lib and essential docs in gem.
Expand Down
6 changes: 4 additions & 2 deletions lib/pusher.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ class HTTPError < Error; attr_accessor :original_error; end
class << self
extend Forwardable

def_delegators :default_client, :scheme, :host, :port, :app_id, :key, :secret, :http_proxy
def_delegators :default_client, :scheme=, :host=, :port=, :app_id=, :key=, :secret=, :http_proxy=
def_delegators :default_client, :scheme, :host, :port, :app_id, :key,
:secret, :http_proxy, :encryption_master_key_base64
def_delegators :default_client, :scheme=, :host=, :port=, :app_id=, :key=,
:secret=, :http_proxy=, :encryption_master_key_base64=

def_delegators :default_client, :authentication_token, :url, :cluster
def_delegators :default_client, :encrypted=, :url=, :cluster=
Expand Down
2 changes: 1 addition & 1 deletion lib/pusher/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Pusher
VERSION = '2.0.1'
VERSION = '2.0.2'
end

0 comments on commit 08af7fb

Please sign in to comment.