wepay-signer 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/wepay-signer.rb +5 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7fb015fc3d4cfc62eb41ce3f68a0f4ace00ee16
|
4
|
+
data.tar.gz: 22678ac26cade5b4353f816aa567523061eecdc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b52be0c5370302dbe9a9c0268d38e8f64a6d24940f6e2341624a8432dfd7fd40f3100f4fc743b9467ea30830844515202ecacb6c956bc41170b9948f256194b
|
7
|
+
data.tar.gz: 17fa08190200b1f718a497e0a8a01e2f768c2d5b60fac7e9fdd0bd2f6728bc0bdc4b36453869a33c3101eb4828d8e4d009f64dda19336e815258beada289f4ce
|
data/lib/wepay-signer.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
##
|
2
|
-
# Copyright (c) 2015 WePay.
|
2
|
+
# Copyright (c) 2015-2016 WePay.
|
3
3
|
#
|
4
4
|
# Based on a stripped-down version of the AWS Signature v4 implementation.
|
5
5
|
#
|
@@ -84,6 +84,8 @@ module WePay
|
|
84
84
|
##
|
85
85
|
# Signs and generates the query string URL parameters to use when making a request.
|
86
86
|
#
|
87
|
+
# If the `client_secret` key is provided, then it will be automatically excluded from the result.
|
88
|
+
#
|
87
89
|
# @param payload [Hash] The data to generate a signature for.
|
88
90
|
# @option payload [required, String] token The one-time-use token.
|
89
91
|
# @option payload [required, String] page The WePay URL to access.
|
@@ -91,6 +93,8 @@ module WePay
|
|
91
93
|
# @return [String] The query string parameters to append to the end of a URL.
|
92
94
|
##
|
93
95
|
def generate_query_string_params(payload)
|
96
|
+
payload.delete(:client_secret) if payload.has_key? :client_secret
|
97
|
+
|
94
98
|
signed_token = sign(payload)
|
95
99
|
payload[:client_id] = @client_id
|
96
100
|
payload[:stoken] = signed_token
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wepay-signer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- WePay
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A Modern Ruby SDK for signing WePay requests.
|
14
14
|
email: api@wepay.com
|
@@ -37,7 +37,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
37
37
|
version: '0'
|
38
38
|
requirements: []
|
39
39
|
rubyforge_project:
|
40
|
-
rubygems_version: 2.
|
40
|
+
rubygems_version: 2.5.1
|
41
41
|
signing_key:
|
42
42
|
specification_version: 4
|
43
43
|
summary: WePay Signer for Ruby
|