Method: Doing::Util#user_home

Defined in:
lib/doing/util.rb

#user_homeObject



8
9
10
11
12
13
14
# File 'lib/doing/util.rb', line 8

def user_home
  if Dir.respond_to?('home')
    Dir.home
  else
    File.expand_path('~')
  end
end