Class: Pathname

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

Overview

Add a method to Pathname to join paths on /

Instance Method Summary collapse

Instance Method Details

#/(other) ⇒ Object



8
9
10
# File 'lib/dapr.rb', line 8

def /(other)
  join(other.to_s)
end