Method: Webgen::Path#acn
- Defined in:
- lib/webgen/path.rb
#acn ⇒ Object
The absolute canonical name of this path.
Triggers analyzation of the path if invoked.
197 198 199 200 201 202 203 |
# File 'lib/webgen/path.rb', line 197 def acn if @path.include?('#') self.class.new(parent_path).acn << cn else parent_path + cn end end |