Method: Typhoeus::RemoteMethod#argument_names

Defined in:
lib/typhoeus/remote_method.rb

#argument_namesObject



75
76
77
78
79
# File 'lib/typhoeus/remote_method.rb', line 75

def argument_names
  return @keys if @keys
  pattern, keys = compile(@path)
  @keys = keys.collect {|k| k.to_sym}
end