Skip to content

Commit 08af7fb

Browse files
author
Jon Elverkilde
authored
Merge pull request #178 from pusher/develop
added encryption_master_key_base64 getter and setter to the Pusher de…
2 parents b81f297 + eba45dd commit 08af7fb

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.0.2
4+
5+
* [CHANGED] made encryption_master_key_base64 globally configurable
6+
37
## 2.0.1
48

59
* [CHANGED] Only include lib and essential docs in gem.

lib/pusher.rb

+4-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@ class HTTPError < Error; attr_accessor :original_error; end
2727
class << self
2828
extend Forwardable
2929

30-
def_delegators :default_client, :scheme, :host, :port, :app_id, :key, :secret, :http_proxy
31-
def_delegators :default_client, :scheme=, :host=, :port=, :app_id=, :key=, :secret=, :http_proxy=
30+
def_delegators :default_client, :scheme, :host, :port, :app_id, :key,
31+
:secret, :http_proxy, :encryption_master_key_base64
32+
def_delegators :default_client, :scheme=, :host=, :port=, :app_id=, :key=,
33+
:secret=, :http_proxy=, :encryption_master_key_base64=
3234

3335
def_delegators :default_client, :authentication_token, :url, :cluster
3436
def_delegators :default_client, :encrypted=, :url=, :cluster=

lib/pusher/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Pusher
2-
VERSION = '2.0.1'
2+
VERSION = '2.0.2'
33
end

0 commit comments

Comments
 (0)