Class: Percolate::Facet::BaseFacet
- Inherits:
-
Object
- Object
- Percolate::Facet::BaseFacet
- Defined in:
- lib/percolate/facet/base_facet.rb
Overview
A base class to build off of.
Direct Known Subclasses
Instance Method Summary collapse
-
#find(*args) ⇒ String
Finds entity information from the given input.
-
#merge(other) ⇒ BaseFacet
Merges the given facet with this one.
Instance Method Details
#find(*args) ⇒ String
Finds entity information from the given input.
26 27 28 |
# File 'lib/percolate/facet/base_facet.rb', line 26 def find(*args) nil end |
#merge(other) ⇒ BaseFacet
Merges the given facet with this one.
35 36 37 |
# File 'lib/percolate/facet/base_facet.rb', line 35 def merge(other) BaseFacet.new end |