Methods
- D
- E
- I
- N
- R
Attributes
[RW] | name | |
[RW] | target |
Class Public methods
Source: show
# File lib/fakefs/fake/symlink.rb, line 6 def initialize(target) @target = target end
Instance Public methods
Source: show
# File lib/fakefs/fake/symlink.rb, line 18 def delete parent.delete(self) end
Source: show
# File lib/fakefs/fake/symlink.rb, line 14 def entry FileSystem.find(target) end
Source: show
# File lib/fakefs/fake/symlink.rb, line 10 def inspect "symlink(#{target.split('/').last})" end
Source: show
# File lib/fakefs/fake/symlink.rb, line 22 def respond_to?(method) entry.respond_to?(method) end