instance method
find_home
Ruby on Rails 2.3.18
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
find_home()
No documentation comment.
Source
# File railties/lib/commands/plugin.rb, line 375
def find_home
['HOME', 'USERPROFILE'].each do |homekey|
return ENV[homekey] if ENV[homekey]
end
if ENV['HOMEDRIVE'] && ENV['HOMEPATH']
return "#{ENV['HOMEDRIVE']}:#{ENV['HOMEPATH']}"
end
begin
File.expand_path("~")
rescue StandardError => ex
if File::ALT_SEPARATOR
"C:/"
else
"/"
end
end
end
Defined in railties/lib/commands/plugin.rb line 375
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Repositories