Class: Reflex::System

Inherits:
Base
  • Object
show all
Defined in:
lib/reflex/system.rb

Class Method Summary collapse

Methods inherited from Base

call, call!

Class Method Details

.list_methodsObject

Returns an array of available methods



5
6
7
# File 'lib/reflex/system.rb', line 5

def list_methods
  call("System.listMethods")
end

.method_description(method) ⇒ Object

Returns the description of a given method



15
16
17
# File 'lib/reflex/system.rb', line 15

def method_description(method)
  call("System.methodDescription", method)
end

.method_help(method) ⇒ Object

Returns help for a given method



20
21
22
# File 'lib/reflex/system.rb', line 20

def method_help(method)
  call("System.methodHelp", method)
end

.method_signature(method) ⇒ Object

Returns the signature of a given method



10
11
12
# File 'lib/reflex/system.rb', line 10

def method_signature(method)
  call("System.methodSignature", method)
end