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