module Sohm::IndexAll

Public Class Methods

included(model) click to toggle source
# File lib/sohm/index_all.rb, line 3
def self.included(model)
  model.index :all
  model.extend ClassMethods
end

Public Instance Methods

all() click to toggle source
# File lib/sohm/index_all.rb, line 8
def all
  "all"
end