Sha256: e927ee6030806951cad5f2038ed99173d440d68f38be1941e9a7650d81f210d4

Contents?: true

Size: 419 Bytes

Versions: 2

Compression:

Stored size: 419 Bytes

Contents

#
#
# A class for node services or node tags.
#
#

module LeapCli; module Config

  class Tag < Object
    attr_reader :node_list

    def initialize(environment=nil)
      super(environment)
      @node_list = Config::ObjectList.new
    end

    # don't copy the node list pointer when this object is dup'ed.
    def initialize_copy(orig)
      super
      @node_list = Config::ObjectList.new
    end

  end

end; end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
leap_cli-1.8.1 lib/leap_cli/config/tag.rb
leap_cli-1.8 lib/leap_cli/config/tag.rb