Skip to content

Commit

Permalink
no critic
Browse files Browse the repository at this point in the history
  • Loading branch information
Yusuke Wada committed Mar 24, 2010
1 parent e5f2bc4 commit e560db2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Makefile.PL
Expand Up @@ -8,6 +8,7 @@ requires 'Plack::Response';
requires 'Router::Simple';
requires 'Text::MicroTemplate';
requires 'DBIx::Skinny';
requires 'File::Slurp';

tests 't/*.t';
author_tests 'xt';
Expand Down
4 changes: 2 additions & 2 deletions lib/Hitagi.pm
Expand Up @@ -63,7 +63,7 @@ sub render {
my $args_string = args_string($args);
no warnings; #XXX
local $@;
my $renderer = eval << "..." or die $@;
my $renderer = eval << "..." or die $@; ## no critic
sub {
my \$args = shift; $args_string;
$code->();
Expand Down Expand Up @@ -117,7 +117,7 @@ sub set_db {
local $@;
package DB::Schema;
use DBIx::Skinny::Schema;
eval $schema;
eval ( $schema ); ## no critic
1;
die $@ if $@;
package DB;
Expand Down

0 comments on commit e560db2

Please sign in to comment.