module PPC::Operation::Group_operation
+++++ Group
opeartion funcitons +++++ #
Public Instance Methods
method_missing(method_name, *args, &block)
click to toggle source
Calls superclass method
# File lib/ppc/operation.rb, line 90 def method_missing(method_name, *args, &block) if method_name.to_s[/_group$/] call( "group" ).send(method_name.to_s[/^(get|add|update|delete|enable|pause)/], @auth, [args].flatten ) else super end end