Sha256: ccba22756b6fd813dec8327139297165020d66d767af33b1528e4cfd3401a6d0

Contents?: true

Size: 1.15 KB

Versions: 15

Compression:

Stored size: 1.15 KB

Contents

module Blogo
  class Config
    attr_accessor :site_title
    attr_accessor :site_subtitle

    attr_accessor :table_name_prefix

    attr_accessor :posts_per_page
    attr_accessor :paginator_size
    attr_accessor :recent_posts

    attr_accessor :keywords

    attr_accessor :disqus_shortname
    attr_accessor :twitter_username
    attr_accessor :github_username
    attr_accessor :show_rss_icon
    attr_accessor :google_analytics_id

    attr_accessor :use_ckeditor

    attr_reader :markup_lang

    # Set default values.
    def initialize
      @site_title          = 'Blogo'
      @site_subtitle       = 'Mountable blog engine for Ruby on Rails'
      @table_name_prefix   = 'blogo_'
      @posts_per_page      = 10
      @paginator_size      = 5
      @recent_posts        = 5
      @disqus_shortname    = nil
      @google_analytics_id = nil
      @use_ckeditor        = true
      @keywords            = %w(blog)
      @markup_lang         = :html
      @show_rss_icon       = true
    end

    def markup_lang=(lang)
      # Try to find a renderer for the format otherwise raise
      Blogo::Renderer.get(lang.to_sym)
      @format = lang.to_sym
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
blogo-0.1.4 lib/blogo/config.rb
blogo-0.1.3 lib/blogo/config.rb
blogo-0.1.2 lib/blogo/config.rb
blogo-0.1.1 lib/blogo/config.rb
blogo-0.1.0 lib/blogo/config.rb
blogo-0.0.10 lib/blogo/config.rb
blogo-0.0.9 lib/blogo/config.rb
blogo-0.0.8 lib/blogo/config.rb
blogo-0.0.7 lib/blogo/config.rb
blogo-0.0.6 lib/blogo/config.rb
blogo-0.0.5 lib/blogo/config.rb
blogo-0.0.4 lib/blogo/config.rb
blogo-0.0.3 lib/blogo/config.rb
blogo-0.0.2 lib/blogo/config.rb
blogo-0.0.1 lib/blogo/config.rb