Method: Nezu::Root#join

Defined in:
lib/nezu.rb

#join(*params) ⇒ Object

you can do Nezu.root.join(‘path’, ‘to’, ‘your’, ‘stuff’) and get the absolute path of your stuff



39
40
41
# File 'lib/nezu.rb', line 39

def join(*params)
  File.join(self, params)
end