Methods
- A
- D
- I
- N
- S
- V
Attributes
[R] | added | |
[R] | intercepted | |
[R] | void_called |
Class Public methods
Source: show
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 81 def initialize @void_called = false end
Instance Public methods
Source: show
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 85 def add(a, b) @added = a + b end
Source: show
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 103 def do_intercept(name, args) [false, "permission denied"] end
Source: show
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 89 def interceptee @intercepted = false end
Source: show
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 93 def struct_return n1 = Node.new('id' => 1, 'name' => 'node1', 'description' => 'Node 1') n2 = Node.new('id' => 2, 'name' => 'node2', 'description' => 'Node 2') [n1, n2] end
Source: show
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 99 def void(*args) @void_called = args end