instance method find_home

Ruby on Rails 2.2.3

Since v2.2.3 Last seen in v2.3.18

Available in: v2.2.3 v2.3.18

Signature

find_home()

No documentation comment.

Source
# File railties/lib/commands/plugin.rb, line 374
  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 374 · View on GitHub · Improve this page · Find usages on GitHub

Defined in Repositories

Type at least 2 characters to search.

↑↓ navigate · open · esc close