class Kakine::Option

Public Class Methods

dryrun?() click to toggle source
# File lib/kakine/option.rb, line 18
def dryrun?
  @@options["dryrun"]
end
set_options(options) click to toggle source
# File lib/kakine/option.rb, line 6
def set_options(options)
  @@options = options
end
tenant_name() click to toggle source
# File lib/kakine/option.rb, line 14
def tenant_name
  @@options["tenant"]
end
yaml_name() click to toggle source
# File lib/kakine/option.rb, line 10
def yaml_name
  @@options[:filename] ? @@options[:filename] : "#{@@options[:tenant]}.yaml"
end