Sha256: f6c1860de6f608d633551984bfa77ae3b2c88c1e7f638d69e5420e5bfacdafc2
Contents?: true
Size: 570 Bytes
Versions: 5
Compression:
Stored size: 570 Bytes
Contents
# frozen_string_literal: true module Meetalendar class Configuration # Application layout to be used to index blog posts. # Default is 'comfy/blog/application' attr_accessor :app_layout # # Number of posts per page. Default is 10 # attr_accessor :posts_per_page # # Auto-setting parameter derived from the routes # attr_accessor :public_blog_path # Configuration defaults def initialize # @posts_per_page = 10 @app_layout = "comfy/meetalendar/application" # @public_blog_path = nil end end end
Version data entries
5 entries across 5 versions & 1 rubygems