class Takeltau::SelfConfig

takeltau bit

Public Instance Methods

active() click to toggle source
# File lib/takeltau/self/config/cli.rb, line 75
def active
  config_active_yaml = hash_to_yaml(config.active)
  exit false if config_active_yaml == false
  say config_active_yaml
  true
end
default() click to toggle source
# File lib/takeltau/self/config/cli.rb, line 24
def default
  config_default_yaml = hash_to_yaml(config.default)
  exit false if config_default_yaml == false
  say config_default_yaml
  true
end
home() click to toggle source
# File lib/takeltau/self/config/cli.rb, line 41
def home
  config_home_yaml = hash_to_yaml(config.home)
  exit false if config_home_yaml == false
  say config_home_yaml
  true
end
project() click to toggle source
# File lib/takeltau/self/config/cli.rb, line 58
def project
  config_project_yaml = hash_to_yaml(config.project)
  exit false if config_project_yaml == false
  say config_project_yaml
  true
end