class Rummager::ContainerEnterTask

Attributes

env_name[RW]

Public Class Methods

new(task_name, app) click to toggle source
Calls superclass method
# File lib/rummager/containers.rb, line 232
def initialize(task_name, app)
  super(task_name,app)
  @actions << Proc.new {
    puts "Entering: #{@container_name}"
    exec "docker attach #{docker_obj.id}"
  }
end

Public Instance Methods

needed?() click to toggle source
# File lib/rummager/containers.rb, line 228
def needed?
  true
end