Module: MPatch::Extend::YAML

Defined in:
lib/mpatch/yml.rb

Instance Method Summary collapse

Instance Method Details

#load_file(file_path) ⇒ Object



12
13
14
# File 'lib/mpatch/yml.rb', line 12

def load_file(file_path)
  ::YAML.load(File.open(file_path))
end

#save_file(file_path, config_hash) ⇒ Object



8
9
10
# File 'lib/mpatch/yml.rb', line 8

def save_file(file_path,config_hash)
  File.open(file_path, 'w+') {|f| f.write(config_hash.to_yaml) }
end