class DebugHelper::FileHandler

Public Instance Methods

calls_for_class() click to toggle source
# File lib/debug_helper/file_handler.rb, line 5
def calls_for_class
  path = obj.path
  [
      [:absolute_path, path],
      [:atime, path],
      [:ctime, path],
      [:executable?, path],
      [:exist?, path],
      [:ftype, path],
      [:mtime, path],
      [:path, path],
      [:pipe?, path],
      [:readable?, path],
      [:realpath, path],
      [:setgid?, path],
      [:setuid?, path],
      [:size, path],
      [:socket?, path],
      [:symlink?, path],
      [:writable?, path],
  ]
end