Class: RR::MethodDispatches::BaseMethodDispatch

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Includes:
Space::Reader
Defined in:
lib/rr/method_dispatches/base_method_dispatch.rb

Direct Known Subclasses

MethodDispatch, MethodMissingDispatch

Instance Attribute Summary (collapse)

Instance Method Summary (collapse)

Methods included from Space::Reader

#space

Instance Attribute Details

- (Object) args (readonly)

Returns the value of attribute args



7
8
9
# File 'lib/rr/method_dispatches/base_method_dispatch.rb', line 7

def args
  @args
end

- (Object) block (readonly)

Returns the value of attribute block



7
8
9
# File 'lib/rr/method_dispatches/base_method_dispatch.rb', line 7

def block
  @block
end

- (Object) double (readonly)

Returns the value of attribute double



7
8
9
# File 'lib/rr/method_dispatches/base_method_dispatch.rb', line 7

def double
  @double
end

Instance Method Details

- (Object) call

Raises:

  • (NotImplementedError)


9
10
11
# File 'lib/rr/method_dispatches/base_method_dispatch.rb', line 9

def call
  raise NotImplementedError
end