Class: Pathname
- Inherits:
-
Object
- Object
- Pathname
- Defined in:
- lib/core_ext/pathname.rb
Overview
Provides extensions to the Pathname class provided by Ruby's standard Library
Instance Method Summary collapse
-
#/(path) ⇒ Pathname
Appends a path to this path and expands it.
Instance Method Details
#/(path) ⇒ Pathname
Appends a path to this path and expands it
16 17 18 |
# File 'lib/core_ext/pathname.rb', line 16 def /(path) (self + path). end |