This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use lib 'lib'; | |
| use MyApp; | |
| my $app = MyApp->new; | |
| $app->setup; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DBI Exception: DBD::mysql::st execute failed: Duplicate entry '(null)' for key 'apns_token' [for Statement "INSERT INTO user_apns ( apns_token, created_date, user) VALUES ( ?, ?, ? )" with ParamValues: 0="(null)", 1='2011-01-31 18:02:49', 2='407'] at /home/homepage/perl5/lib/perl5/DBIx/Class/Schema.pm line 1026 | |
| ..続く | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -Nur Object-Container-0.11.orig/Makefile.PL Object-Container-0.11/Makefile.PL | |
| --- Object-Container-0.11.orig/Makefile.PL 2010-10-05 18:54:58.000000000 +0900 | |
| +++ Object-Container-0.11/Makefile.PL 2010-10-20 20:21:20.000000000 +0900 | |
| @@ -5,6 +5,7 @@ | |
| requires 'Carp'; | |
| requires 'Class::Accessor::Fast'; | |
| requires 'parent'; | |
| +requires 'B::Hooks::EndOfScope'; | |
| recommends 'Exporter::AutoClean'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use Test::Base; | |
| use File::Temp qw/tempdir/; | |
| plan 'no_plan'; | |
| BEGIN { $ENV{ARK_HOME} = tempdir( CLEANUP => 1 ) } | |
| { | |
| package T::Models; | |
| use Ark::Models '-base'; |
NewerOlder