Class: Coactive::Lookups::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/coactive/lookups/base.rb

Direct Known Subclasses

Name, Object

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(klass, coactant) ⇒ Base

Returns a new instance of Base.



6
7
8
9
10
# File 'lib/coactive/lookups/base.rb', line 6

def initialize(klass, coactant)
  @klass = klass
  @coactant = coactant
  @config = @klass.coactive_config
end

Class Method Details

.callable?(coactant) ⇒ Boolean

Returns:

  • (Boolean)


16
17
# File 'lib/coactive/lookups/base.rb', line 16

def callable?(coactant)
end

Instance Method Details

#callObject



12
13
# File 'lib/coactive/lookups/base.rb', line 12

def call
end