diff --git a/CHANGELOG.md b/CHANGELOG.md index b8897c5..417fc7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/lib/pusher.rb b/lib/pusher.rb index 314dba2..0c269ff 100644 --- a/lib/pusher.rb +++ b/lib/pusher.rb @@ -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= diff --git a/lib/pusher/version.rb b/lib/pusher/version.rb index 036872e..cd359c4 100644 --- a/lib/pusher/version.rb +++ b/lib/pusher/version.rb @@ -1,3 +1,3 @@ module Pusher - VERSION = '2.0.1' + VERSION = '2.0.2' end