Class: Constants
- Inherits:
-
Object
- Object
- Constants
- Defined in:
- lib/brisk/constants.rb
Class Method Summary collapse
Class Method Details
.valet_home ⇒ Object
3 4 5 6 7 8 9 10 11 12 |
# File 'lib/brisk/constants.rb', line 3 def self.valet_home if ENV["HOME"].nil? uid = File.stat(__FILE__).uid home_dir = Etc.getpwuid(uid).dir home_dir + "/.brisk" return home_dir end return ENV["HOME"] + '/.brisk' end |