From: "Matthew K. Williams" Date: 2011-06-18T04:45:56+09:00 Subject: Re: default config file location On Sat, 18 Jun 2011, Chad Perrin wrote: > Is there a "better" way to specify a default config file location than > this? > > File.expand_path('~') + "/#{filename}" Depending on the shell, '~' may not be defined. $HOME is a better choice generally. Matt