textacular v2.0.pre4 Release Notes

    • 1 new feature

      • Searchable is now available to specify which columns you want searched:
        require 'textacular/searchable'
        class Game
          extend Searchable(:title)
        end
      

      This also allows Textacular use in Rails without having #search available to all models:

        gem 'textacular', '~> 2.0.pre4', :require => 'textacular/searchable'
      
    • 🛠 1 bugfix

      • ActiveRecord::Base.extend(Textacular) doesn't break #method_missing and #respond_to? anymore