module Avataree::Helper::MonkeyPatches::MonkeyHash

Public Instance Methods

to_param() click to toggle source

monkey patch for hash

# File lib/avataree/helper.rb, line 74
def to_param
  self.collect{|k,v| "#{k}=#{v}"}.join("&")
end