Mojolicious::Command::Generate::Gitignore - Gitignore Generator Command


Mojolicious documentation Contained in the Mojolicious distribution.

Index


Code Index:

NAME

Top

Mojolicious::Command::Generate::Gitignore - Gitignore Generator Command

SYNOPSIS

Top

  use Mojolicious::Command::Generate::Gitignore;

  my $gitignore = Mojolicious::Command::Generate::Gitignore->new;
  $gitignore->run(@ARGV);

DESCRIPTION

Top

Mojolicious::Command::Generate::Gitignore is a .gitignore generator.

ATTRIBUTES

Top

Mojolicious::Command::Generate::Gitignore inherits all attributes from Mojo::Command and implements the following new ones.

description

  my $description = $gitignore->description;
  $gitignore      = $gitignore->description('Foo!');

Short description of this command, used for the command list.

usage

  my $usage  = $gitignore->usage;
  $gitignore = $gitignore->usage('Foo!');

Usage information for this command, used for the help screen.

METHODS

Top

Mojolicious::Command::Generate::Gitignore inherits all methods from Mojo::Command and implements the following new ones.

run

  $gitignore = $gitignore->run(@ARGV);

Run this command.

SEE ALSO

Top

Mojolicious, Mojolicious::Guides, http://mojolicio.us.


Mojolicious documentation Contained in the Mojolicious distribution.

package Mojolicious::Command::Generate::Gitignore;
use Mojo::Base 'Mojo::Command';

has description => <<'EOF';
Generate ".gitignore".
EOF
has usage => <<"EOF";
usage: $0 generate gitignore
EOF

# "I want to see the edge of the universe.
#  Ooh, that sounds cool.
#  It's funny, you live in the universe, but you never get to do this things
#  until someone comes to visit."
sub run {
  my $self = shift;
  $self->render_to_rel_file('gitignore', '.gitignore');
  $self->chmod_file('.gitignore', 0644);
}

1;
__DATA__
@@ gitignore
.*
!.gitignore
!.perltidyrc
*~
blib
Makefile*
!Makefile.PL
*META.yml
MANIFEST*
!MANIFEST.SKIP
pm_to_blib
__END__