sailthru 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.1.2
@@ -344,7 +344,7 @@ module Sailthru
344
344
  # String, an MD5 hash of the secret + sorted list of parameter values for an API call.
345
345
  def self.get_signature_hash(params, secret)
346
346
  string = secret + self.extract_param_values(params).sort_by{|x| x.to_s}.join("")
347
- MD5.md5(string) # debuggin
347
+ Digest::MD5.hexdigest(string) # debuggin
348
348
  end
349
349
 
350
350
  end
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{sailthru}
3
- s.version = "1.1.1"
3
+ s.version = "1.1.2"
4
4
 
5
5
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
6
6
  s.authors = ["Ian Enders"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sailthru
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 1
10
- version: 1.1.1
9
+ - 2
10
+ version: 1.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ian Enders