Sha256: 78ac17438b4f628638dcfc3e0deedebbbb3e146f644be4d7cb6d22d320410764

Contents?: true

Size: 210 Bytes

Versions: 1

Compression:

Stored size: 210 Bytes

Contents

require 'pathname'

class Pathname

  alias_method :realpath_without_vfs, :realpath

  def realpath
    vfs_path? ? expand_path : realpath_without_vfs
  end

  def vfs_path?
    @path.to_s =~ /^vfs:/
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
org.torquebox.vfs-1.0.0.Beta23 lib/vfs/ext/pathname.rb