Method: Biosphere::Suite#call_action

Defined in:
lib/biosphere/suite.rb

#call_action(name, context) ⇒ Object



76
77
78
79
80
81
82
83
84
85
86
# File 'lib/biosphere/suite.rb', line 76

def call_action(name, context)
    found = false
    @files.each do |file_name, proxy|
        if proxy.actions[name]
            found = true
            proxy.call_action(name, context)
        end
    end

    return found
end