Sha256: ec6a927039d8bf9d4fdfa2941e1723ebecf58fceb9587a672b9d62b6eed3820c

Contents?: true

Size: 504 Bytes

Versions: 2

Compression:

Stored size: 504 Bytes

Contents

module Fuel
  class Configuration

    # What kind of comments do you want to add to your blog ? (:active_record, :disqus or :no)
    attr_accessor :layout, :blog_title, :disqus_name, :twitter, :username, :password, :helpers, :paginates_per

    def initialize
      @layout = "application"
      @blog_title = "Blog"
      @disqus_name = nil
      @twitter = false
      @username = "admin"
      @password = "password"
      @helpers = ["ApplicationHelper"]
      @paginates_per = 5
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fuel-0.3.3 lib/fuel/configuration.rb
fuel-0.3.2 lib/fuel/configuration.rb