Add directory/file to path
path = ArubaPath.new 'path/to/dir.d' path << 'subdir.d # or path.push 'subdir.d puts path # => path/to/dir.d/subdir.d
Parameters:
The path to be added
32 33 34
# File 'lib/aruba/aruba_path.rb', line 32 def push(p) @obj << p end