File Coverage

blib/lib/Finance/Bitcoin.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 27 27 100.0


line stmt bran cond sub pod time code
1             package Finance::Bitcoin;
2              
3             BEGIN {
4 1     1   29302 $Finance::Bitcoin::AUTHORITY = 'cpan:TOBYINK';
5 1         82 $Finance::Bitcoin::VERSION = '0.902';
6             }
7              
8 1     1   21 use 5.010;
  1         3  
  1         28  
9 1     1   4 use strict;
  1         2  
  1         32  
10 1     1   13 use warnings;
  1         1  
  1         33  
11              
12 1     1   520 use Finance::Bitcoin::API;
  1         4  
  1         32  
13 1     1   826 use Finance::Bitcoin::Wallet;
  1         4  
  1         28  
14 1     1   816 use Finance::Bitcoin::Address;
  1         4  
  1         51  
15              
16             1;
17              
18             __END__
19              
20             =head1 NAME
21              
22             Finance::Bitcoin - manage a bitcoin instance
23              
24             =head1 DESCRIPTION
25              
26             Bitcoin is a peer-to-peer network based digital currency.
27              
28             This module provides high and low level APIs for managing a running
29             bitcoin instance over JSON-RPC.
30              
31             =head1 BUGS
32              
33             Please report any bugs to L<http://rt.cpan.org/>.
34              
35             =head1 SEE ALSO
36              
37             L<Finance::Bitcoin::API>,
38             L<Finance::Bitcoin::Wallet>,
39             L<Finance::Bitcoin::Address>.
40              
41             L<http://www.bitcoin.org/>.
42              
43             =head1 AUTHOR
44              
45             Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
46              
47             =head1 COPYRIGHT
48              
49             Copyright 2010, 2011, 2013, 2014 Toby Inkster
50              
51             This library is free software; you can redistribute it and/or modify it
52             under the same terms as Perl itself.
53              
54             =head1 DISCLAIMER OF WARRANTIES
55              
56             THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
57             WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
58             MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.