class OAuth::Signature::PLAINTEXT
Public Instance Methods
==(other)
click to toggle source
# File lib/oauth/signature/plaintext.rb 14 def ==(other) 15 signature.to_s == other.to_s 16 end
body_hash()
click to toggle source
# File lib/oauth/signature/plaintext.rb 22 def body_hash 23 nil 24 end
signature()
click to toggle source
# File lib/oauth/signature/plaintext.rb 10 def signature 11 signature_base_string 12 end
signature_base_string()
click to toggle source
# File lib/oauth/signature/plaintext.rb 18 def signature_base_string 19 secret 20 end