in reply to Re: Catalyst by the Book- The Train Wreck Continues
in thread Catalyst by the Book- The Train Wreck Continues
FWIW, the invalid text causing all my module location error messages is on p. 22 of the book, as shown in the "before" and "after" lines below:
Before:
__PACKAGE__->has_many(
addresses => 'AddressBook::Schema::AddressDB::Addresses',
After:
__PACKAGE__->has_many(
addresses => 'AddressBook::Schema::AddressDB::Result::Address',
Before:
__PACKAGE__->belongs_to(
person => 'AddressBook::Schema::AddressDB::People',
After:
__PACKAGE__->belongs_to(
person => 'AddressBook::Schema::AddressDB::Result::People',
"Its not how hard you work, its how much you get done."
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Catalyst by the Book- The Train Wreck Continues
by roho (Bishop) on Mar 20, 2010 at 20:55 UTC |