Class: PostData
Instance Method Summary collapse
- #[]=(key, value) ⇒ Object
- #to_post_data ⇒ Object (also: #to_s)
Instance Method Details
#[]=(key, value) ⇒ Object
7 8 9 10 |
# File 'lib/active_shipping/lib/post_data.rb', line 7 def []=(key, value) return if value.blank? && !required?(key) super end |
#to_post_data ⇒ Object Also known as: to_s
12 13 14 |
# File 'lib/active_shipping/lib/post_data.rb', line 12 def to_post_data collect { |key, value| "#{key}=#{CGI.escape(value.to_s)}" }.join("&") end |