notarize 1.1 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/notarize.rb +1 -1
- data/lib/notarize/version.rb +1 -1
- metadata +3 -3
data/lib/notarize.rb
CHANGED
|
@@ -41,7 +41,7 @@ module Notarize
|
|
|
41
41
|
|
|
42
42
|
# For the service-side
|
|
43
43
|
def matching_signature?(params, private_key)
|
|
44
|
-
generate_signature(params, private_key) == params[:signature]
|
|
44
|
+
generate_signature(params, private_key) == (params[:signature] || params['signature'])
|
|
45
45
|
end
|
|
46
46
|
|
|
47
47
|
end
|
data/lib/notarize/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: notarize
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-05-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: httparty
|
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
version: '0'
|
|
76
76
|
requirements: []
|
|
77
77
|
rubyforge_project:
|
|
78
|
-
rubygems_version: 1.8.
|
|
78
|
+
rubygems_version: 1.8.23
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 3
|
|
81
81
|
summary: A simple library for generating signed http requests.
|