Skip to content

Commit

Permalink
Applied patch to use PSGI Engine, closes #123
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusramberg committed Oct 25, 2014
1 parent ab999e8 commit 6c0bed0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
3 changes: 2 additions & 1 deletion Changes
@@ -1,6 +1,7 @@
- Add valid answer to registration captcha

1.11
- Apply patch from debian downstream to use current PSGI engine
- Add valid answer to registration captcha
- Fix rss bug from prev release (#68)
- Enable admin created users by default. (#90)

Expand Down
1 change: 0 additions & 1 deletion Makefile.PL
Expand Up @@ -18,7 +18,6 @@ requires(
'Catalyst::Action::RenderView' => '0.07',
'Catalyst::Authentication::Store::DBIx::Class' => '0.101',
'Catalyst::Controller::HTML::FormFu' => '0.03007',
'Catalyst::Engine::PSGI' => '0',
'Catalyst::Model::DBIC::Schema' => '0.01',
'Catalyst::Plugin::Authentication' => '0.10005',
'Catalyst::Plugin::Cache' => 0.08,
Expand Down
3 changes: 1 addition & 2 deletions app.psgi
Expand Up @@ -4,6 +4,5 @@ use warnings;
use lib 'lib';
use MojoMojo;

MojoMojo->setup_engine('PSGI');
my $app = sub { MojoMojo->run(@_) };
my $app = MojoMojo->psgi_app(@_);

3 changes: 1 addition & 2 deletions script/mojomojo.psgi
Expand Up @@ -3,6 +3,5 @@ use strict;
use warnings;
use MojoMojo;

MojoMojo->setup_engine('PSGI');
my $app = sub { MojoMojo->run(@_) };
my $app = MojoMojo->psgi_app(@_);

0 comments on commit 6c0bed0

Please sign in to comment.