Method: Dao::Path#initialize

Defined in:
lib/dao/path.rb

#initialize(*args, &block) ⇒ Path

Returns a new instance of Path.



81
82
83
84
85
# File 'lib/dao/path.rb', line 81

def initialize(*args, &block)
  super(args.join('/'), &block)
  normalize!
  compile!
end