Method: Monograph::Book#chapters

Defined in:
lib/monograph/book.rb

#chaptersObject



22
23
24
# File 'lib/monograph/book.rb', line 22

def chapters
  @chapters ||= Dir[File.join(@path, '*.md')].map { |path| Monograph::Chapter.new(self, path) }
end