Method: Bibliothecary::Analyser.included

Defined in:
lib/bibliothecary/analyser.rb

.included(base) ⇒ Object



31
32
33
34
35
36
37
38
# File 'lib/bibliothecary/analyser.rb', line 31

def self.included(base)
  base.extend(ClassMethods)

  # Group like-methods into separate modules for easier comprehension.
  base.extend(Bibliothecary::Analyser::Matchers)
  base.extend(Bibliothecary::Analyser::Determinations)
  base.extend(Bibliothecary::Analyser::Analysis)
end