Sha256: eba19ac9f9958c2b1b9689fd37ceffa8938304e64385c09064d58d99be35a16a

Contents?: true

Size: 615 Bytes

Versions: 4

Compression:

Stored size: 615 Bytes

Contents

module Rundock
  module Attribute
    class NodeAttribute < Base
      attr_accessor :nodename
      attr_accessor :nodeinfo
      attr_accessor :task_info
      attr_accessor :filtered_tasks
      attr_accessor :errexit
      attr_accessor :cwd
      attr_accessor :sudo
      attr_accessor :dry_run
      attr_accessor :hooks

      AVAIL_TAKE_OVERS = %i[
        task_info
        errexit
        cwd
        sudo
        dry_run
      ]

      def init_except_take_over_state
        list.each_key do |k|
          define_attr(k, nil) unless AVAIL_TAKE_OVERS.include?(k)
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rundock-1.2.1 lib/rundock/attribute/node_attribute.rb
rundock-1.2.0 lib/rundock/attribute/node_attribute.rb
rundock-1.1.7 lib/rundock/attribute/node_attribute.rb
rundock-1.1.6 lib/rundock/attribute/node_attribute.rb