Module: Vagabond::Helpers

Included in:
InternalConfiguration, Kitchen, Knife, Spec, Uploader, Vagabond
Defined in:
lib/vagabond/helpers.rb

Constant Summary collapse

RAND_CHARS =
('a'..'z').map(&:to_s) + ('A'..'Z').map(&:to_s) + (0..9).map(&:to_s)
GEN_NAME_LENGTH =
10

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



100
101
102
103
104
105
106
107
# File 'lib/vagabond/helpers.rb', line 100

def included(klass)
  klass.class_eval do
    class << self
      attr_accessor :ui
    end
    attr_accessor :vagabondfile, :internal_config, :name, :ui
  end
end