Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

has description => qq/Generate ".gitignore".\n/;
has usage => "usage: $0 generate gitignore\n";
# "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
pm_to_blib
Makefile*
!Makefile.PL
MANIFEST*
!MANIFEST.SKIP
*META.*
__END__
=head1 NAME
Mojolicious::Command::generate::gitignore - Gitignore generator command
=head1 SYNOPSIS
use Mojolicious::Command::generate::gitignore;
my $gitignore = Mojolicious::Command::generate::gitignore->new;
$gitignore->run(@ARGV);
=head1 DESCRIPTION
L<Mojolicious::Command::generate::gitignore> is a C<.gitignore> generator.
=head1 ATTRIBUTES
L<Mojolicious::Command::generate::gitignore> inherits all attributes from
L<Mojo::Command> and implements the following new ones.
=head2 C<description>
my $description = $gitignore->description;
$gitignore = $gitignore->description('Foo!');
Short description of this command, used for the command list.
=head2 C<usage>
my $usage = $gitignore->usage;
$gitignore = $gitignore->usage('Foo!');
Usage information for this command, used for the help screen.
=head1 METHODS
L<Mojolicious::Command::generate::gitignore> inherits all methods from
L<Mojo::Command> and implements the following new ones.
=head2 C<run>
$gitignore->run(@ARGV);
Run this command.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
=cut