format code
This commit is contained in:
parent
87a150ddf4
commit
8a78fce180
@ -6,7 +6,7 @@ require "./mechanize/errors/*"
|
|||||||
|
|
||||||
# This class is main class of Mechanize.cr,
|
# This class is main class of Mechanize.cr,
|
||||||
# using this class' instance to start web interaction.
|
# using this class' instance to start web interaction.
|
||||||
#
|
#
|
||||||
# now only supports GET, POST. other HTTP methods will be implemented soon...
|
# now only supports GET, POST. other HTTP methods will be implemented soon...
|
||||||
#
|
#
|
||||||
# Examples:
|
# Examples:
|
||||||
@ -15,16 +15,16 @@ require "./mechanize/errors/*"
|
|||||||
# # GET
|
# # GET
|
||||||
# agent = Mechanize.new
|
# agent = Mechanize.new
|
||||||
# agent.get("http://example.com",
|
# agent.get("http://example.com",
|
||||||
# params: {"foo" => "bar"},
|
# params: {"foo" => "bar"},
|
||||||
# headers: HTTP::Headers{"Foo" => "Bar"})
|
# headers: HTTP::Headers{"Foo" => "Bar"})
|
||||||
# ```
|
# ```
|
||||||
#
|
#
|
||||||
# ```
|
# ```
|
||||||
# # POST
|
# # POST
|
||||||
# # sending post request whose post body is "foo=bar"
|
# # sending post request whose post body is "foo=bar"
|
||||||
# agent = Mechanize.new
|
# agent = Mechanize.new
|
||||||
# agent.post("http://example.com",
|
# agent.post("http://example.com",
|
||||||
# query: {"foo" => "bar"})
|
# query: {"foo" => "bar"})
|
||||||
# ```
|
# ```
|
||||||
class Mechanize
|
class Mechanize
|
||||||
VERSION = "0.2.0"
|
VERSION = "0.2.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user