Skip to content

Commit

Permalink
startup is also meant to be overloaded in a subclass
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Mar 24, 2012
1 parent 952e9d9 commit f9580c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
This file documents the revision history for Perl extension Mojolicious.

2.69 2012-03-25
- Improved documentation.

2.68 2012-03-24
- Improved documentation.
- Fixed generate command.
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojolicious.pm
Expand Up @@ -33,7 +33,7 @@ has static => sub { Mojolicious::Static->new };
has types => sub { Mojolicious::Types->new };

our $CODENAME = 'Leaf Fluttering In Wind';
our $VERSION = '2.68';
our $VERSION = '2.69';

# "These old doomsday devices are dangerously unstable.
# I'll rest easier not knowing where they are."
Expand Down Expand Up @@ -617,8 +617,8 @@ application.
$app->startup;
This is your main hook into the application, it will be called at application
startup.
This is your main hook into the application and meant to be overloaded in a
subclass, it will be called at application startup.
sub startup {
my $self = shift;
Expand Down

0 comments on commit f9580c0

Please sign in to comment.