Skip to content

Commit 60def76

Browse files
author
Chris White
committed
Updated documentation; bumped version to 0.3.2
1 parent 818671d commit 60def76

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,18 @@ PerlPP runs in two passes: it generates a Perl script from your input, and then
1010
it runs the generated script. If you see `error at (eval ##)`
1111
(for some number `##`), it means there was an error in the generated script.
1212

13+
Installation
14+
------------
15+
16+
Easy way #1: `cpanm Text::PerlPP`
17+
(using [cpanminus](https://metacpan.org/pod/App::cpanminus).
18+
19+
Easy way #2: copy the `perlpp` file from the
20+
[latest release](https://github.com/interpreters/perlpp/releases/latest)
21+
into a directory in your `PATH`, and `chmod a+x perlpp`.
22+
23+
For development or more information, see the other [README](README).
24+
1325
Usage
1426
-----
1527

lib/Text/PerlPP.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
package Text::PerlPP;
55

6-
our $VERSION = '0.3.2_1';
6+
our $VERSION = '0.3.2';
77

88
use 5.010001;
99
use strict;
@@ -701,7 +701,7 @@ Text::PerlPP - Perl preprocessor: process Perl code within any text file
701701
702702
You can pass any array reference to C<Main()>. The array you provide
703703
may be modified by PerlPP. See L</README.md> or the documentation
704-
for L</bin/perlpp> for details of the options and input format.
704+
for L<perlpp> for details of the options and input format.
705705
706706
=head1 BUGS
707707

0 commit comments

Comments
 (0)