Method: MysqlConf#abs_path

Defined in:
lib/resources/mysql_conf.rb

#abs_path(dir, f) ⇒ Object



110
111
112
113
# File 'lib/resources/mysql_conf.rb', line 110

def abs_path(dir, f)
  return f if f.start_with? '/'
  File.join(dir, f)
end