App-Slaughter

 view release on metacpan or  search on metacpan

lib/Slaughter/Transport/hg.pm  view on Meta::CPAN

a way as to offer a Mercurial-based transport.

All the implementation, except for the setup of some variables, comes from that
base class.

=cut

=head1 IMPLEMENTATION

The following values are set in the L</_init> method:

=over 8

=item cmd_clone

This is set to "C<hg clone>".

=item cmd_update

This is set to "C<hg pull --update>".

=item cmd_version

This is set to "C<hg --version>".

=item name

This is set to "C<hg>".

=back

=cut


use strict;
use warnings;



package Slaughter::Transport::hg;

#
# The version of our release.
#
our $VERSION = "3.0.6";


use parent 'Slaughter::Transport::revisionControl';



=head2 new

Create a new instance of this object.

=cut

sub new
{
    my ( $class, %args ) = @_;
    return $class->SUPER::new(%args);
}


=head2 _init

Initialiaze this object, by setting up the Mercurical-specific commands, etc.

=cut

sub _init
{
    my ($self) = (@_);

    #
    # The name of our derived transport.
    #
    $self->{ 'name' } = "hg";

    #
    #  The command to invoke the version of our revision control system.
    # Used to test that it is installed.
    #
    $self->{ 'cmd_version' } = "hg --version";

    #
    # The command to clone our remote repository.
    #
    $self->{ 'cmd_clone' } = "hg clone";
    $self->{ 'cmd_clone' } .= " $self->{'transportargs'} "
      if ( $self->{ 'transportargs' } );
    $self->{ 'cmd_clone' } .= " #SRC# #DST#";


    #
    #  The command to update our repository - NOT USED
    #
    $self->{ 'cmd_update' } = "hg pull --update";

}



1;


=head1 AUTHOR

Steve Kemp <steve@steve.org.uk>

=cut

=head1 LICENSE

Copyright (c) 2010-2015 by Steve Kemp.  All rights reserved.

This module is free software;
you can redistribute it and/or modify it under
the same terms as Perl itself.
The LICENSE file contains the full text of the license.



( run in 3.207 seconds using v1.01-cache-2.11-cpan-97f6503c9c8 )