Sha256: d3f7a95f6ed2adc92f30f47edf7544c5ecf3e22798eb469fb6fdf862ccc78d01

Contents?: true

Size: 477 Bytes

Versions: 4

Compression:

Stored size: 477 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

    def initialize
      @inline_main_app_named_routes = false
    end


  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
redis_dictionary-1.0.1 lib/redis_dictionary/configuration.rb
redis_dictionary-1.0.0 lib/redis_dictionary/configuration.rb
redis_dictionary-0.9.9 lib/redis_dictionary/configuration.rb
redis_dictionary-0.9.8 lib/redis_dictionary/configuration.rb