1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
# Copyright (C) 2008-2010, Sebastian Riedel.
package Mojo::Command::Generate::App;
use strict;
use warnings;
use base 'Mojo::Command';
__PACKAGE__->attr(description => <<'EOF');
Generate application directory structure.
EOF
__PACKAGE__->attr(usage => <<"EOF");
usage: $0 generate app [NAME]
EOF
# Okay folks, show's over. Nothing to see here, show's... Oh my god!
# A horrible plane crash! Hey everybody, get a load of this flaming wreckage!
# Come on, crowd around, crowd around!
sub run {
my ($self, $class) = @_;
$class ||= 'MyMojoApp';
my $name = $self->class_to_file($class);
# Script
$self->render_to_rel_file('mojo', "$name/script/$name", $class);
$self->chmod_file("$name/script/$name", 0744);
# Appclass
my $path = $self->class_to_path($class);
$self->render_to_rel_file('appclass', "$name/lib/$path", $class);
# Test
$self->render_to_rel_file('test', "$name/t/basic.t", $class);
# Log
$self->create_rel_dir("$name/log");
}
1;
__DATA__
@@ mojo
% my $class = shift;
#!/usr/bin/env perl
use strict;
use warnings;
use FindBin;
use lib "$FindBin::Bin/../lib";
use lib "$FindBin::Bin/../../lib";
# Check if Mojo is installed
eval 'use Mojo::Commands';
die <<EOF if $@;
It looks like you don't have the Mojo Framework installed.
Please visit http://mojolicious.org for detailed installation instructions.
EOF
# Application
$ENV{MOJO_APP} ||= '<%= $class %>';
# Start commands
Mojo::Commands->start;
@@ appclass
% my $class = shift;
package <%= $class %>;
use strict;
use warnings;
use base 'Mojo';
sub handler {
my ($self, $tx) = @_;
# Hello world!
$tx->res->headers->content_type('text/plain');
$tx->res->body('Hello Mojo!');
}
1;
@@ test
% my $class = shift;
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 1;
use_ok('<%= $class %>');
__END__
=head1 NAME
Mojo::Command::Generate::App - Application Generator Command
=head1 SYNOPSIS
use Mojo::Command::Generate::App;
my $app = Mojo::Command::Generate::App->new;
$app->run(@ARGV);
=head1 DESCRIPTION
L<Mojo::Command::Generate::App> is an application generator.
=head1 ATTRIBUTES
L<Mojo::Command::Generate::App> inherits all attributes from
L<Mojo::Command> and implements the following new ones.
=head2 C<description>
my $description = $app->description;
$app = $app->description('Foo!');
Short description of this command, used for the command list.
=head2 C<usage>
my $usage = $app->usage;
$app = $app->usage('Foo!');
Usage information for this command, used for the help screen.
=head1 METHODS
L<Mojo::Command::Generate::App> inherits all methods from L<Mojo::Command>
and implements the following new ones.
=head2 C<run>
$app = $app->run(@ARGV);
Run this command.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
|