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