2011-10-07 13:45:23 +00:00
|
|
|
#! @perl@
|
2008-10-28 10:19:31 +00:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
2009-02-12 16:38:08 +00:00
|
|
|
|
2011-10-07 13:45:23 +00:00
|
|
|
use Catalyst::ScriptRunner;
|
|
|
|
Catalyst::ScriptRunner->run('Hydra', 'Create');
|
2008-10-28 10:19:31 +00:00
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2008-11-25 11:01:42 +00:00
|
|
|
hydra_create.pl - Create a new Catalyst Component
|
2008-10-28 10:19:31 +00:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
2008-11-25 11:01:42 +00:00
|
|
|
hydra_create.pl [options] model|view|controller name [helper] [options]
|
2008-10-28 10:19:31 +00:00
|
|
|
|
|
|
|
Options:
|
2011-10-07 13:45:23 +00:00
|
|
|
--force don't create a .new file where a file to be created exists
|
|
|
|
--mechanize use Test::WWW::Mechanize::Catalyst for tests if available
|
|
|
|
--help display this help and exits
|
2008-10-28 10:19:31 +00:00
|
|
|
|
|
|
|
Examples:
|
2008-11-25 11:01:42 +00:00
|
|
|
hydra_create.pl controller My::Controller
|
|
|
|
hydra_create.pl -mechanize controller My::Controller
|
|
|
|
hydra_create.pl view My::View
|
2011-10-07 13:45:23 +00:00
|
|
|
hydra_create.pl view HTML TT
|
2008-11-25 11:01:42 +00:00
|
|
|
hydra_create.pl model My::Model
|
|
|
|
hydra_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\
|
2008-10-28 10:19:31 +00:00
|
|
|
dbi:SQLite:/tmp/my.db
|
2008-11-25 11:01:42 +00:00
|
|
|
hydra_create.pl model AnotherDB DBIC::Schema MyApp::Schema create=static\
|
2011-10-07 13:45:23 +00:00
|
|
|
[Loader opts like db_schema, naming] dbi:Pg:dbname=foo root 4321
|
|
|
|
[connect_info opts like quote_char, name_sep]
|
2008-10-28 10:19:31 +00:00
|
|
|
|
|
|
|
See also:
|
|
|
|
perldoc Catalyst::Manual
|
|
|
|
perldoc Catalyst::Manual::Intro
|
2011-10-07 13:45:23 +00:00
|
|
|
perldoc Catalyst::Helper::Model::DBIC::Schema
|
|
|
|
perldoc Catalyst::Model::DBIC::Schema
|
|
|
|
perldoc Catalyst::View::TT
|
2008-10-28 10:19:31 +00:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
Create a new Catalyst Component.
|
|
|
|
|
|
|
|
Existing component files are not overwritten. If any of the component files
|
|
|
|
to be created already exist the file will be written with a '.new' suffix.
|
|
|
|
This behavior can be suppressed with the C<-force> option.
|
|
|
|
|
|
|
|
=head1 AUTHORS
|
|
|
|
|
|
|
|
Catalyst Contributors, see Catalyst.pm
|
|
|
|
|
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
2011-10-07 13:45:23 +00:00
|
|
|
This library is free software. You can redistribute it and/or modify
|
2008-10-28 10:19:31 +00:00
|
|
|
it under the same terms as Perl itself.
|
|
|
|
|
|
|
|
=cut
|