Skip to content

Commit

Permalink
link to plugins and commands
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jan 4, 2013
1 parent d5b4b61 commit b7193ca
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,5 +1,5 @@

3.72 2013-01-03
3.72 2013-01-04
- Improved documentation.

3.71 2013-01-02
Expand Down
7 changes: 5 additions & 2 deletions lib/Mojolicious.pm
Expand Up @@ -534,15 +534,18 @@ the default controller object)
$app->plugin('MyApp::Plugin::SomeThing', foo => 23);
$app->plugin('MyApp::Plugin::SomeThing', {foo => 23});
Load a plugin with L<Mojolicious::Plugins/"register_plugin">.
Load a plugin with L<Mojolicious::Plugins/"register_plugin">, for a full list
of example plugins included in the L<Mojolicious> distribution see
L<Mojolicious::Plugins/"PLUGINS">.
=head2 C<start>
$app->start;
$app->start(@ARGV);
Start the command line interface for your application with
L<Mojolicious::Commands/"start">.
L<Mojolicious::Commands/"start">, for a full list of commands available by
default see L<Mojolicious::Commands/"COMMANDS">.
# Always start daemon and ignore @ARGV
$app->start('daemon', '-l', 'http://*:8080');
Expand Down
12 changes: 4 additions & 8 deletions lib/Mojolicious/Guides.pod
Expand Up @@ -99,6 +99,10 @@ server with support for zero downtime software upgrades (hot deployment).

Transparent CGI and L<PSGI> support out of the box.

=item L<Mojo::IOLoop>

A minimalistic event loop with support for multiple reactor backends.

=item L<Mojo::Template>

Very Perl-ish and minimalistic template system.
Expand All @@ -108,14 +112,6 @@ Very Perl-ish and minimalistic template system.
A friendly API for many of the portable and very convenient utility functions
provided by L<Mojo::Util>.

=item L<Mojolicious::Plugins>

Versatile plugin system.

=item L<Mojolicious::Commands>

Pluggable command line system.

=item L<Test::Mojo>

Test driven development toolkit for web applications.
Expand Down

0 comments on commit b7193ca

Please sign in to comment.