Skip to content

Commit

Permalink
Tidying up, addsolving perlcritic errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lancew committed Mar 1, 2015
1 parent 28d8a77 commit eae98dc
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 105 deletions.
104 changes: 0 additions & 104 deletions README

This file was deleted.

4 changes: 4 additions & 0 deletions app.psgi
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#!/usr/bin/env perl

use strict;
use warnings;

use Dancer;
use Judo::Clubmanager;
dance;
4 changes: 4 additions & 0 deletions bin/app.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#!/usr/bin/env perl

use strict;
use warnings;

use Dancer;
use Judo::Clubmanager;
dance;
2 changes: 1 addition & 1 deletion environments/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ show_errors: 1
# Be aware it's unstable and may cause a memory leak.
# DO NOT EVER USE THIS FEATURE IN PRODUCTION
# OR TINY KITTENS SHALL DIE WITH LOTS OF SUFFERING
auto_reload: 0
auto_reload: 1
4 changes: 4 additions & 0 deletions lib/Judo/Clubmanager.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
package Judo::Clubmanager;

use strict;
use warnings;

use Dancer ':syntax';

use Dancer::Plugin::Auth::Extensible;
Expand Down
4 changes: 4 additions & 0 deletions public/dispatch.cgi
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#!/usr/bin/env perl

use strict;
use warnings;

use Dancer ':syntax';
use FindBin '$RealBin';
use Plack::Runner;
Expand Down
4 changes: 4 additions & 0 deletions public/dispatch.fcgi
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#!/usr/bin/env perl

use strict;
use warnings;

use Dancer ':syntax';
use FindBin '$RealBin';
use Plack::Handler::FCGI;
Expand Down

0 comments on commit eae98dc

Please sign in to comment.