Changes for Forward::Routes

0.41    2011-07-21 00:00:00
        - fixed small namespace bug

0.40    2011-07-21 00:00:00
        - Added support for adding member routes to resources
        - Put resource related stuff into a separate namespace
          Forward::Routes::Resources
        - Added support for nesting singular resources on top of plural
          resources
        - Resource customization: namespace has to be passed in format
          Foo::Bar

0.23    2011-07-07 00:00:00
        - Added -only option to resources
        - Added docs

0.22    2011-05-29 00:00:00
        - Fixed format constraint handling (undef and empty values)
        - Added -format option to resources
        - Added docs for custom format constraints for resources

0.21    2011-05-29 00:00:00
        - Fixed "uninitialized value in length" warnings
        - Fixed small route naming bug (affects bridges)

0.20    2011-05-26 00:00:00
        - Fixed singular resources (camelized controller name)
        - Added custom path naming for resources
        - Added support to define multiple singular resources at once
        - Test cleanup for constraint related tests
        - Added custom id constraints to resources
        - Added docs for singular resources
        - Removed prefix methods (no tests, no docs, no use cases)
        - API Change: namespace can only be customized for individual resources
        - Improved API for resource customization 
        - Added docs for resource customization 

0.19    2011-05-17 00:00:00
        - Added namespace prefix for resources 
        - Updated docs (use camelized controller names in examples)
        - Camelize controller param of resources by default
        - Added format_resource_controller method to allow customization
          of controller param values for resources

0.18    2011-05-16 00:00:00
        - Empty paths can be passed via "match" method (default to "/")
        - Give bridges access to all captures of a URL
        - Creation of a nested resource automatically generates the parent
          resource (API CHANGE)

0.17    2011-05-12 00:00:00
        - Fixed id prefix in case of nested resources (singularize)
        - Allow customization of singularize method
        - Added docs for nested resources
        - Improved "params" method in Match class (read only, return single
          params)
        - Added "captures" method in Match class
        - Removed "pattern" method from Match class (missing use case)
        - Added "name" method to Match class 

0.16    2011-05-04 00:00:00
        - Fixed nested resources
        - Improved documentation on restful resources
        - Added tests

0.15    2011-05-02 00:00:00
        - Fixed request method inheritance and added tests
        - Test cleanup
        - Replaced method add_resource by add_singular_resources
        - Added docs for restful resources 

0.14    2011-04-20 00:00:00
        - Fixed format inheritance and added tests
        - Better documentation of format constraints
        - Improved format contraint tests
        - Added path_building format constraint support

0.13    2011-04-13 00:00:00
        - Added documentation

0.12    2011-04-13 00:00:00
        - Added .gitignore file

0.11    2011-04-13 00:00:00
        - Added description to pod

0.10    2011-04-04 00:00:00
        - Make Forward::Routes compatible with older versions of Perl
          (remove logical defined or //, which requires Perl 5.10)

0.09    2011-04-04 00:00:00
        - Use method chaining for (internal) generation of resources

0.07    2011-03-09 00:00:00
        - Fixed Makefile.PL

0.06    2011-03-08 00:00:00
        - Added bridge support inspired by Sebastian Riedel's
          Mojolicous::Routes module
        - Removed Try::Tiny from test file

0.05    2011-03-08 00:00:00
        - Fixed serious path matching bug for nested routes
        - Made format detection significantly smarter and added format method
          to allow format constraints


0.04    2011-03-07 00:00:00
        - First release