package App::GitGot::Command::update; { $App::GitGot::Command::update::VERSION = '1.04'; } BEGIN { $App::GitGot::Command::update::AUTHORITY = 'cpan:GENEHACK'; } # ABSTRACT: update managed repositories use Mouse; extends 'App::GitGot::Command'; use 5.010; sub command_names { qw/ update up / } sub _execute { my ( $self, $opt, $args ) = @_; $self->_update( $self->active_repos ); } __PACKAGE__->meta->make_immutable; 1; __END__ =pod =head1 NAME App::GitGot::Command::update - update managed repositories =head1 VERSION version 1.04 =head1 AUTHOR John SJ Anderson =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2010 by John SJ Anderson. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut