Method: WWMD.path
- Defined in:
- lib/wwmd.rb
.path(*args) ⇒ Object
Returns the lpath for the module. If any arguments are given, they will be joined to the end of the path using File.join.
48 49 50 |
# File 'lib/wwmd.rb', line 48 def self.path( *args ) args.empty? ? PATH : ::File.join(PATH, args.flatten) end |