Module: ActsAsWildSearchable

Extended by:
ActiveSupport::Concern
Defined in:
lib/acts_as_wild_searchable.rb,
lib/acts_as_wild_searchable/version.rb

Overview

This module extends the capabilities to perform queries in a rails model by implementing the method missing on the class and allowing the usage of _like? on every attribute and the side of the wild card for searching

Defined Under Namespace

Modules: ClassMethods

Constant Summary collapse

VERSION =
"1.0.0"

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object

:nodoc:



22
23
24
# File 'lib/acts_as_wild_searchable.rb', line 22

def self.included(base) # :nodoc:
  base.extend ClassMethods
end