Take me over?
The maintainer of this distribution is looking for someone to take over!
If you're interested then please contact them via
email.
NAME
Fey::Meta::Attribute::FromInflator - An attribute metaclass for attributes with an inflator
VERSION
version 0.47
SYNOPSIS
package MyApp::Song;
has_table( $schema->table('Song') );
for my $attr ( grep { $_->can('raw_attribute') } $self->meta()->get_all_attributes )
{
...
}
DESCRIPTION
This attribute metaclass is used when Fey::ORM::Table creates attributes based on an inflator transform.
METHODS
This class adds a two methods to those provided by Moose::Meta::Attribute
:
$attr->raw_attribute()
Returns the attribute for the raw version of this data. This is the original attribute created for the column, which was renamed when the inflator was declared.
$attr->column()
Returns the Fey::Column object associated with the raw attribute.
AUTHOR
Dave Rolsky <autarch@urth.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2011 - 2015 by Dave Rolsky.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.