Navigation Menu

Skip to content

Commit

Permalink
Fix for Moose 2.06 - RT #76793 (doy)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonswar committed May 6, 2012
1 parent c462c90 commit 459e9b7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changes
Expand Up @@ -4,6 +4,9 @@ Revision history for Poet

0.07 May 6, 2012

* Fixes
- Fix for Moose 2.06 - RT #76793 (doy)

0.06 May 6, 2012

* Fixes
Expand Down
4 changes: 2 additions & 2 deletions lib/Poet/Moose.pm
Expand Up @@ -14,8 +14,8 @@ sub init_meta {
my $for_class = $params{for_class};
Method::Signatures::Simple->import( into => $for_class );
Moose->init_meta(@_);
MooseX::StrictConstructor->init_meta(@_);
MooseX::HasDefaults::RO->init_meta(@_);
MooseX::StrictConstructor->import( { into => $for_class } );
MooseX::HasDefaults::RO->import( { into => $for_class } );
}

1;
Expand Down

0 comments on commit 459e9b7

Please sign in to comment.