Catalyst::Plugin::Static::Simple::ByClass - locate static content in @INC


Catalyst-Plugin-Static-Simple-ByClass documentation  | view source Contained in the Catalyst-Plugin-Static-Simple-ByClass distribution.

Index


NAME

Top

Catalyst::Plugin::Static::Simple::ByClass - locate static content in @INC

SYNOPSIS

Top

 use Catalyst qw(
    Static::Simple::ByClass
 );

 __PACKAGE__->config(
     static => {
         classes => [ qw( MyClass::Foo ) ]
     }
 );

DESCRIPTION

Top

Catalyst::Plugin::Static::Simple::ByClass is a subclass of Catalyst::Plugin::Static::Simple. It extends the base class to alter the include_path config to include @INC paths for classes. The idea is that you can distribute static files (.js and .css for example) with applications, and those files can be served during development directly from the installed @INC location.

METHODS

Top

Only new or overridden method are documented here.

setup

Calls next::method and then checks the classes config option for a list of class names to require and add to the include_path.

AUTHOR

Top

Peter Karman, <karman@cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-catalyst-plugin-static-simple-byclass@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

ACKNOWLEDGEMENTS

Top

The Minnesota Supercomputing Institute http://www.msi.umn.edu/ sponsored the development of this software.

COPYRIGHT & LICENSE

Top


Catalyst-Plugin-Static-Simple-ByClass documentation  | view source Contained in the Catalyst-Plugin-Static-Simple-ByClass distribution.