Sha256: 41b4c07b830e886991f552ccb80413782239fd6e9bd936e21fce4b6a8f85ccde

Contents?: true

Size: 1.21 KB

Versions: 8

Compression:

Stored size: 1.21 KB

Contents

module Picky

  class Categories

    attr_reader :categories, :category_hash

    delegate :each,
             :first,
             :map,
             :to => :categories

    each_delegate :cache,
                  :dump,
                  :each_category,
                  :empty,
                  :index,
                  :reindex,
                  :to => :categories

    # A list of indexed categories.
    #
    def initialize options = {}
      clear_categories
    end

    # Clears both the array of categories and the hash of categories.
    #
    def clear_categories
      @categories    = []
      @category_hash = {}
    end

    # Add the given category to the list of categories.
    #
    def << category
      categories << category
      category_hash[category.name] = category
    end

    # Find a given category in the categories.
    #
    def [] category_name
      category_name = category_name.to_sym
      category_hash[category_name] || raise_not_found(category_name)
    end
    def raise_not_found category_name
      raise %Q{Index category "#{category_name}" not found. Possible categories: "#{categories.map(&:name).join('", "')}".}
    end

    def to_s
      categories.join(', ')
    end

  end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
picky-3.4.3 lib/picky/categories.rb
picky-3.4.2 lib/picky/categories.rb
picky-3.4.1 lib/picky/categories.rb
picky-3.4.0 lib/picky/categories.rb
picky-3.3.3 lib/picky/categories.rb
picky-3.3.2 lib/picky/categories.rb
picky-3.3.1 lib/picky/categories.rb
picky-3.3.0 lib/picky/categories.rb