prefer JSON::DWIW for barekey support
Rafael Kitover [Tue, 26 Jan 2010 13:05:53 +0000 (13:05 +0000)]
lib/DBIx/Class/Admin.pm

index f3be3c9..bd7cec6 100644 (file)
@@ -30,10 +30,9 @@ use DBIx::Class::Admin::Types qw/DBICConnectInfo DBICHashRef/;
 use MooseX::Types::JSON qw(JSON);
 use MooseX::Types::Path::Class qw(Dir File);
 use Try::Tiny;
-use JSON::Any;
+use JSON::Any qw(DWIW XS JSON);
 use namespace::autoclean;
 
-
 =head1 NAME
 
 DBIx::Class::Admin - Administration object for schemas
@@ -48,7 +47,7 @@ DBIx::Class::Admin - Administration object for schemas
 
   $ dbicadmin --schema=MyApp::Schema --class=Employee \
     --connect='["dbi:SQLite:my.db", "", ""]' \
-    --op=update --set='{"name":"New_Employee"}'
+    --op=update --set='{ "name": "New_Employee" }'
 
   use DBIx::Class::Admin;
 
@@ -89,6 +88,8 @@ L<parent>
 
 L<JSON::Any>
 
+(L<JSON::DWIW> preferred for barekey support)
+
 L<namespace::autoclean>
 
 L<Getopt::Long::Descriptive>