class Percolate::Facet::BaseFacet

A base class to build off of.

Public Instance Methods

find(*args) click to toggle source

Finds entity information from the given input.

@param args [Array] the argument splat.

@return [String] the entity name.

# File lib/percolate/facet/base_facet.rb, line 25
def find(*args)
  nil
end
merge(other) click to toggle source

Merges the given facet with this one.

@param other [BaseFacet] the other facet.

@return [BaseFacet] this facet.

# File lib/percolate/facet/base_facet.rb, line 34
def merge(other)
  BaseFacet.new
end