Changeset 16509
- Timestamp:
- 07/25/08 23:13:32 (5 years ago)
- Location:
- lang/perl/String-FlexMatch/trunk
- Files:
-
- 6 modified
-
Changes (modified) (1 diff)
-
MANIFEST (modified) (1 diff)
-
MANIFEST.SKIP (modified) (2 diffs)
-
Makefile.PL (modified) (1 diff)
-
lib/String/FlexMatch.pm (modified) (2 diffs)
-
lib/String/FlexMatch/Test.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/String-FlexMatch/trunk/Changes
r16374 r16509 1 1 Revision history for Perl extension String-FlexMatch 2 3 0.13 Thu Jul 25 15:27:43 CEST 2008 (Marcel Gruenauer <marcel@cpan.org>) 4 - Changed dist style and Changes back to standard. People didn't like it - 5 the nail that sticks out gets hammered down. 6 - Added standard test files; this will also help with CPANTS. 2 7 3 8 0.12 Thu, 29 May 2008 12:07:50 -0000 (Marcel Gruenauer <marcel@cpan.org>) -
lang/perl/String-FlexMatch/trunk/MANIFEST
r16374 r16509 9 9 inc/Module/Install/Makefile.pm 10 10 inc/Module/Install/Metadata.pm 11 inc/Module/Install/StandardTests.pm12 inc/Module/Install/Template.pm13 11 inc/Module/Install/Win32.pm 14 12 inc/Module/Install/WriteAll.pm 15 13 inc/Test/Compile.pm 16 14 inc/Test/More.pm 17 inc/UNIVERSAL/require.pm18 15 inc/YAML.pm 19 16 lib/String/FlexMatch.pm -
lang/perl/String-FlexMatch/trunk/MANIFEST.SKIP
r9807 r16509 10 10 ^Build$ 11 11 ^blib/ 12 ^pm_to_blib/ 12 13 ^_build/ 13 14 ^MakeMaker-\d … … 27 28 \.old$ 28 29 \.swp$ 30 \.tar$ 31 \.tar\.gz$ 29 32 ^#.*#$ 30 33 ^\.# -
lang/perl/String-FlexMatch/trunk/Makefile.PL
r9807 r16509 8 8 requires 'Class::Accessor::Complex' => '0.12'; 9 9 10 build_requires 'Test::More' => '0.70';11 build_requires 'YAML' => '0.65';10 recommends 'Test::Pod'; 11 recommends 'Test::Pod::Coverage'; 12 12 13 process_templates( 14 first_year => 2004, 15 rest_from => "$ENV{HOME}/.mitlib/standard_pod", 16 start_tag => '{%', 17 end_tag => '%}', 18 ); 13 test_requires 'Test::More' => '0.70'; 14 test_requires 'YAML' => '0.65'; 15 test_requires 'Test::Compile'; 19 16 20 use_standard_tests(without => 'pod_coverage');21 17 auto_install; 22 18 auto_include; -
lang/perl/String-FlexMatch/trunk/lib/String/FlexMatch.pm
r9807 r16509 154 154 __END__ 155 155 156 {% USE p = PodGenerated %} 156 157 157 158 158 =head1 NAME … … 230 230 =over 4 231 231 232 {% p.write_methods %} 232 =item new 233 234 my $obj = String::FlexMatch->new; 235 my $obj = String::FlexMatch->new(%args); 236 237 Creates and returns a new object. The constructor will accept as arguments a 238 list of pairs, from component name to initial value. For each pair, the named 239 component is initialized by calling the method of the same name with the given 240 value. If called with a single hash reference, it is dereferenced and its 241 key/value pairs are set as described before. 233 242 234 243 =back 235 244 236 {% p.write_inheritance %} 237 238 {% PROCESS standard_pod %} 245 String::FlexMatch inherits from L<Class::Accessor::Complex>. 246 247 The superclass L<Class::Accessor::Complex> defines these methods and 248 functions: 249 250 mk_abstract_accessors(), mk_array_accessors(), mk_boolean_accessors(), 251 mk_class_array_accessors(), mk_class_hash_accessors(), 252 mk_class_scalar_accessors(), mk_concat_accessors(), 253 mk_forward_accessors(), mk_hash_accessors(), mk_integer_accessors(), 254 mk_new(), mk_object_accessors(), mk_scalar_accessors(), 255 mk_set_accessors(), mk_singleton() 256 257 The superclass L<Class::Accessor> defines these methods and functions: 258 259 _carp(), _croak(), _mk_accessors(), accessor_name_for(), 260 best_practice_accessor_name_for(), best_practice_mutator_name_for(), 261 follow_best_practice(), get(), make_accessor(), make_ro_accessor(), 262 make_wo_accessor(), mk_accessors(), mk_ro_accessors(), 263 mk_wo_accessors(), mutator_name_for(), set() 264 265 The superclass L<Class::Accessor::Installer> defines these methods and 266 functions: 267 268 install_accessor() 269 270 =head1 BUGS AND LIMITATIONS 271 272 No bugs have been reported. 273 274 Please report any bugs or feature requests through the web interface at 275 L<http://rt.cpan.org>. 276 277 =head1 INSTALLATION 278 279 See perlmodinstall for information and options on installing Perl modules. 280 281 =head1 AVAILABILITY 282 283 The latest version of this module is available from the Comprehensive Perl 284 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 285 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 286 287 =head1 AUTHORS 288 289 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 290 291 =head1 COPYRIGHT AND LICENSE 292 293 Copyright 2004-2008 by the authors. 294 295 This library is free software; you can redistribute it and/or modify 296 it under the same terms as Perl itself. 297 239 298 240 299 =cut -
lang/perl/String-FlexMatch/trunk/lib/String/FlexMatch/Test.pm
r9807 r16509 237 237 __END__ 238 238 239 {% USE p = PodGenerated %} 239 240 240 241 241 =head1 NAME 242 242 243 {% p.package %}- test methods that can handle flexible strings243 String::FlexMatch::Test - test methods that can handle flexible strings 244 244 245 245 =head1 SYNOPSIS 246 246 247 {% p.package %}->new;247 String::FlexMatch::Test->new; 248 248 249 249 =head1 DESCRIPTION … … 251 251 None yet. 252 252 253 {% PROCESS standard_pod %} 253 =head1 BUGS AND LIMITATIONS 254 255 No bugs have been reported. 256 257 Please report any bugs or feature requests through the web interface at 258 L<http://rt.cpan.org>. 259 260 =head1 INSTALLATION 261 262 See perlmodinstall for information and options on installing Perl modules. 263 264 =head1 AVAILABILITY 265 266 The latest version of this module is available from the Comprehensive Perl 267 Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 268 site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 269 270 =head1 AUTHORS 271 272 Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 273 274 =head1 COPYRIGHT AND LICENSE 275 276 Copyright 2004-2008 by the authors. 277 278 This library is free software; you can redistribute it and/or modify 279 it under the same terms as Perl itself. 280 254 281 255 282 =cut
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)