Skip to content

Commit

Permalink
merged a few more tutorial sections
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Apr 8, 2013
1 parent 46d10ee commit ed4c2db
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions lib/Mojolicious/Lite.pm
Expand Up @@ -110,8 +110,6 @@ featured web application.
app->start;
=head2 Generator
There is also a helper command to generate a small example application.
$ mojo generate lite_app
Expand All @@ -134,8 +132,6 @@ just work without commands.
$ ./myapp.pl
...List of available commands (or automatically detected environment)...
=head2 Start
The C<app-E<gt>start> call that starts the L<Mojolicious> command system can
be customized to override normal C<@ARGV> use.
Expand Down Expand Up @@ -768,7 +764,8 @@ constructs.
Signed cookie based sessions just work out of the box as soon as you start
using them through the helper
L<Mojolicious::Plugin::DefaultHelpers/"session">.
L<Mojolicious::Plugin::DefaultHelpers/"session">, just be aware that all
session data gets serialized with L<Mojo::JSON>.
use Mojolicious::Lite;
Expand All @@ -784,10 +781,6 @@ L<Mojolicious::Plugin::DefaultHelpers/"session">.
@@ counter.html.ep
Counter: <%= session 'counter' %>
Just be aware that all session data gets serialized with L<Mojo::JSON>.
=head2 Secret
Note that you should use a custom L<Mojolicious/"secret"> to make signed
cookies really secure.
Expand Down

0 comments on commit ed4c2db

Please sign in to comment.