The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#
# This file is part of CatalystX-ExtJS-REST
#
# This software is Copyright (c) 2011 by Moritz Onken.
#
# This is free software, licensed under:
#
#   The (three-clause) BSD License
#
package CatalystX::ExtJS::REST;
BEGIN {
  $CatalystX::ExtJS::REST::VERSION = '2.1.1';
}

# ABSTRACT: Feature-rich REST controller for use with ExtJS

1;



=pod

=head1 NAME

CatalystX::ExtJS::REST - Feature-rich REST controller for use with ExtJS

=head1 VERSION

version 2.1.1

=head1 SYNOPSIS

 package MyApp::Controller::User;
 
 use Moose;
 BEGIN { extends 'CatalystX::Controller::ExtJS::REST' }
 
 __PACKAGE__->config( default_resultset => 'User',
                     forms             => {
                              default => [
                                  { name => 'id' },
                                  { name => 'email', constraint => 'Required' },
                                  { name => 'password' }
                              ],
                     } );
 
 1;

=head1 DESCRIPTION

This module adds feature-rich REST controllers to your application.

L<CatalystX::Controller::ExtJS::REST> gives examples and describes 
all configuration options.

Have a look at the L<tutorial|CatalystX::ExtJS::Tutorial::Direct>
which shows integration of this controller with L<CatalystX::ExtJS::Direct>.

=head1 SEE ALSO

=over 4

=item L<CatalystX::ExtJS>

Parent namespace. Includes examples and the code for the tutorial.

=item L<CatalystX::ExtJS::Direct>

Enable Ext.Direct in Catalyst controllers.

=back

=head1 AUTHOR

Moritz Onken <onken@netcubed.de>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2011 by Moritz Onken.

This is free software, licensed under:

  The (three-clause) BSD License

=cut


__END__