From: Brandon Black Date: Fri, 3 Feb 2006 02:27:01 +0000 (+0000) Subject: docs and reqs update for 0.01000 release X-Git-Tag: 0.03000~26 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=aec93e93a05c573110aa921bff646535c73469ed;p=dbsrgits%2FDBIx-Class-Schema-Loader.git docs and reqs update for 0.01000 release --- diff --git a/Build.PL b/Build.PL index d1ee71c..e9c8f22 100644 --- a/Build.PL +++ b/Build.PL @@ -5,7 +5,7 @@ my %arguments = ( license => 'perl', module_name => 'DBIx::Class::Schema::Loader', requires => { - 'DBIx::Class' => 0.04999_07, + 'DBIx::Class' => 0.05, 'UNIVERSAL::require' => 0.10, 'Lingua::EN::Inflect' => 0, 'Text::Balanced' => 0, diff --git a/Changes b/Changes index 8776746..de6517c 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,5 @@ Revision history for Perl extension DBIx::Class::Schema::Loader -0.01 Not released yet.... - - original version, created from DBIx::Class::Loader 0.14 +0.01 Fri Feb 3 01:53:46 UTC 2006 + - original release + - created from DBIx::Class::Loader 0.14 diff --git a/META.yml b/META.yml index 6806dd7..aad02bb 100644 --- a/META.yml +++ b/META.yml @@ -9,7 +9,7 @@ requires: Class::Accessor::Fast: 0.22 Class::C3: 0.09 Class::Data::Accessor: 0.02 - DBIx::Class: 0.0499907 + DBIx::Class: 0.05 Lingua::EN::Inflect: 0 Text::Balanced: 0 UNIVERSAL::require: 0.1 diff --git a/README b/README index 624037a..98bd7ae 100644 --- a/README +++ b/README @@ -45,6 +45,12 @@ SYNOPSIS my $rs = $schema1->resultset($monikers->{table_table})->search(...); DESCRIPTION + THIS IS A DEVELOPMENT RELEASE. This is 0.01000, the first public + release. Expect things to be broken in various ways. Expect the entire + design to be fatally flawed. Expect the interfaces to change if it + becomes neccessary. It's mostly here for people to poke at it and find + the flaws in it. 0.02 will hopefully have some sanity when we get there. + DBIx::Class::Schema::Loader automates the definition of a DBIx::Class::Schema by scanning table schemas and setting up columns and primary keys. diff --git a/lib/DBIx/Class/Schema/Loader.pm b/lib/DBIx/Class/Schema/Loader.pm index 6bd2ca6..545345d 100644 --- a/lib/DBIx/Class/Schema/Loader.pm +++ b/lib/DBIx/Class/Schema/Loader.pm @@ -66,6 +66,13 @@ DBIx::Class::Schema::Loader - Dynamic definition of a DBIx::Class::Schema =head1 DESCRIPTION +THIS IS A DEVELOPMENT RELEASE. This is 0.01000, the first public +release. Expect things to be broken in various ways. Expect the +entire design to be fatally flawed. Expect the interfaces to change if +it becomes neccessary. It's mostly here for people to poke at it and +find the flaws in it. 0.02 will hopefully have some sanity when we get +there. + DBIx::Class::Schema::Loader automates the definition of a DBIx::Class::Schema by scanning table schemas and setting up columns and primary keys. diff --git a/lib/DBIx/Class/Schema/Loader/Generic.pm b/lib/DBIx/Class/Schema/Loader/Generic.pm index d02e5d1..549be17 100644 --- a/lib/DBIx/Class/Schema/Loader/Generic.pm +++ b/lib/DBIx/Class/Schema/Loader/Generic.pm @@ -339,11 +339,10 @@ database table names. =head3 classes Returns a hashref of table-to-classname mappings for the original database -table names. You probably shouldn't be using this, as operating on the -original class names is usually a bad idea. This hook is here for people -who want to do strange and/or possibly broken things. The usual way to -get at things is C<$schema->resultset('FooTbl')>, where C is a -moniker as returned by C above. +table names. You probably shouldn't be using this for any normal or simple +usage of your Schema. The usual way to run queries on your tables is via +C<$schema-Eresultset('FooTbl')>, where C is a moniker as +returned by C above. my $classes = $schema->loader->classes; my $foo_tbl_class = $classes->{foo_tbl};