Returns the destination encoding name as a string.
Returns the destination encoding name as a string.
offline mode. read name=value pairs on standard input.
Sets the request body to a URL-encoded string derived from argument params
, and sets request header field 'Content-Type'
to 'application/x-www-form-urlencoded'
.
The resulting request is suitable for HTTP
request POST
or PUT
.
Argument params
must be suitable for use as argument enum
to URI.encode_www_form
.
With only argument params
given, sets the body to a URL-encoded string with the default separator '&'
:
req = Net::HTTP::Post.new('example.com') req.set_form_data(q: 'ruby', lang: 'en') req.body # => "q=ruby&lang=en" req['Content-Type'] # => "application/x-www-form-urlencoded" req.set_form_data([['q', 'ruby'], ['lang', 'en']]) req.body # => "q=ruby&lang=en" req.set_form_data(q: ['ruby', 'perl'], lang: 'en') req.body # => "q=ruby&q=perl&lang=en" req.set_form_data([['q', 'ruby'], ['q', 'perl'], ['lang', 'en']]) req.body # => "q=ruby&q=perl&lang=en"
With string argument sep
also given, uses that string as the separator:
req.set_form_data({q: 'ruby', lang: 'en'}, '|') req.body # => "q=ruby|lang=en"
Net::HTTPHeader#form_data=
is an alias for Net::HTTPHeader#set_form_data
.
A convenience method, like object_group
, but also reformats the Object’s object_id.
Create a new CapturePatternNode
node.
Create a new ConstantPathNode
node.
Create a new ConstantTargetNode
node.
Create a new ConstantWriteNode
node.
Create a new EmbeddedStatementsNode
node.
Create a new ForwardingArgumentsNode
node.
Create a new ForwardingParameterNode
node.
Create a new ForwardingSuperNode
node.
Create a new InterpolatedStringNode
node.
Create a new InterpolatedXStringNode
node.
Create a new KeywordHashNode
node.
Create a new MatchPredicateNode
node.
Create a new NumberedParametersNode
node.
Create a new PinnedExpressionNode
node.
Create a new PostExecutionNode
node.
Create a new PreExecutionNode
node.
Create a new RescueModifierNode
node.
Create a new SingletonClassNode
node.