Skip to content

Commit 8c068c1

Browse files
committed
Converts dist to Dist::Zilla.
1 parent 2d45cf5 commit 8c068c1

File tree

17 files changed

+994
-256
lines changed

17 files changed

+994
-256
lines changed

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
.*
2+
HTTP-Cookies-*
13
Makefile
24
Makefile.old
5+
SSL
36
blib
47
pm_to_blib
5-
SSL
68
t/CAN_TALK_TO_OURSELF
7-
t/live/ENABLED
89
*.tar.gz
10+
t/live/ENABLED
911
xx*

Changes

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1-
_______________________________________________________________________________
2-
2012-02-15 HTTP-Cookies 6.01
1+
Revision history for HTTP-Cookies. The HTTP::Cookies module used to be bundled
2+
with the libwww-perl distribution.
33

4-
Restore 5.8.1 compatiblity.
4+
{{$NEXT}}
55

6+
6.01 2012-02-15
7+
- Restore 5.8.1 compatiblity.
68

7-
8-
_______________________________________________________________________________
9-
2011-02-27 HTTP-Cookies 6.00
10-
11-
Initial release of HTTP-Cookies as a separate distribution. There are no code
12-
changes besides incrementing the version number since libwww-perl-5.837.
13-
14-
The HTTP::Cookies module used to be bundled with the libwww-perl distribution.
9+
6.00 2011-02-27
10+
- Initial release of HTTP-Cookies as a separate distribution. There are no
11+
code changes besides incrementing the version number since
12+
libwww-perl-5.837.

Install

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
This is the Perl distribution HTTP-Cookies.
2+
3+
Installing HTTP-Cookies is straightforward.
4+
5+
## Installation with cpanm
6+
7+
If you have cpanm, you only need one line:
8+
9+
% cpanm HTTP::Cookies
10+
11+
If it does not have permission to install modules to the current perl, cpanm
12+
will automatically set up and install to a local::lib in your home directory.
13+
See the local::lib documentation (https://metacpan.org/pod/local::lib) for
14+
details on enabling it in your environment.
15+
16+
## Installing with the CPAN shell
17+
18+
Alternatively, if your CPAN shell is set up, you should just be able to do:
19+
20+
% cpan HTTP::Cookies
21+
22+
## Manual installation
23+
24+
As a last resort, you can manually install it. Download the tarball, untar it,
25+
then build it:
26+
27+
% perl Makefile.PL
28+
% make && make test
29+
30+
Then install it:
31+
32+
% make install
33+
34+
If your perl is system-managed, you can create a local::lib in your home
35+
directory to install modules to. For details, see the local::lib documentation:
36+
https://metacpan.org/pod/local::lib
37+
38+
## Documentation
39+
40+
HTTP-Cookies documentation is available as POD.
41+
You can run perldoc from a shell to read the documentation:
42+
43+
% perldoc HTTP::Cookies

0 commit comments

Comments
 (0)