module LittleWeasel::Modules::Taggable

This module provides methods to manage objects that can be tagged. A tag is a value that can be included as part of a DictionaryKey object to make it unique across locales.

@examples

en-US-<tag>

Where <tag> = a String to make this locale unique across locales
of the same language and region.

Attributes

tag[RW]

Public Instance Methods

tagged?() click to toggle source
# File lib/LittleWeasel/modules/taggable.rb, line 22
def tagged?
  tag.present?
end