Class: Multipart::StringParam
- Inherits:
-
Object
- Object
- Multipart::StringParam
- Defined in:
- lib/it_tools/multipart.rb
Overview
Formats a basic string key/value pair for inclusion with a multipart post
Instance Attribute Summary collapse
-
#k ⇒ Object
Returns the value of attribute k.
-
#v ⇒ Object
Returns the value of attribute v.
Instance Method Summary collapse
-
#initialize(k, v) ⇒ StringParam
constructor
A new instance of StringParam.
- #to_multipart ⇒ Object
Constructor Details
#initialize(k, v) ⇒ StringParam
Returns a new instance of StringParam.
50 51 52 53 |
# File 'lib/it_tools/multipart.rb', line 50 def initialize(k, v) @k = k @v = v end |
Instance Attribute Details
#k ⇒ Object
Returns the value of attribute k.
49 50 51 |
# File 'lib/it_tools/multipart.rb', line 49 def k @k end |
#v ⇒ Object
Returns the value of attribute v.
49 50 51 |
# File 'lib/it_tools/multipart.rb', line 49 def v @v end |
Instance Method Details
#to_multipart ⇒ Object
54 55 56 |
# File 'lib/it_tools/multipart.rb', line 54 def to_multipart return "Content-Disposition: form-data; name=\"#{CGI::escape(k)}\"\r\n\r\n#{v}\r\n" end |