Sha256: c377ffb8282c10714d28c846dbaa35e2586580799c3a5afd5c631b93ae747fcc

Contents?: true

Size: 414 Bytes

Versions: 5

Compression:

Stored size: 414 Bytes

Contents

module Rundock
  module Attribute
    class NodeAttribute < Base
      attr_accessor :node
      attr_accessor :nodename
      attr_accessor :task_info
      attr_accessor :errexit

      AVAIL_TAKE_OVERS = [
        :task_info,
        :errexit
      ]

      def finalize_node
        list.each do |k, _v|
          define_attr(k, nil) unless AVAIL_TAKE_OVERS.include?(k)
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rundock-0.2.7 lib/rundock/attribute/node_attribute.rb
rundock-0.2.6 lib/rundock/attribute/node_attribute.rb
rundock-0.2.5 lib/rundock/attribute/node_attribute.rb
rundock-0.2.4 lib/rundock/attribute/node_attribute.rb
rundock-0.2.3 lib/rundock/attribute/node_attribute.rb