summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJay Mundrawala <jdmundrawala@gmail.com>2015-11-10 12:40:26 -0800
committerJay Mundrawala <jdmundrawala@gmail.com>2015-11-10 12:41:19 -0800
commit93d555012c0ac0e53ec672fda610a114953c37ce (patch)
tree899c86145b87f76d3f711535cd836b389424bc6d /lib
parente0f434d9b42263ac0bf69a9291b0ad3af7ef663c (diff)
downloadmixlib-authentication-93d555012c0ac0e53ec672fda610a114953c37ce.tar.gz
Get tests to run
Diffstat (limited to 'lib')
-rw-r--r--lib/mixlib/authentication/signedheaderauth.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/mixlib/authentication/signedheaderauth.rb b/lib/mixlib/authentication/signedheaderauth.rb
index f37471d..85a31d4 100644
--- a/lib/mixlib/authentication/signedheaderauth.rb
+++ b/lib/mixlib/authentication/signedheaderauth.rb
@@ -65,7 +65,14 @@ module Mixlib
# These parameters are accepted but not used in the computation of the signature.
# * `:host`: The host part of the URI
def self.signing_object(args={ })
- SigningObject.new(args[:http_method], args[:path], args[:body], args[:host], args[:timestamp], args[:user_id], args[:file], args[:proto_version])
+ SigningObject.new(args[:http_method],
+ args[:path],
+ args[:body],
+ args[:host],
+ args[:timestamp],
+ args[:user_id],
+ args[:file],
+ args[:proto_version])
end
def algorithm