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

#argsObject (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

#blockObject (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

#doubleObject (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

#kwargsObject (readonly)

Returns the value of attribute kwargs.



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

def kwargs
  @kwargs
end

Instance Method Details

#callObject

Raises:

  • (NotImplementedError)


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

def call
  raise NotImplementedError
end