sailthru 1.1.1 → 1.1.2
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/VERSION +1 -1
- data/lib/sailthru/triggermail_client.rb +1 -1
- data/sailthru.gemspec +1 -1
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
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.
|
347
|
+
Digest::MD5.hexdigest(string) # debuggin
|
348
348
|
end
|
349
349
|
|
350
350
|
end
|
data/sailthru.gemspec
CHANGED
metadata
CHANGED