Skip to content

Commit

Permalink
don't do fancy things
Browse files Browse the repository at this point in the history
  • Loading branch information
oetiker committed Nov 12, 2019
1 parent e02b29b commit 5e6afd6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Revision history for Mojolicious::Pugin::Qooxdoo

1.0.7 2019-11-12
- use log method on controller to show request context in log
1.0.5 2019-03-09
- regressions introduced in 1.0.3 fixed
1.0.3 2019-03-08
Expand Down
4 changes: 2 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ WriteMakefile(
AUTHOR => 'Tobias Oetiker <tobi@oetiker.ch>',
LICENSE => 'artistic_2',
PREREQ_PM => {
'Mojolicious' => '8'
'Mojolicious' => '8.26'
},
BUILD_REQUIRES => {
'CPAN::Uploader' => 0
},
META_MERGE => {
requires => {perl => '5.010001'},
requires => {perl => '5.022001'},
resources => {
license => 'http://www.opensource.org/licenses/artistic-license-2.0',
repository => 'https://github.com/oetiker/Mojolicious-Plugin-Qooxdoo',
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious/Plugin/Qooxdoo.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Mojo::Base 'Mojolicious::Plugin';
use File::Spec::Functions qw(splitdir updir catdir file_name_is_absolute);
use Cwd qw(abs_path);

our $VERSION = '1.0.6';
our $VERSION = '1.0.7';

sub register {
my ($self, $app, $conf) = @_;
Expand Down
9 changes: 1 addition & 8 deletions lib/Mojolicious/Plugin/Qooxdoo/JsonRpcController.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use Encode;

has toUTF8 => sub { find_encoding('utf8') };

our $VERSION = '1.0.6';
our $VERSION = '1.0.7';

has 'service';

Expand All @@ -25,13 +25,6 @@ has 'methodName';

has 'rpcParams';

has log => sub {
my $c = shift;
return $c->SUPER::log if $c->SUPER::can('log');
warn "APP LOG";
$c->app->log;
};

sub dispatch {
my $self = shift;

Expand Down

0 comments on commit 5e6afd6

Please sign in to comment.