class Mengpaneel::Strategy::Base

Attributes

all_calls[R]
controller[R]

Public Class Methods

new(all_calls, controller = nil) click to toggle source
# File lib/mengpaneel/strategy/base.rb, line 7
def initialize(all_calls, controller = nil)
  @all_calls  = all_calls
  @controller = controller
end

Public Instance Methods

run() click to toggle source
# File lib/mengpaneel/strategy/base.rb, line 12
def run
  raise NotImplementedError
end