Sha256: b32718efa374b38f24171aa9c53d54b6c2bd28e00cc47feb7729e68976c67670
Contents?: true
Size: 358 Bytes
Versions: 24
Compression:
Stored size: 358 Bytes
Contents
require 'curly/error' module Curly class PresenterNotFound < Error attr_reader :path def initialize(path) @path = path end def message "error compiling `#{path}`: could not find #{presenter_class_name}" end private def presenter_class_name Curly::Presenter.presenter_name_for_path(path) end end end
Version data entries
24 entries across 24 versions & 1 rubygems