Sha256: 1b89c6a382f7115e920ccf77e062307ff6eb9cc641bda224743b7b7caa167399
Contents?: true
Size: 532 Bytes
Versions: 4
Compression:
Stored size: 532 Bytes
Contents
module ComfyBlog class Configuration # Number of posts per page. Default is 10 attr_accessor :posts_per_page # Comments can be automatically approved/published by changing this setting # Default is false. attr_accessor :auto_publish_comments # A default author can be specified for posts attr_accessor :default_author # Configuration defaults def initialize @posts_per_page = 10 @auto_publish_comments = false @default_author = nil end end end
Version data entries
4 entries across 4 versions & 1 rubygems