license => 'perl',
module_name => 'DBIx::Class::Schema::Loader',
requires => {
- 'DBIx::Class' => 0.05005,
+ 'DBIx::Class' => 0.05006,
'UNIVERSAL::require' => 0.10,
'Lingua::EN::Inflect' => 0,
'Text::Balanced' => 0,
Revision history for Perl extension DBIx::Class::Schema::Loader
-0.02001 Not Yet Released...
+0.02001 Fri Feb 17 20:25:40 UTC 2006
- tests fixed up a bit
- - auto-loading of on-disk class definitions layered on top
- of the generated definitions (create Foo::Schema::Bar, then
- also try to ->require it if it exists on disk).
- - new parameters components and resultset_components, which do
- the obvious for the generated table classes.
+ - auto-loading of on-disk class definitions layered on top
+ of the generated definitions (create Foo::Schema::Bar, then
+ also try to ->require it if it exists on disk).
+ - new parameters components and resultset_components, which do
+ the obvious for the generated table classes.
+ - DBIx::Class pre-req bumped to 0.05006, since Schema::Loader
+ is virtually gauranteed to cause subtle mod_perl problems
+ without those fixes.
0.02000 Sun Feb 12 22:43:47 UTC 2006
- Just docs/version update, 0.01004 code released as 0.02000
package DBIx::Class::TestRSComponent;
use base qw/DBIx::Class::ResultSet/;
-sub dbix_class_testrscomponent : ResultSet { 'dbix_class_testrscomponent works' }
+sub dbix_class_testrscomponent { 'dbix_class_testrscomponent works' }
1;