module PPC::Operation::Plan_operation

+++++ Plan opeartion funcitons +++++ #

Public Instance Methods

method_missing(method_name, *args, &block) click to toggle source
Calls superclass method
# File lib/ppc/operation.rb, line 77
def method_missing(method_name, *args, &block)
  if method_name.to_s[/_plan$/]
    call( "plan" ).send(method_name.to_s[/^(get|add|update|delete|enable|pause)/], @auth, [args].flatten )
  else
    super
  end
end