class Bake::Command::Call

Execute one or more commands.

Public Instance Methods

bakefile() click to toggle source
# File lib/bake/command/call.rb, line 35
def bakefile
        @parent.bakefile
end
call() click to toggle source
# File lib/bake/command/call.rb, line 41
def call
        context = @parent.context
        
        context.call(*@commands)
end