# Copyright 2013-2014 Stefan Goebel. # # This file is part of Newcomen. # # Newcomen is free software: you can redistribute it and/or modify it under the terms of the GNU # General Public License as published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # Newcomen is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even # the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General # Public License for more details. # # You should have received a copy of the GNU General Public License along with Newcomen. If not, see # . package Newcomen::Role::Attribute::Crawler; our $VERSION = 2014052501; use namespace::autoclean; use Moose::Role; with 'Newcomen::Role::Attribute::Component' => { 'component' => 'Crawler' }; 1; __END__ #################################################################################################### =head1 NAME Newcomen::Role::Attribute::Crawler - Moose role for easy crawler access. =head1 SYNOPSIS # In the consuming class: with 'Newcomen::Role::Attribute::Core'; with 'Newcomen::Role::Attribute::Crawler'; # Then _crawler() is available: my $crawler = $self -> _crawler (); =head1 DESCRIPTION I adds the I<_crawler> attribute to the consuming class. This may be used to access the L instance (as a getter: L<_crawler()|/_crawler>). It may be used by any class that requires access to it. Note that this role requires a I<_core()> method to be available, which must return the global core (L) instance. Consuming the role L is the easiest way to satisfy this requirement. This has to be done before consuming the crawler role, see the L above. =head1 INSTANCE METHODS Note that these methods are available in the consuming class, I is just a L role. =head2 _crawler my $crawler = $self -> _crawler (); Returns the L instance (as provided by L's I method). =head1 MISCELLANEOUS This role also defines the method I<_build_crawler()>, the builder for the I<_crawler> attribute. Do not use this name for anything in the consuming class. The builder is lazy, i.e. the attribute will be initialized on first access. The attribute will be read only, and it may not be set using the constructor. =head1 SEE ALSO L, L, L, L =head1 VERSION This is version C<2014052501>. =head1 AUTHOR Stefan Goebel - newcomen {at} subtype {dot} de =head1 COPYRIGHT AND LICENSE Copyright 2013-2014 Stefan Goebel. This file is part of Newcomen. Newcomen is free software: you can redistribute it and/or modify it under the terms of the L as published by the L, either version 3 of the license, or (at your option) any later version. Newcomen is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the L for more details. You should have received a copy of the L along with Newcomen. If not, see >. =cut #################################################################################################### # :indentSize=3:tabSize=3:noTabs=true:mode=perl:maxLineLen=100: