Sha256: 8573e1ee929b5803231bee721bb525430de41450a1405c062006694341918498

Contents?: true

Size: 1.1 KB

Versions: 6

Compression:

Stored size: 1.1 KB

Contents

# Created on 2008-01-19
# Copyright Luke Kanies

# A common module to handle tagging.
module Puppet::Util::Tagging
    # Add a tag to our current list.  These tags will be added to all
    # of the objects contained in this scope.
    def tag(*ary)
        @tags ||= []

        qualified = []

        ary.collect { |tag| tag.to_s.downcase }.each do |tag|
            fail(Puppet::ParseError, "Invalid tag %s" % tag.inspect) unless valid_tag?(tag)
            qualified << tag if tag.include?("::")
            @tags << tag unless @tags.include?(tag)
        end

        # LAK:NOTE See http://snurl.com/21zf8  [groups_google_com] 
        qualified.collect { |name| x = name.split("::") }.flatten.each { |tag| @tags << tag unless @tags.include?(tag) }
    end

    # Are we tagged with the provided tag?
    def tagged?(tag)
        defined?(@tags) and @tags.include?(tag.to_s)
    end

    # Return a copy of the tag list, so someone can't ask for our tags
    # and then modify them.
    def tags
        @tags ||= []
        @tags.dup
    end

    private

    def valid_tag?(tag)
        tag =~ /^\w[-\w:.]*$/
    end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
puppet-0.24.9 lib/puppet/util/tagging.rb
puppet-0.24.4 lib/puppet/util/tagging.rb
puppet-0.24.5 lib/puppet/util/tagging.rb
puppet-0.24.7 lib/puppet/util/tagging.rb
puppet-0.24.6 lib/puppet/util/tagging.rb
puppet-0.24.8 lib/puppet/util/tagging.rb