Skip to content

Commit

Permalink
request_with_http_request was removed at 4 years ago!
Browse files Browse the repository at this point in the history
  • Loading branch information
tokuhirom committed Apr 27, 2014
1 parent be5853f commit 218e6f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ Loads proxy settings from `$ENV{HTTP_PROXY}` and `$ENV{NO_PROXY}`.
my $cookies = HTTP::Cookies->new();
my $req = HTTP::Request->new(...);
$cookies->add_cookie_header($req);
my $res = H$f->request_with_http_request($req)->as_http_response;
my $res = $f->request($req)->as_http_response;
$res->request($req);
$cookies->extract_cookies($res);
# and use $res.
Expand Down
4 changes: 2 additions & 2 deletions lib/Furl.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use Furl::HTTP;
use Furl::Request;
use Furl::Response;
use Carp ();
our $VERSION = '3.02';
our $VERSION = '3.03';

use 5.008001;

Expand Down Expand Up @@ -353,7 +353,7 @@ Furl does not directly support the cookie_jar option available in LWP. You can u
my $cookies = HTTP::Cookies->new();
my $req = HTTP::Request->new(...);
$cookies->add_cookie_header($req);
my $res = H$f->request_with_http_request($req)->as_http_response;
my $res = $f->request($req)->as_http_response;
$res->request($req);
$cookies->extract_cookies($res);
# and use $res.
Expand Down
2 changes: 1 addition & 1 deletion lib/Furl/HTTP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;
use base qw/Exporter/;
use 5.008001;

our $VERSION = '3.02';
our $VERSION = '3.03';

use Carp ();
use Furl::ConnectionCache;
Expand Down

0 comments on commit 218e6f6

Please sign in to comment.