Acme-Chef
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
lib/Acme/Chef.pm view on Meta::CPAN
sub compile {
my $proto = shift;
my $class = ref $proto || $proto;
my $code = shift;
defined $code or croak "compile takes one argument: a code string.";
my $self = {};
bless $self => $class;
my @paragraphs = $self->_get_paragraphs( $code );
my @recipes = $self->_paragraphsToRecipes(\@paragraphs);
$_->compile() foreach @recipes;
$self->{start_recipe} = $recipes[0]->recipe_name();
$self->{recipes} = {
map { ($_->recipe_name(), $_) } @recipes
lib/Acme/Chef/Container.pm view on Meta::CPAN
%$self = %$proto;
$self->{contents} = [ map { $_->new() } @{$self -> {contents}} ];
}
%$self = (
contents => [],
%$self,
@_,
);
return bless $self => $class;
}
=item put
This method implements the 'put' command. Please refer to L<Acme::Chef> for
details.
=cut
lib/Acme/Chef/Ingredient.pm view on Meta::CPAN
%$self = (
name => '',
value => undef,
measure => '',
measure_type => '',
type => '',
%$self,
%args,
);
bless $self => $class;
$self->determine_type() if not $self->{type};
return $self;
}
=item type
Returns the type of the Ingredient.
lib/Acme/Chef/Recipe.pm view on Meta::CPAN
method => '',
serves => '',
output => '',
loops => {},
bowls => [],
dishes => [],
%$self,
%args,
);
bless $self => $class;
return $self;
}
=item execute
Executes the recipe (program). First argument should be a reference to a
hash of sous-recipes.
=cut
view all matches for this distributionview release on metacpan - search on metacpan
( run in 1.158 second using v1.00-cache-2.02-grep-82fe00e-cpan-4185a24d4ac )