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.2202
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 Shlomi Fish <shlomif@cpan.org>
48
50 This software is Copyright (c) 2014 by Shlomi Fish.
51
52 This is free software, licensed under:
53
54 The MIT (X11) License
55
57 Please report any bugs or feature requests on the bugtracker website
58 <https://github.com/shlomif/fc-solve/issues>
59
60 When submitting a bug or request, please include a test-file or a patch
61 to an existing test-file that illustrates the bug or desired feature.
62
64 Perldoc
65 You can find documentation for this module with the perldoc command.
66
67 perldoc Games::Solitaire::Verify::Base
68
69 Websites
70 The following websites have more information about this module, and may
71 be of help to you. As always, in addition to those websites please use
72 your favorite search engine to discover more resources.
73
74 · MetaCPAN
75
76 A modern, open-source CPAN search engine, useful to view POD in
77 HTML format.
78
79 <https://metacpan.org/release/Games-Solitaire-Verify>
80
81 · Search CPAN
82
83 The default CPAN search engine, useful to view POD in HTML format.
84
85 <http://search.cpan.org/dist/Games-Solitaire-Verify>
86
87 · RT: CPAN's Bug Tracker
88
89 The RT ( Request Tracker ) website is the default bug/issue
90 tracking system for CPAN.
91
92 <https://rt.cpan.org/Public/Dist/Display.html?Name=Games-Solitaire-Verify>
93
94 · AnnoCPAN
95
96 The AnnoCPAN is a website that allows community annotations of Perl
97 module documentation.
98
99 <http://annocpan.org/dist/Games-Solitaire-Verify>
100
101 · CPAN Ratings
102
103 The CPAN Ratings is a website that allows community ratings and
104 reviews of Perl modules.
105
106 <http://cpanratings.perl.org/d/Games-Solitaire-Verify>
107
108 · CPANTS
109
110 The CPANTS is a website that analyzes the Kwalitee ( code metrics )
111 of a distribution.
112
113 <http://cpants.cpanauthors.org/dist/Games-Solitaire-Verify>
114
115 · CPAN Testers
116
117 The CPAN Testers is a network of smoke testers who run automated
118 tests on uploaded CPAN distributions.
119
120 <http://www.cpantesters.org/distro/G/Games-Solitaire-Verify>
121
122 · CPAN Testers Matrix
123
124 The CPAN Testers Matrix is a website that provides a visual
125 overview of the test results for a distribution on various
126 Perls/platforms.
127
128 <http://matrix.cpantesters.org/?dist=Games-Solitaire-Verify>
129
130 · CPAN Testers Dependencies
131
132 The CPAN Testers Dependencies is a website that shows a chart of
133 the test results of all dependencies for a distribution.
134
135 <http://deps.cpantesters.org/?module=Games::Solitaire::Verify>
136
137 Bugs / Feature Requests
138 Please report any bugs or feature requests by email to
139 "bug-games-solitaire-verify at rt.cpan.org", or through the web
140 interface at
141 <https://rt.cpan.org/Public/Bug/Report.html?Queue=Games-Solitaire-Verify>.
142 You will be automatically notified of any progress on the request by
143 the system.
144
145 Source Code
146 The code is open to the world, and available for you to hack on. Please
147 feel free to browse it and play with it, or whatever. If you want to
148 contribute patches, please send me a diff or prod me to pull from your
149 repository :)
150
151 <https://github.com/shlomif/fc-solve>
152
153 git clone git://github.com/shlomif/fc-solve.git
154
155
156
157perl v5.30.0 2019-07-26 Games::Solitaire::Verify::Base(3)