mongo_session_store-rails3 3.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +6 -0
- data/Gemfile +32 -0
- data/README.md +128 -0
- data/Rakefile +49 -0
- data/VERSION +1 -0
- data/lib/mongo_session_store-rails3.rb +32 -0
- data/lib/mongo_session_store/mongo_mapper_store.rb +20 -0
- data/lib/mongo_session_store/mongo_store.rb +80 -0
- data/lib/mongo_session_store/mongo_store_base.rb +77 -0
- data/lib/mongo_session_store/mongoid_store.rb +34 -0
- data/mongo_session_store-rails3.gemspec +16 -0
- data/perf/benchmark.rb +93 -0
- data/spec/integration_with_devise_spec.rb +84 -0
- data/spec/rails_3.0_app/.gitignore +4 -0
- data/spec/rails_3.0_app/README +256 -0
- data/spec/rails_3.0_app/Rakefile +7 -0
- data/spec/rails_3.0_app/app/controllers/application_controller.rb +3 -0
- data/spec/rails_3.0_app/app/controllers/home_controller.rb +4 -0
- data/spec/rails_3.0_app/app/helpers/application_helper.rb +2 -0
- data/spec/rails_3.0_app/app/models/user.rb +8 -0
- data/spec/rails_3.0_app/app/views/devise/confirmations/new.html.erb +12 -0
- data/spec/rails_3.0_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/spec/rails_3.0_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/spec/rails_3.0_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/spec/rails_3.0_app/app/views/devise/passwords/edit.html.erb +16 -0
- data/spec/rails_3.0_app/app/views/devise/passwords/new.html.erb +12 -0
- data/spec/rails_3.0_app/app/views/devise/registrations/edit.html.erb +25 -0
- data/spec/rails_3.0_app/app/views/devise/registrations/new.html.erb +18 -0
- data/spec/rails_3.0_app/app/views/devise/sessions/new.html.erb +17 -0
- data/spec/rails_3.0_app/app/views/devise/shared/_links.erb +25 -0
- data/spec/rails_3.0_app/app/views/devise/unlocks/new.html.erb +12 -0
- data/spec/rails_3.0_app/app/views/home/index.html.erb +10 -0
- data/spec/rails_3.0_app/app/views/layouts/application.html.erb +15 -0
- data/spec/rails_3.0_app/config.ru +4 -0
- data/spec/rails_3.0_app/config/application.rb +47 -0
- data/spec/rails_3.0_app/config/boot.rb +6 -0
- data/spec/rails_3.0_app/config/environment.rb +5 -0
- data/spec/rails_3.0_app/config/environments/development.rb +26 -0
- data/spec/rails_3.0_app/config/environments/production.rb +49 -0
- data/spec/rails_3.0_app/config/environments/test.rb +35 -0
- data/spec/rails_3.0_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/rails_3.0_app/config/initializers/devise.rb +204 -0
- data/spec/rails_3.0_app/config/initializers/inflections.rb +10 -0
- data/spec/rails_3.0_app/config/initializers/mime_types.rb +5 -0
- data/spec/rails_3.0_app/config/initializers/secret_token.rb +7 -0
- data/spec/rails_3.0_app/config/initializers/session_store.rb +8 -0
- data/spec/rails_3.0_app/config/locales/devise.en.yml +53 -0
- data/spec/rails_3.0_app/config/locales/en.yml +5 -0
- data/spec/rails_3.0_app/config/mongo.yml +18 -0
- data/spec/rails_3.0_app/config/mongoid.yml +20 -0
- data/spec/rails_3.0_app/config/routes.rb +4 -0
- data/spec/rails_3.0_app/lib/tasks/.gitkeep +0 -0
- data/spec/rails_3.0_app/public/404.html +26 -0
- data/spec/rails_3.0_app/public/422.html +26 -0
- data/spec/rails_3.0_app/public/500.html +26 -0
- data/spec/rails_3.0_app/public/favicon.ico +0 -0
- data/spec/rails_3.0_app/public/javascripts/.gitkeep +0 -0
- data/spec/rails_3.0_app/public/javascripts/application.js +0 -0
- data/spec/rails_3.0_app/public/robots.txt +5 -0
- data/spec/rails_3.0_app/public/stylesheets/.gitkeep +0 -0
- data/spec/rails_3.0_app/script/rails +6 -0
- data/spec/rails_3.0_app/vendor/plugins/.gitkeep +0 -0
- data/spec/rails_3.1_app/.gitignore +5 -0
- data/spec/rails_3.1_app/README +261 -0
- data/spec/rails_3.1_app/Rakefile +7 -0
- data/spec/rails_3.1_app/app/assets/javascripts/application.js +7 -0
- data/spec/rails_3.1_app/app/assets/stylesheets/application.css +7 -0
- data/spec/rails_3.1_app/app/controllers/application_controller.rb +3 -0
- data/spec/rails_3.1_app/app/controllers/home_controller.rb +4 -0
- data/spec/rails_3.1_app/app/helpers/application_helper.rb +2 -0
- data/spec/rails_3.1_app/app/mailers/.gitkeep +0 -0
- data/spec/rails_3.1_app/app/models/.gitkeep +0 -0
- data/spec/rails_3.1_app/app/models/user.rb +8 -0
- data/spec/rails_3.1_app/app/views/devise/confirmations/new.html.erb +12 -0
- data/spec/rails_3.1_app/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/spec/rails_3.1_app/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/spec/rails_3.1_app/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/spec/rails_3.1_app/app/views/devise/passwords/edit.html.erb +16 -0
- data/spec/rails_3.1_app/app/views/devise/passwords/new.html.erb +12 -0
- data/spec/rails_3.1_app/app/views/devise/registrations/edit.html.erb +25 -0
- data/spec/rails_3.1_app/app/views/devise/registrations/new.html.erb +18 -0
- data/spec/rails_3.1_app/app/views/devise/sessions/new.html.erb +17 -0
- data/spec/rails_3.1_app/app/views/devise/shared/_links.erb +25 -0
- data/spec/rails_3.1_app/app/views/devise/unlocks/new.html.erb +12 -0
- data/spec/rails_3.1_app/app/views/home/index.html.erb +10 -0
- data/spec/rails_3.1_app/app/views/layouts/application.html.erb +15 -0
- data/spec/rails_3.1_app/config.ru +4 -0
- data/spec/rails_3.1_app/config/application.rb +47 -0
- data/spec/rails_3.1_app/config/boot.rb +6 -0
- data/spec/rails_3.1_app/config/environment.rb +5 -0
- data/spec/rails_3.1_app/config/environments/development.rb +27 -0
- data/spec/rails_3.1_app/config/environments/production.rb +54 -0
- data/spec/rails_3.1_app/config/environments/test.rb +39 -0
- data/spec/rails_3.1_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/rails_3.1_app/config/initializers/devise.rb +204 -0
- data/spec/rails_3.1_app/config/initializers/inflections.rb +10 -0
- data/spec/rails_3.1_app/config/initializers/mime_types.rb +5 -0
- data/spec/rails_3.1_app/config/initializers/secret_token.rb +7 -0
- data/spec/rails_3.1_app/config/initializers/session_store.rb +8 -0
- data/spec/rails_3.1_app/config/initializers/wrap_parameters.rb +12 -0
- data/spec/rails_3.1_app/config/locales/devise.en.yml +53 -0
- data/spec/rails_3.1_app/config/locales/en.yml +5 -0
- data/spec/rails_3.1_app/config/mongo.yml +18 -0
- data/spec/rails_3.1_app/config/mongoid.yml +20 -0
- data/spec/rails_3.1_app/config/routes.rb +4 -0
- data/spec/rails_3.1_app/lib/tasks/.gitkeep +0 -0
- data/spec/rails_3.1_app/log/.gitkeep +0 -0
- data/spec/rails_3.1_app/public/404.html +26 -0
- data/spec/rails_3.1_app/public/422.html +26 -0
- data/spec/rails_3.1_app/public/500.html +26 -0
- data/spec/rails_3.1_app/public/favicon.ico +0 -0
- data/spec/rails_3.1_app/public/robots.txt +5 -0
- data/spec/rails_3.1_app/script/rails +6 -0
- data/spec/rails_3.1_app/vendor/assets/stylesheets/.gitkeep +0 -0
- data/spec/rails_3.1_app/vendor/plugins/.gitkeep +0 -0
- data/spec/spec_helper.rb +33 -0
- metadata +318 -0
@@ -0,0 +1,7 @@
|
|
1
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
2
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
3
|
+
|
4
|
+
require File.expand_path('../config/application', __FILE__)
|
5
|
+
require 'rake'
|
6
|
+
|
7
|
+
Rails30App::Application.load_tasks
|
@@ -0,0 +1,8 @@
|
|
1
|
+
class User
|
2
|
+
include Mongoid::Document
|
3
|
+
# Include default devise modules. Others available are:
|
4
|
+
# :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
|
5
|
+
devise :database_authenticatable, :registerable, :validatable
|
6
|
+
#:recoverable, :rememberable, :trackable, :validatable
|
7
|
+
|
8
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<h2>Resend confirmation instructions</h2>
|
2
|
+
|
3
|
+
<%= form_for(resource, :as => resource_name, :url => confirmation_path(resource_name), :html => { :method => :post }) do |f| %>
|
4
|
+
<%= devise_error_messages! %>
|
5
|
+
|
6
|
+
<p><%= f.label :email %><br />
|
7
|
+
<%= f.email_field :email %></p>
|
8
|
+
|
9
|
+
<p><%= f.submit "Resend confirmation instructions" %></p>
|
10
|
+
<% end %>
|
11
|
+
|
12
|
+
<%= render :partial => "devise/shared/links" %>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<p>Hello <%= @resource.email %>!</p>
|
2
|
+
|
3
|
+
<p>Someone has requested a link to change your password, and you can do this through the link below.</p>
|
4
|
+
|
5
|
+
<p><%= link_to 'Change my password', edit_password_url(@resource, :reset_password_token => @resource.reset_password_token) %></p>
|
6
|
+
|
7
|
+
<p>If you didn't request this, please ignore this email.</p>
|
8
|
+
<p>Your password won't change until you access the link above and create a new one.</p>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<p>Hello <%= @resource.email %>!</p>
|
2
|
+
|
3
|
+
<p>Your account has been locked due to an excessive amount of unsuccessful sign in attempts.</p>
|
4
|
+
|
5
|
+
<p>Click the link below to unlock your account:</p>
|
6
|
+
|
7
|
+
<p><%= link_to 'Unlock my account', unlock_url(@resource, :unlock_token => @resource.unlock_token) %></p>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<h2>Change your password</h2>
|
2
|
+
|
3
|
+
<%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :put }) do |f| %>
|
4
|
+
<%= devise_error_messages! %>
|
5
|
+
<%= f.hidden_field :reset_password_token %>
|
6
|
+
|
7
|
+
<p><%= f.label :password, "New password" %><br />
|
8
|
+
<%= f.password_field :password %></p>
|
9
|
+
|
10
|
+
<p><%= f.label :password_confirmation, "Confirm new password" %><br />
|
11
|
+
<%= f.password_field :password_confirmation %></p>
|
12
|
+
|
13
|
+
<p><%= f.submit "Change my password" %></p>
|
14
|
+
<% end %>
|
15
|
+
|
16
|
+
<%= render :partial => "devise/shared/links" %>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<h2>Forgot your password?</h2>
|
2
|
+
|
3
|
+
<%= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post }) do |f| %>
|
4
|
+
<%= devise_error_messages! %>
|
5
|
+
|
6
|
+
<p><%= f.label :email %><br />
|
7
|
+
<%= f.email_field :email %></p>
|
8
|
+
|
9
|
+
<p><%= f.submit "Send me reset password instructions" %></p>
|
10
|
+
<% end %>
|
11
|
+
|
12
|
+
<%= render :partial => "devise/shared/links" %>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<h2>Edit <%= resource_name.to_s.humanize %></h2>
|
2
|
+
|
3
|
+
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f| %>
|
4
|
+
<%= devise_error_messages! %>
|
5
|
+
|
6
|
+
<p><%= f.label :email %><br />
|
7
|
+
<%= f.email_field :email %></p>
|
8
|
+
|
9
|
+
<p><%= f.label :password %> <i>(leave blank if you don't want to change it)</i><br />
|
10
|
+
<%= f.password_field :password %></p>
|
11
|
+
|
12
|
+
<p><%= f.label :password_confirmation %><br />
|
13
|
+
<%= f.password_field :password_confirmation %></p>
|
14
|
+
|
15
|
+
<p><%= f.label :current_password %> <i>(we need your current password to confirm your changes)</i><br />
|
16
|
+
<%= f.password_field :current_password %></p>
|
17
|
+
|
18
|
+
<p><%= f.submit "Update" %></p>
|
19
|
+
<% end %>
|
20
|
+
|
21
|
+
<h3>Cancel my account</h3>
|
22
|
+
|
23
|
+
<p>Unhappy? <%= link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete %>.</p>
|
24
|
+
|
25
|
+
<%= link_to "Back", :back %>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<h2>Sign up</h2>
|
2
|
+
|
3
|
+
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
|
4
|
+
<%= devise_error_messages! %>
|
5
|
+
|
6
|
+
<p><%= f.label :email %><br />
|
7
|
+
<%= f.email_field :email %></p>
|
8
|
+
|
9
|
+
<p><%= f.label :password %><br />
|
10
|
+
<%= f.password_field :password %></p>
|
11
|
+
|
12
|
+
<p><%= f.label :password_confirmation %><br />
|
13
|
+
<%= f.password_field :password_confirmation %></p>
|
14
|
+
|
15
|
+
<p><%= f.submit "Sign up" %></p>
|
16
|
+
<% end %>
|
17
|
+
|
18
|
+
<%= render :partial => "devise/shared/links" %>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<h2>Sign in</h2>
|
2
|
+
|
3
|
+
<%= form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f| %>
|
4
|
+
<p><%= f.label :email %><br />
|
5
|
+
<%= f.email_field :email %></p>
|
6
|
+
|
7
|
+
<p><%= f.label :password %><br />
|
8
|
+
<%= f.password_field :password %></p>
|
9
|
+
|
10
|
+
<% if devise_mapping.rememberable? -%>
|
11
|
+
<p><%= f.check_box :remember_me %> <%= f.label :remember_me %></p>
|
12
|
+
<% end -%>
|
13
|
+
|
14
|
+
<p><%= f.submit "Sign in" %></p>
|
15
|
+
<% end %>
|
16
|
+
|
17
|
+
<%= render :partial => "devise/shared/links" %>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<%- if controller_name != 'sessions' %>
|
2
|
+
<%= link_to "Sign in", new_session_path(resource_name) %><br />
|
3
|
+
<% end -%>
|
4
|
+
|
5
|
+
<%- if devise_mapping.registerable? && controller_name != 'registrations' %>
|
6
|
+
<%= link_to "Sign up", new_registration_path(resource_name) %><br />
|
7
|
+
<% end -%>
|
8
|
+
|
9
|
+
<%- if devise_mapping.recoverable? && controller_name != 'passwords' %>
|
10
|
+
<%= link_to "Forgot your password?", new_password_path(resource_name) %><br />
|
11
|
+
<% end -%>
|
12
|
+
|
13
|
+
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
|
14
|
+
<%= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name) %><br />
|
15
|
+
<% end -%>
|
16
|
+
|
17
|
+
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %>
|
18
|
+
<%= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name) %><br />
|
19
|
+
<% end -%>
|
20
|
+
|
21
|
+
<%- if devise_mapping.omniauthable? %>
|
22
|
+
<%- resource_class.omniauth_providers.each do |provider| %>
|
23
|
+
<%= link_to "Sign in with #{provider.to_s.titleize}", omniauth_authorize_path(resource_name, provider) %><br />
|
24
|
+
<% end -%>
|
25
|
+
<% end -%>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<h2>Resend unlock instructions</h2>
|
2
|
+
|
3
|
+
<%= form_for(resource, :as => resource_name, :url => unlock_path(resource_name), :html => { :method => :post }) do |f| %>
|
4
|
+
<%= devise_error_messages! %>
|
5
|
+
|
6
|
+
<p><%= f.label :email %><br />
|
7
|
+
<%= f.email_field :email %></p>
|
8
|
+
|
9
|
+
<p><%= f.submit "Resend unlock instructions" %></p>
|
10
|
+
<% end %>
|
11
|
+
|
12
|
+
<%= render :partial => "devise/shared/links" %>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
You are logged
|
2
|
+
<% if user_signed_in? %>
|
3
|
+
in as <%= current_user.email %>.
|
4
|
+
<form method="post" action="<%= destroy_user_session_path %>">
|
5
|
+
<input type="hidden" name="_method" value="delete" />
|
6
|
+
<input type="submit" value="Sign out" />
|
7
|
+
</form>
|
8
|
+
<% else %>
|
9
|
+
out. <%= link_to "Sign in", new_user_session_path %>
|
10
|
+
<% end %>
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
# Pick the frameworks you want:
|
4
|
+
# require "active_record/railtie"
|
5
|
+
require "action_controller/railtie"
|
6
|
+
require "action_mailer/railtie"
|
7
|
+
require "active_resource/railtie"
|
8
|
+
# require "rails/test_unit/railtie"
|
9
|
+
|
10
|
+
# If you have a Gemfile, require the gems listed there, including any gems
|
11
|
+
# you've limited to :test, :development, or :production.
|
12
|
+
Bundler.require(:default, Rails.env) if defined?(Bundler)
|
13
|
+
|
14
|
+
module Rails30App
|
15
|
+
class Application < Rails::Application
|
16
|
+
# Settings in config/environments/* take precedence over those specified here.
|
17
|
+
# Application configuration should go into files in config/initializers
|
18
|
+
# -- all .rb files in that directory are automatically loaded.
|
19
|
+
|
20
|
+
# Custom directories with classes and modules you want to be autoloadable.
|
21
|
+
# config.autoload_paths += %W(#{config.root}/extras)
|
22
|
+
|
23
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
24
|
+
# :all can be used as a placeholder for all plugins not explicitly named.
|
25
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
26
|
+
|
27
|
+
# Activate observers that should always be running.
|
28
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
29
|
+
|
30
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
31
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
32
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
33
|
+
|
34
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
35
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
36
|
+
# config.i18n.default_locale = :de
|
37
|
+
|
38
|
+
# JavaScript files you want as :defaults (application.js is always included).
|
39
|
+
config.action_view.javascript_expansions[:defaults] = %w()
|
40
|
+
|
41
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
42
|
+
config.encoding = "utf-8"
|
43
|
+
|
44
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
45
|
+
config.filter_parameters += [:password]
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
Rails30App::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the webserver when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Log error messages when you accidentally call methods on nil.
|
10
|
+
config.whiny_nils = true
|
11
|
+
|
12
|
+
# Show full error reports and disable caching
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_view.debug_rjs = true
|
15
|
+
config.action_controller.perform_caching = false
|
16
|
+
|
17
|
+
# Don't care if the mailer can't send
|
18
|
+
config.action_mailer.raise_delivery_errors = false
|
19
|
+
|
20
|
+
# Print deprecation notices to the Rails logger
|
21
|
+
config.active_support.deprecation = :log
|
22
|
+
|
23
|
+
# Only use best-standards-support built into browsers
|
24
|
+
config.action_dispatch.best_standards_support = :builtin
|
25
|
+
end
|
26
|
+
|
@@ -0,0 +1,49 @@
|
|
1
|
+
Rails30App::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The production environment is meant for finished, "live" apps.
|
5
|
+
# Code is not reloaded between requests
|
6
|
+
config.cache_classes = true
|
7
|
+
|
8
|
+
# Full error reports are disabled and caching is turned on
|
9
|
+
config.consider_all_requests_local = false
|
10
|
+
config.action_controller.perform_caching = true
|
11
|
+
|
12
|
+
# Specifies the header that your server uses for sending files
|
13
|
+
config.action_dispatch.x_sendfile_header = "X-Sendfile"
|
14
|
+
|
15
|
+
# For nginx:
|
16
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
|
17
|
+
|
18
|
+
# If you have no front-end server that supports something like X-Sendfile,
|
19
|
+
# just comment this out and Rails will serve the files
|
20
|
+
|
21
|
+
# See everything in the log (default is :info)
|
22
|
+
# config.log_level = :debug
|
23
|
+
|
24
|
+
# Use a different logger for distributed setups
|
25
|
+
# config.logger = SyslogLogger.new
|
26
|
+
|
27
|
+
# Use a different cache store in production
|
28
|
+
# config.cache_store = :mem_cache_store
|
29
|
+
|
30
|
+
# Disable Rails's static asset server
|
31
|
+
# In production, Apache or nginx will already do this
|
32
|
+
config.serve_static_assets = false
|
33
|
+
|
34
|
+
# Enable serving of images, stylesheets, and javascripts from an asset server
|
35
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
36
|
+
|
37
|
+
# Disable delivery errors, bad email addresses will be ignored
|
38
|
+
# config.action_mailer.raise_delivery_errors = false
|
39
|
+
|
40
|
+
# Enable threaded mode
|
41
|
+
# config.threadsafe!
|
42
|
+
|
43
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
44
|
+
# the I18n.default_locale when a translation can not be found)
|
45
|
+
config.i18n.fallbacks = true
|
46
|
+
|
47
|
+
# Send deprecation notices to registered listeners
|
48
|
+
config.active_support.deprecation = :notify
|
49
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
Rails30App::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Log error messages when you accidentally call methods on nil.
|
11
|
+
config.whiny_nils = true
|
12
|
+
|
13
|
+
# Show full error reports and disable caching
|
14
|
+
config.consider_all_requests_local = true
|
15
|
+
config.action_controller.perform_caching = false
|
16
|
+
|
17
|
+
# Raise exceptions instead of rendering exception templates
|
18
|
+
config.action_dispatch.show_exceptions = false
|
19
|
+
|
20
|
+
# Disable request forgery protection in test environment
|
21
|
+
config.action_controller.allow_forgery_protection = false
|
22
|
+
|
23
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
24
|
+
# The :test delivery method accumulates sent emails in the
|
25
|
+
# ActionMailer::Base.deliveries array.
|
26
|
+
config.action_mailer.delivery_method = :test
|
27
|
+
|
28
|
+
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
29
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
30
|
+
# like if you have constraints or database-specific column types
|
31
|
+
# config.active_record.schema_format = :sql
|
32
|
+
|
33
|
+
# Print deprecation notices to the stderr
|
34
|
+
config.active_support.deprecation = :stderr
|
35
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,204 @@
|
|
1
|
+
# Use this hook to configure devise mailer, warden hooks and so forth. The first
|
2
|
+
# four configuration values can also be set straight in your models.
|
3
|
+
Devise.setup do |config|
|
4
|
+
# ==> Mailer Configuration
|
5
|
+
# Configure the e-mail address which will be shown in DeviseMailer.
|
6
|
+
config.mailer_sender = "please-change-me-at-config-initializers-devise@example.com"
|
7
|
+
|
8
|
+
# Configure the class responsible to send e-mails.
|
9
|
+
# config.mailer = "Devise::Mailer"
|
10
|
+
|
11
|
+
# ==> ORM configuration
|
12
|
+
# Load and configure the ORM. Supports :active_record (default) and
|
13
|
+
# :mongoid (bson_ext recommended) by default. Other ORMs may be
|
14
|
+
# available as additional gems.
|
15
|
+
require "devise/orm/mongoid"
|
16
|
+
|
17
|
+
# ==> Configuration for any authentication mechanism
|
18
|
+
# Configure which keys are used when authenticating a user. The default is
|
19
|
+
# just :email. You can configure it to use [:username, :subdomain], so for
|
20
|
+
# authenticating a user, both parameters are required. Remember that those
|
21
|
+
# parameters are used only when authenticating and not when retrieving from
|
22
|
+
# session. If you need permissions, you should implement that in a before filter.
|
23
|
+
# You can also supply a hash where the value is a boolean determining whether
|
24
|
+
# or not authentication should be aborted when the value is not present.
|
25
|
+
# config.authentication_keys = [ :email ]
|
26
|
+
|
27
|
+
# Configure parameters from the request object used for authentication. Each entry
|
28
|
+
# given should be a request method and it will automatically be passed to the
|
29
|
+
# find_for_authentication method and considered in your model lookup. For instance,
|
30
|
+
# if you set :request_keys to [:subdomain], :subdomain will be used on authentication.
|
31
|
+
# The same considerations mentioned for authentication_keys also apply to request_keys.
|
32
|
+
# config.request_keys = []
|
33
|
+
|
34
|
+
# Configure which authentication keys should be case-insensitive.
|
35
|
+
# These keys will be downcased upon creating or modifying a user and when used
|
36
|
+
# to authenticate or find a user. Default is :email.
|
37
|
+
config.case_insensitive_keys = [ :email ]
|
38
|
+
|
39
|
+
# Configure which authentication keys should have whitespace stripped.
|
40
|
+
# These keys will have whitespace before and after removed upon creating or
|
41
|
+
# modifying a user and when used to authenticate or find a user. Default is :email.
|
42
|
+
config.strip_whitespace_keys = [ :email ]
|
43
|
+
|
44
|
+
# Tell if authentication through request.params is enabled. True by default.
|
45
|
+
# config.params_authenticatable = true
|
46
|
+
|
47
|
+
# Tell if authentication through HTTP Basic Auth is enabled. False by default.
|
48
|
+
# config.http_authenticatable = false
|
49
|
+
|
50
|
+
# If http headers should be returned for AJAX requests. True by default.
|
51
|
+
# config.http_authenticatable_on_xhr = true
|
52
|
+
|
53
|
+
# The realm used in Http Basic Authentication. "Application" by default.
|
54
|
+
# config.http_authentication_realm = "Application"
|
55
|
+
|
56
|
+
# It will change confirmation, password recovery and other workflows
|
57
|
+
# to behave the same regardless if the e-mail provided was right or wrong.
|
58
|
+
# Does not affect registerable.
|
59
|
+
# config.paranoid = true
|
60
|
+
|
61
|
+
# ==> Configuration for :database_authenticatable
|
62
|
+
# For bcrypt, this is the cost for hashing the password and defaults to 10. If
|
63
|
+
# using other encryptors, it sets how many times you want the password re-encrypted.
|
64
|
+
config.stretches = 10
|
65
|
+
|
66
|
+
# Setup a pepper to generate the encrypted password.
|
67
|
+
# config.pepper = "2519fad7de5a8216e8dc829cee5b48263621510d2d8c28ca0c1208fc013418b8754d0e32e939af16f10ccb20f837c8945bb5d78725c2c66e793fa4342f64cf29"
|
68
|
+
|
69
|
+
# ==> Configuration for :confirmable
|
70
|
+
# The time you want to give your user to confirm his account. During this time
|
71
|
+
# he will be able to access your application without confirming. Default is 0.days
|
72
|
+
# When confirm_within is zero, the user won't be able to sign in without confirming.
|
73
|
+
# You can use this to let your user access some features of your application
|
74
|
+
# without confirming the account, but blocking it after a certain period
|
75
|
+
# (ie 2 days).
|
76
|
+
# config.confirm_within = 2.days
|
77
|
+
|
78
|
+
# Defines which key will be used when confirming an account
|
79
|
+
# config.confirmation_keys = [ :email ]
|
80
|
+
|
81
|
+
# ==> Configuration for :rememberable
|
82
|
+
# The time the user will be remembered without asking for credentials again.
|
83
|
+
# config.remember_for = 2.weeks
|
84
|
+
|
85
|
+
# If true, a valid remember token can be re-used between multiple browsers.
|
86
|
+
# config.remember_across_browsers = true
|
87
|
+
|
88
|
+
# If true, extends the user's remember period when remembered via cookie.
|
89
|
+
# config.extend_remember_period = false
|
90
|
+
|
91
|
+
# If true, uses the password salt as remember token. This should be turned
|
92
|
+
# to false if you are not using database authenticatable.
|
93
|
+
config.use_salt_as_remember_token = true
|
94
|
+
|
95
|
+
# Options to be passed to the created cookie. For instance, you can set
|
96
|
+
# :secure => true in order to force SSL only cookies.
|
97
|
+
# config.cookie_options = {}
|
98
|
+
|
99
|
+
# ==> Configuration for :validatable
|
100
|
+
# Range for password length. Default is 6..128.
|
101
|
+
# config.password_length = 6..128
|
102
|
+
|
103
|
+
# Regex to use to validate the email address
|
104
|
+
# config.email_regexp = /\A([\w\.%\+\-]+)@([\w\-]+\.)+([\w]{2,})\z/i
|
105
|
+
|
106
|
+
# ==> Configuration for :timeoutable
|
107
|
+
# The time you want to timeout the user session without activity. After this
|
108
|
+
# time the user will be asked for credentials again. Default is 30 minutes.
|
109
|
+
# config.timeout_in = 30.minutes
|
110
|
+
|
111
|
+
# ==> Configuration for :lockable
|
112
|
+
# Defines which strategy will be used to lock an account.
|
113
|
+
# :failed_attempts = Locks an account after a number of failed attempts to sign in.
|
114
|
+
# :none = No lock strategy. You should handle locking by yourself.
|
115
|
+
# config.lock_strategy = :failed_attempts
|
116
|
+
|
117
|
+
# Defines which key will be used when locking and unlocking an account
|
118
|
+
# config.unlock_keys = [ :email ]
|
119
|
+
|
120
|
+
# Defines which strategy will be used to unlock an account.
|
121
|
+
# :email = Sends an unlock link to the user email
|
122
|
+
# :time = Re-enables login after a certain amount of time (see :unlock_in below)
|
123
|
+
# :both = Enables both strategies
|
124
|
+
# :none = No unlock strategy. You should handle unlocking by yourself.
|
125
|
+
# config.unlock_strategy = :both
|
126
|
+
|
127
|
+
# Number of authentication tries before locking an account if lock_strategy
|
128
|
+
# is failed attempts.
|
129
|
+
# config.maximum_attempts = 20
|
130
|
+
|
131
|
+
# Time interval to unlock the account if :time is enabled as unlock_strategy.
|
132
|
+
# config.unlock_in = 1.hour
|
133
|
+
|
134
|
+
# ==> Configuration for :recoverable
|
135
|
+
#
|
136
|
+
# Defines which key will be used when recovering the password for an account
|
137
|
+
# config.reset_password_keys = [ :email ]
|
138
|
+
|
139
|
+
# Time interval you can reset your password with a reset password key.
|
140
|
+
# Don't put a too small interval or your users won't have the time to
|
141
|
+
# change their passwords.
|
142
|
+
config.reset_password_within = 2.hours
|
143
|
+
|
144
|
+
# ==> Configuration for :encryptable
|
145
|
+
# Allow you to use another encryption algorithm besides bcrypt (default). You can use
|
146
|
+
# :sha1, :sha512 or encryptors from others authentication tools as :clearance_sha1,
|
147
|
+
# :authlogic_sha512 (then you should set stretches above to 20 for default behavior)
|
148
|
+
# and :restful_authentication_sha1 (then you should set stretches to 10, and copy
|
149
|
+
# REST_AUTH_SITE_KEY to pepper)
|
150
|
+
# config.encryptor = :sha512
|
151
|
+
|
152
|
+
# ==> Configuration for :token_authenticatable
|
153
|
+
# Defines name of the authentication token params key
|
154
|
+
# config.token_authentication_key = :auth_token
|
155
|
+
|
156
|
+
# If true, authentication through token does not store user in session and needs
|
157
|
+
# to be supplied on each request. Useful if you are using the token as API token.
|
158
|
+
# config.stateless_token = false
|
159
|
+
|
160
|
+
# ==> Scopes configuration
|
161
|
+
# Turn scoped views on. Before rendering "sessions/new", it will first check for
|
162
|
+
# "users/sessions/new". It's turned off by default because it's slower if you
|
163
|
+
# are using only default views.
|
164
|
+
# config.scoped_views = false
|
165
|
+
|
166
|
+
# Configure the default scope given to Warden. By default it's the first
|
167
|
+
# devise role declared in your routes (usually :user).
|
168
|
+
# config.default_scope = :user
|
169
|
+
|
170
|
+
# Configure sign_out behavior.
|
171
|
+
# Sign_out action can be scoped (i.e. /users/sign_out affects only :user scope).
|
172
|
+
# The default is true, which means any logout action will sign out all active scopes.
|
173
|
+
# config.sign_out_all_scopes = true
|
174
|
+
|
175
|
+
# ==> Navigation configuration
|
176
|
+
# Lists the formats that should be treated as navigational. Formats like
|
177
|
+
# :html, should redirect to the sign in page when the user does not have
|
178
|
+
# access, but formats like :xml or :json, should return 401.
|
179
|
+
#
|
180
|
+
# If you have any extra navigational formats, like :iphone or :mobile, you
|
181
|
+
# should add them to the navigational formats lists.
|
182
|
+
#
|
183
|
+
# The :"*/*" and "*/*" formats below is required to match Internet
|
184
|
+
# Explorer requests.
|
185
|
+
# config.navigational_formats = [:"*/*", "*/*", :html]
|
186
|
+
|
187
|
+
# The default HTTP method used to sign out a resource. Default is :delete.
|
188
|
+
config.sign_out_via = :delete
|
189
|
+
|
190
|
+
# ==> OmniAuth
|
191
|
+
# Add a new OmniAuth provider. Check the wiki for more information on setting
|
192
|
+
# up on your models and hooks.
|
193
|
+
# config.omniauth :github, 'APP_ID', 'APP_SECRET', :scope => 'user,public_repo'
|
194
|
+
|
195
|
+
# ==> Warden configuration
|
196
|
+
# If you want to use other strategies, that are not supported by Devise, or
|
197
|
+
# change the failure app, you can configure them inside the config.warden block.
|
198
|
+
#
|
199
|
+
# config.warden do |manager|
|
200
|
+
# manager.failure_app = AnotherApp
|
201
|
+
# manager.intercept_401 = false
|
202
|
+
# manager.default_strategies(:scope => :user).unshift :some_external_strategy
|
203
|
+
# end
|
204
|
+
end
|