Method: Mangdown::Chapter#setup_path
- Defined in:
- lib/mangdown/chapter.rb
#setup_path(dir = nil) ⇒ Object
33 34 35 36 37 38 |
# File 'lib/mangdown/chapter.rb', line 33 def setup_path(dir = nil) dir ||= manga.path path = Tools.file_join(dir, name) path = Tools.valid_path_name(path) @path = Tools.relative_or_absolute_path(path) end |