Class: Blockhead::Extractors::Proc

Inherits:
Abstract
  • Object
show all
Defined in:
lib/blockhead/extractors/proc.rb

Instance Attribute Summary

Attributes inherited from Abstract

#next, #object

Instance Method Summary collapse

Methods inherited from Abstract

#extract, #initialize

Constructor Details

This class inherits a constructor from Blockhead::Extractors::Abstract

Instance Method Details

#extract_valueObject



8
9
10
# File 'lib/blockhead/extractors/proc.rb', line 8

def extract_value
  arg.call
end

#valid?Boolean

Returns:

  • (Boolean)


4
5
6
# File 'lib/blockhead/extractors/proc.rb', line 4

def valid?
  arg.is_a?(::Proc)
end