Sha256: d1a4560d73e3a16a91c4019c2622434e18e5d0cee032caa3cfb4c2fe4541e12e

Contents?: true

Size: 508 Bytes

Versions: 1

Compression:

Stored size: 508 Bytes

Contents

module RedisDictionary
  class Configuration

    # The name of the before filter we'll call to authenticate the current user.
    # Defaults to :login_required
    attr_accessor :authentication_method

    # Should the routes of the main app be accessible without
    # the "main_app." prefix ?
    attr_accessor :inline_main_app_named_routes

    # Defaults to nil
    attr_accessor :layout

    attr_accessor :menu_items

    def initialize
      @inline_main_app_named_routes = false
    end


  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
redis_dictionary-1.0.2 lib/redis_dictionary/configuration.rb