Sha256: 607cd95b20808fb8b10b1e1a50518e41b1cb44c7048d40289ace900696de6cca

Contents?: true

Size: 475 Bytes

Versions: 2

Compression:

Stored size: 475 Bytes

Contents

module I18nDashboard
  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

2 entries across 2 versions & 1 rubygems

Version Path
i18n_dashboard-0.1.5 lib/i18n_dashboard/configuration.rb
i18n_dashboard-0.1.4 lib/i18n_dashboard/configuration.rb