Module: RubyHelm

Extended by:
ClassMethods
Defined in:
lib/ruby_helm.rb,
lib/ruby_helm/version.rb,
lib/ruby_helm/commands.rb,
lib/ruby_helm/commands/base.rb,
lib/ruby_helm/commands/init.rb,
lib/ruby_helm/commands/reset.rb,
lib/ruby_helm/commands/install.rb,
lib/ruby_helm/commands/upgrade.rb,
lib/ruby_helm/commands/template.rb

Defined Under Namespace

Modules: ClassMethods, Commands Classes: Configuration

Constant Summary collapse

VERSION =
'0.5.0'

Class Attribute Summary collapse

Class Method Summary collapse

Methods included from ClassMethods

clean

Class Attribute Details

.configurationObject



10
11
12
# File 'lib/ruby_helm.rb', line 10

def configuration
  @configuration ||= Configuration.new
end

Class Method Details

.configure {|configuration| ... } ⇒ Object

Yields:



14
15
16
# File 'lib/ruby_helm.rb', line 14

def configure
  yield(configuration)
end

.included(other) ⇒ Object



31
32
33
# File 'lib/ruby_helm.rb', line 31

def self.included(other)
  other.extend(ClassMethods)
end

.reset!Object



18
19
20
# File 'lib/ruby_helm.rb', line 18

def reset!
  @configuration = nil
end