Sha256: d774e06e8fa29a243009d301e630fed3700be9d318bbec2b6e4dfba777783b87

Contents?: true

Size: 1.5 KB

Versions: 9

Compression:

Stored size: 1.5 KB

Contents

# This file sets up Sparkly Auth to work properly with Rails. It was generated
# by "script/generate sparkly config" and can be regenerated with that command, though 
# you may not want to actually do that if you've made changes to this file.
#
# You are also HIGHLY encouraged to check out the Auth::Configuration class documentation
# for a list of all the options you can set here. There are a LOT of them.
#
Auth.configure do |config|
  config.authenticate :user
    # Adds a model to be authenticated. See the Auth::Model class for information on
    # what options you can pass. Here are some common examples:
    #  
    #   config.authenticate :user, :accounts_controller => "users", :sessions_controller => "user_sessions"
    #   config.authenticate :user, :key => "login"
    #
    # By default, :key is "email" and the controllers are Sparkly's internal controllers.
    # (Don't forget you can also script/generate controllers or script/generate views to
    # remove the overhead of setting up your own.)
    #
  
  # You can also configure the various behaviors (as long as they support configurations):
  #  config.remember_me.token_theft_message =
  #      "Your account may have been hijacked recently! Verify that all settings are correct."
  #
  #  config.remember_me.duration = 6.months
  #
  # See the class documentation for the behaviors' configurations themselves for details
  # about these options. (For example, see Auth::Behaviors::RememberMe::Configuration for
  # the Remember Me configuration options.)
end

Version data entries

9 entries across 5 versions & 1 rubygems

Version Path
sparkly-auth-1.2.1 spec_env/rails3/config/initializers/sparkly_authentication.rb
sparkly-auth-1.2.1 generators/sparkly/templates/initializer.rb
sparkly-auth-1.2.1 spec_env/rails2/config/initializers/sparkly_authentication.rb
sparkly-auth-1.1.0 spec_env/rails2/config/initializers/sparkly_authentication.rb
sparkly-auth-1.1.0 generators/sparkly/templates/initializer.rb
sparkly-auth-1.1.0 spec_env/rails3/config/initializers/sparkly_authentication.rb
sparkly-auth-1.0.2 generators/sparkly/templates/initializer.rb
sparkly-auth-1.0.1 generators/sparkly/templates/initializer.rb
sparkly-auth-1.0.0 generators/sparkly/templates/initializer.rb