Method: Bake::Recipe#initialize

Defined in:
lib/bake/recipe.rb

#initialize(instance, name, method = nil) ⇒ Recipe

Initialize the recipe.



18
19
20
21
22
23
24
25
26
27
28
# File 'lib/bake/recipe.rb', line 18

def initialize(instance, name, method = nil)
  @instance = instance
  @name = name
  @command = nil
  @comments = nil
  @signature = nil
  @documentation = nil
  
  @method = method
  @arity = nil
end