Class: Snapsync::AgnosticPath

Inherits:
Object
  • Object
show all
Defined in:
lib/snapsync/remote_pathname.rb

Direct Known Subclasses

RemotePathname

Instance Method Summary collapse

Instance Method Details

#+(path) ⇒ AgnosticPath

Returns:

Raises:

  • (NotImplementedError)


96
97
98
# File 'lib/snapsync/remote_pathname.rb', line 96

def +(path)
  raise NotImplementedError
end

#basenameObject

Raises:

  • (NotImplementedError)


65
66
67
# File 'lib/snapsync/remote_pathname.rb', line 65

def basename
  raise NotImplementedError
end

#cleanpathObject

Raises:

  • (NotImplementedError)


80
81
82
# File 'lib/snapsync/remote_pathname.rb', line 80

def cleanpath
  raise NotImplementedError
end

#directory?Boolean

Returns:

  • (Boolean)

Raises:

  • (NotImplementedError)


59
60
61
# File 'lib/snapsync/remote_pathname.rb', line 59

def directory?
  raise NotImplementedError
end

#dirnameObject

Raises:

  • (NotImplementedError)


68
69
70
# File 'lib/snapsync/remote_pathname.rb', line 68

def dirname
  raise NotImplementedError
end

#each_childObject

Raises:

  • (NotImplementedError)


74
75
76
# File 'lib/snapsync/remote_pathname.rb', line 74

def each_child
  raise NotImplementedError
end

#exist?Boolean

Returns:

  • (Boolean)

Raises:

  • (NotImplementedError)


53
54
55
# File 'lib/snapsync/remote_pathname.rb', line 53

def exist?
  raise NotImplementedError
end

#expand_pathObject

Raises:

  • (NotImplementedError)


77
78
79
# File 'lib/snapsync/remote_pathname.rb', line 77

def expand_path
  raise NotImplementedError
end

#file?Boolean

Returns:

  • (Boolean)

Raises:

  • (NotImplementedError)


56
57
58
# File 'lib/snapsync/remote_pathname.rb', line 56

def file?
  raise NotImplementedError
end

#findmntObject

Raises:

  • (NotImplementedError)


109
110
111
# File 'lib/snapsync/remote_pathname.rb', line 109

def findmnt
  raise NotImplementedError
end

#mkdirObject

Raises:

  • (NotImplementedError)


83
84
85
# File 'lib/snapsync/remote_pathname.rb', line 83

def mkdir
  raise NotImplementedError
end

#mkpathObject

Raises:

  • (NotImplementedError)


86
87
88
# File 'lib/snapsync/remote_pathname.rb', line 86

def mkpath
  raise NotImplementedError
end

#mountpoint?Boolean

Returns:

  • (Boolean)

Raises:

  • (NotImplementedError)


62
63
64
# File 'lib/snapsync/remote_pathname.rb', line 62

def mountpoint?
  raise NotImplementedError
end

#open(flags, &block) ⇒ Object

Raises:

  • (NotImplementedError)


102
103
104
# File 'lib/snapsync/remote_pathname.rb', line 102

def open(flags, &block)
  raise NotImplementedError
end

#parentObject

Raises:

  • (NotImplementedError)


71
72
73
# File 'lib/snapsync/remote_pathname.rb', line 71

def parent
  raise NotImplementedError
end

#path_partString

Returns:

  • (String)

Raises:

  • (NotImplementedError)


114
115
116
# File 'lib/snapsync/remote_pathname.rb', line 114

def path_part
  raise NotImplementedError
end

#readObject

Raises:

  • (NotImplementedError)


99
100
101
# File 'lib/snapsync/remote_pathname.rb', line 99

def read
  raise NotImplementedError
end

#rmtreeObject

Raises:

  • (NotImplementedError)


89
90
91
# File 'lib/snapsync/remote_pathname.rb', line 89

def rmtree
  raise NotImplementedError
end

#touchObject

Raises:

  • (NotImplementedError)


105
106
107
# File 'lib/snapsync/remote_pathname.rb', line 105

def touch
  raise NotImplementedError
end

Raises:

  • (NotImplementedError)


92
93
94
# File 'lib/snapsync/remote_pathname.rb', line 92

def unlink
  raise NotImplementedError
end