File Coverage

blib/lib/Clustericious/Command/generate.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Clustericious::Command::generate;
2              
3 1     1   639 use strict;
  1         2  
  1         26  
4 1     1   5 use warnings;
  1         2  
  1         23  
5 1     1   5 use Mojo::Base 'Mojolicious::Command::generate';
  1         1  
  1         7  
6              
7             # ABSTRACT: Clustericious code generation commands.
8             our $VERSION = '1.27'; # VERSION
9              
10              
11             has namespaces =>
12             sub { [qw/Clustericious::Command::generate
13             Mojolicious::Command::generate
14             Mojo::Command::generate/] };
15              
16             1;
17              
18             __END__
19              
20             =pod
21              
22             =encoding UTF-8
23              
24             =head1 NAME
25              
26             Clustericious::Command::generate - Clustericious code generation commands.
27              
28             =head1 VERSION
29              
30             version 1.27
31              
32             =head1 SYNOPSIS
33              
34             % clustericious generate app MyApp
35             % clustericious generate client MyApp
36              
37             =head1 DESCRIPTION
38              
39             This is the base class for all Clustericious code generation commands.
40             It inherits from L<Mojolicious::Command::generate> instead of
41             L<Clustericious::Command>.
42              
43             =head1 SEE ALSO
44              
45             L<Clustericious>
46              
47             =head1 AUTHOR
48              
49             Original author: Brian Duggan
50              
51             Current maintainer: Graham Ollis E<lt>plicease@cpan.orgE<gt>
52              
53             Contributors:
54              
55             Curt Tilmes
56              
57             Yanick Champoux
58              
59             =head1 COPYRIGHT AND LICENSE
60              
61             This software is copyright (c) 2013 by NASA GSFC.
62              
63             This is free software; you can redistribute it and/or modify it under
64             the same terms as the Perl 5 programming language system itself.
65              
66             =cut