Skip to content

Commit

Permalink
MOAR DOTS
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Mar 3, 2012
1 parent f8d38e5 commit 4df5cbb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
This file documents the revision history for Perl extension Mojolicious.

2.58 2012-03-04 00:00:00
- Improved documentation.

2.57 2012-03-03 00:00:00
- Replaced protection from excessively large form values in
Mojo::Message with documentation.
Expand Down
6 changes: 6 additions & 0 deletions lib/Mojo.pm
Expand Up @@ -110,6 +110,7 @@ L<Mojo> implements the following attributes.
The home directory of your application, defaults to a L<Mojo::Home> object
which stringifies to the actual path.
# Generate portable path relative to home directory
my $path = $app->home->rel_file('data/important.txt');
=head2 C<log>
Expand All @@ -119,6 +120,7 @@ which stringifies to the actual path.
The logging layer of your application, defaults to a L<Mojo::Log> object.
# Log debug message
$app->log->debug('It works!');
=head2 C<ua>
Expand All @@ -129,6 +131,9 @@ The logging layer of your application, defaults to a L<Mojo::Log> object.
A full featured HTTP 1.1 user agent for use in your applications, defaults to
a L<Mojo::UserAgent> object.
# Perform blocking request
my $body = $app->ua->get('mojolicio.us')->res->body;
=head1 METHODS
L<Mojo> inherits all methods from L<Mojo::Base> and implements the following
Expand Down Expand Up @@ -172,6 +177,7 @@ L<Mojo::Transaction::HTTP> or L<Mojo::Transaction::WebSocket> object.
sub handler {
my ($self, $tx) = @_;
...
}
=head1 SEE ALSO
Expand Down
1 change: 1 addition & 0 deletions lib/Mojo/Asset/Memory.pm
Expand Up @@ -90,6 +90,7 @@ L<Mojo::Asset::Memory> can emit the following events.
$mem->on(upgrade => sub {
my ($mem, $file) = @_;
...
});
Emitted when asset gets upgraded to a L<Mojo::Asset::File> object.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -32,7 +32,7 @@ has static => sub { Mojolicious::Static->new };
has types => sub { Mojolicious::Types->new };

our $CODENAME = 'Leaf Fluttering In Wind';
our $VERSION = '2.57';
our $VERSION = '2.58';

# "These old doomsday devices are dangerously unstable.
# I'll rest easier not knowing where they are."
Expand Down

0 comments on commit 4df5cbb

Please sign in to comment.