• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H19-Jan-2021-8540

lib/Business/H19-Jan-2021-1,162463

scripts/H19-Jan-2021-10584

t/H19-Jan-2021-912636

xt/H19-Jan-2021-54

ChangesH A D19-Jan-20218.4 KiB262206

INSTALL.SKIPH A D19-Jan-2021110 75

LICENSEH A D19-Jan-20217.8 KiB178135

MANIFESTH A D19-Jan-2021705 3938

MANIFEST.SKIPH A D19-Jan-20211.2 KiB8254

META.jsonH A D19-Jan-20211.4 KiB5958

META.ymlH A D19-Jan-2021824 3029

Makefile.PLH A D19-Jan-20212.6 KiB11384

README.podH A D19-Jan-20213.8 KiB12276

README.pod

1=pod
2
3=encoding utf8
4
5=for HTML <a href="../../actions?query=workflow%3Amacos"><img src="../../workflows/macos/badge.svg"></a>
6
7=for HTML <a href="../../actions?query=workflow%3Aubuntu"><img src="../../workflows/ubuntu/badge.svg"></a>
8
9=for HTML <a href="../../actions?query=workflow%3Awindows"><img src="../../workflows/windows/badge.svg"></a>
10
11=for HTML <a href="https://ci.appveyor.com/project/briandfoy/business-isbn"><img src="https://ci.appveyor.com/api/projects/status/5hg1t2oa4lr46462?svg=true"></a>
12
13=for HTML <a href='https://coveralls.io/github/briandfoy/business-isbn?branch=master'><img src='https://coveralls.io/repos/github/briandfoy/business-isbn/badge.svg?branch=master' alt='Coverage Status' /></a>
14
15=for HTML <a href="https://github.com/briandfoy/Business-ISBN/blob/master/LICENSE"><img src="https://img.shields.io/cpan/l/Business-ISBN.svg" /></a>
16
17=for HTML <a href="https://metacpan.org/pod/Business::ISBN"><img src="https://img.shields.io/cpan/v/Business-ISBN.svg" /></A>
18
19=head1 The Business::ISBN module
20
21This is the I<README> for the L<Business::ISBN> Perl module, which
22handles International Standard Book Numbers.
23
24You're probably looking at this because you don't know where else to
25find what you're looking for. Read this once and you might never have
26to read one again for any Perl module.
27
28=head2 Documentation
29
30To read about L<Business::ISBN>, look at the embedded documentation
31in the module itself. Inside the distribution, you can format it
32with L<perldoc|https://perldoc.perl.orgperldoc.html>:
33
34	% perldoc lib/Business/ISBN.pm
35
36If you have already installed the module, you can specify the module
37name instead of the file location:
38
39	% perldoc Business::ISBN
40
41You can read the documentation and inspect the meta data at
42L<MetaCPAN|https://metacpan.org/pod/Business::ISBN>.
43
44The standard module documentation has example uses in the SYNOPSIS
45section, but you can also look in the I<examples/> directory (if it's
46there), or look at the test files in I<t/>.
47
48=head2 Installation
49
50You can install this module with a CPAN client, which will resolve
51and install the dependencies:
52
53	% cpan Business::ISBN
54	% cpanm Business::ISBN
55
56You can also install directly from the distribution directory, which
57will also install the dependencies:
58
59	% cpan .
60	% cpanm .
61
62You could install just this module manually:
63
64	% perl Makefile.PL
65	% make
66	% make test
67	% make install
68
69You probably don't want to do that unless you're fiddling with the
70module and only want to run the tests without installing anything.
71
72=head2 Source location
73
74The meta data, such as the source repository and bug tracker, is in
75I<Makefile.PL> or the I<META.*> files it creates. You can find that on
76those CPAN web interfaces, but you can also look at files directly in
77the source repository:
78
79=over 4
80
81=item *	L<https://github.com/briandfoy/business-isbn>
82
83=back
84
85If you find a problem, file a ticket in the L<issue
86tracker|https://github.com/briandfoy/business-isbn/issues>:
87
88=over 4
89
90=item *	L<https://github.com/briandfoy/business-isbn/issues>
91
92=back
93
94=head2 Getting help
95
96Although I'm happy to hear from module users in private email,
97that's the best way for me to forget to do something.
98
99Besides the issue trackers, you can find help at
100L<Perlmonks|http://www.perlmonks.org> or
101L<Stackoverflow|http://www.stackoverflow.com>, both of which have many
102competent Perlers who can answer your question, almost in real time.
103They might not know the particulars of this module, but they can help
104you diagnose your problem.
105
106You might like to read L<brian's Guide to Solving Any Perl
107Problem|https://briandfoy.github.io/brians-guide-to-solving-any-perl-problem/>.
108
109=head2 Copyright and License
110
111You should have received a I<LICENSE> file, but the license is also noted
112in the module files. About the only thing you can't do is pretend that
113you wrote code that you didn't.
114
115=head2 Good luck!
116
117Enjoy,
118
119brian d foy, bdfoy@cpan.org
120
121=cut
122