Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/daemon_kit/core_ext/string.rb

Instance Method Summary collapse

Instance Method Details

#to_absolute_pathObject

Assuming the string is a file or path name, convert it into an absolute path.



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/daemon_kit/core_ext/string.rb', line 7

def to_absolute_path
  # Pathname is incompatible with Windows, but Windows doesn't have
  # real symlinks so File.expand_path is safe.
  if RUBY_PLATFORM =~ /(:?mswin|mingw)/
    File.expand_path( self )

    # Otherwise use Pathname#realpath which respects symlinks.
  else
    begin
      File.expand_path( Pathname.new( self ).realpath.to_s )
    rescue Errno::ENOENT
      File.expand_path( Pathname.new( self ).cleanpath.to_s )
    end
  end
end