1Games::Solitaire::VerifUys:e:rBaCsoen(t3r)ibuted Perl DoGcaummeesn:t:aStoilointaire::Verify::Base(3)
2
3
4
6 Games::Solitaire::Verify::Base - a base class.
7
9 version 0.2403
10
12 use parent 'Games::Solitaire::Verify::Base';
13
14 sub _init
15 {
16 my ($self, $args) = @_;
17
18 $self->address($args->{address});
19
20 if (!exists($args->{name}))
21 {
22 die "No name - no cry.";
23 }
24
25 return;
26 }
27
29 This is the base class for Games::Solitaire::Verify classes.
30 Everything is subject to change.
31
33 new($args)
34 The constructor. Blesses and calls _init() .
35
36 __PACKAGE__->mk_accessors(qw(method1 method2 method3))
37 Equivalent to Class::Accessor's mk_accessors only using
38 Class::XSAccessor. It beats running an ugly script on my code, and can
39 be done at run-time.
40
41 Gotta love dynamic languages like Perl 5.
42
43 __PACKAGE__->mk_acc_ref([qw(method1 method2 method3)])
44 Creates the accessors in the array-ref of names at run-time.
45
47 Websites
48 The following websites have more information about this module, and may
49 be of help to you. As always, in addition to those websites please use
50 your favorite search engine to discover more resources.
51
52 • MetaCPAN
53
54 A modern, open-source CPAN search engine, useful to view POD in
55 HTML format.
56
57 <https://metacpan.org/release/Games-Solitaire-Verify>
58
59 • RT: CPAN's Bug Tracker
60
61 The RT ( Request Tracker ) website is the default bug/issue
62 tracking system for CPAN.
63
64 <https://rt.cpan.org/Public/Dist/Display.html?Name=Games-Solitaire-Verify>
65
66 • CPANTS
67
68 The CPANTS is a website that analyzes the Kwalitee ( code metrics )
69 of a distribution.
70
71 <http://cpants.cpanauthors.org/dist/Games-Solitaire-Verify>
72
73 • CPAN Testers
74
75 The CPAN Testers is a network of smoke testers who run automated
76 tests on uploaded CPAN distributions.
77
78 <http://www.cpantesters.org/distro/G/Games-Solitaire-Verify>
79
80 • CPAN Testers Matrix
81
82 The CPAN Testers Matrix is a website that provides a visual
83 overview of the test results for a distribution on various
84 Perls/platforms.
85
86 <http://matrix.cpantesters.org/?dist=Games-Solitaire-Verify>
87
88 • CPAN Testers Dependencies
89
90 The CPAN Testers Dependencies is a website that shows a chart of
91 the test results of all dependencies for a distribution.
92
93 <http://deps.cpantesters.org/?module=Games::Solitaire::Verify>
94
95 Bugs / Feature Requests
96 Please report any bugs or feature requests by email to
97 "bug-games-solitaire-verify at rt.cpan.org", or through the web
98 interface at
99 <https://rt.cpan.org/Public/Bug/Report.html?Queue=Games-Solitaire-Verify>.
100 You will be automatically notified of any progress on the request by
101 the system.
102
103 Source Code
104 The code is open to the world, and available for you to hack on. Please
105 feel free to browse it and play with it, or whatever. If you want to
106 contribute patches, please send me a diff or prod me to pull from your
107 repository :)
108
109 <https://github.com/shlomif/fc-solve>
110
111 git clone git://github.com/shlomif/fc-solve.git
112
114 Shlomi Fish <shlomif@cpan.org>
115
117 Please report any bugs or feature requests on the bugtracker website
118 <https://github.com/shlomif/fc-solve/issues>
119
120 When submitting a bug or request, please include a test-file or a patch
121 to an existing test-file that illustrates the bug or desired feature.
122
124 This software is Copyright (c) 2008 by Shlomi Fish.
125
126 This is free software, licensed under:
127
128 The MIT (X11) License
129
130
131
132perl v5.34.0 2022-01-21 Games::Solitaire::Verify::Base(3)