module Dockerhelper
Constants
- VERSION
Public Class Methods
cmd(cmd, label: '')
click to toggle source
# File lib/dockerhelper.rb, line 9 def cmd(cmd, label: '') Command.new(cmd, label: label).run end
configure(&block)
click to toggle source
# File lib/dockerhelper.rb, line 14 def self.configure(&block) Config.new.tap(&block).tap(&:check_env_vars!) end
Private Instance Methods
cmd(cmd, label: '')
click to toggle source
# File lib/dockerhelper.rb, line 9 def cmd(cmd, label: '') Command.new(cmd, label: label).run end