Sha256: b4a004c3d07091df1d0da83cc319653141d378e25688991251a6d536c039b674
Contents?: true
Size: 501 Bytes
Versions: 57
Compression:
Stored size: 501 Bytes
Contents
module Lono::Core class Config PATHS = { definitions_path: "app/definitions", helpers_path: "app/helpers", content_path: "app/content", partials_path: "app/partials", scripts_path: "app/scripts", templates_path: "app/templates", user_data_path: "app/user_data", } PATHS.each do |meth, path| define_method meth do "#{Lono.blueprint_root}/#{path}" end end def output_path "#{Lono.root}/output" end end end
Version data entries
57 entries across 57 versions & 1 rubygems