clearance_http_auth 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +58 -0
- data/Rakefile +29 -0
- data/lib/clearance_http_auth/configuration.rb +18 -0
- data/lib/clearance_http_auth/current_user_override.rb +20 -0
- data/lib/clearance_http_auth/engine.rb +13 -0
- data/lib/clearance_http_auth/middleware.rb +39 -0
- data/lib/clearance_http_auth/version.rb +5 -0
- data/lib/clearance_http_auth.rb +21 -0
- data/test/clearance_http_auth_test.rb +17 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/entrances_controller.rb +29 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/entrance_helper.rb +2 -0
- data/test/dummy/app/models/user.rb +3 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config/application.rb +47 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +22 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +26 -0
- data/test/dummy/config/environments/production.rb +49 -0
- data/test/dummy/config/environments/test.rb +35 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/clearance.rb +3 -0
- data/test/dummy/config/initializers/inflections.rb +10 -0
- data/test/dummy/config/initializers/mime_types.rb +1 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20101221153914_clearance_create_users.rb +20 -0
- data/test/dummy/db/schema.rb +29 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +1743 -0
- data/test/dummy/log/production.log +0 -0
- data/test/dummy/log/server.log +0 -0
- data/test/dummy/log/test.log +9431 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +26 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/public/javascripts/application.js +2 -0
- data/test/dummy/public/javascripts/controls.js +965 -0
- data/test/dummy/public/javascripts/dragdrop.js +974 -0
- data/test/dummy/public/javascripts/effects.js +1123 -0
- data/test/dummy/public/javascripts/prototype.js +6001 -0
- data/test/dummy/public/javascripts/rails.js +175 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/factories/clearance.rb +13 -0
- data/test/dummy/tmp/capybara/capybara-20101221172010.html +42 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/integration/api_test.rb +63 -0
- data/test/integration/navigation_test.rb +39 -0
- data/test/support/integration_case.rb +5 -0
- data/test/test_helper.rb +29 -0
- metadata +215 -0
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2010 Karel Minarik
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
= Clearance::HttpAuth
|
2
|
+
|
3
|
+
The goal of this project is simple, instant HTTP Basic Authentication for any
|
4
|
+
controller in Rails 3 applications using Clearance[https://github.com/thoughtbot/clearance]
|
5
|
+
for user authentication. You can use Clearance's default, session based authentication
|
6
|
+
in the user facing parts of your application, and use HTTP Basic Auth when connecting
|
7
|
+
to it's API.
|
8
|
+
|
9
|
+
It has two parts:
|
10
|
+
|
11
|
+
1. A middleware which intercepts requests to your application API
|
12
|
+
and performs a HTTP Basic Authentication by wrapping your application
|
13
|
+
in a <tt>Rack::Auth::Basic</tt> block. It supplies the provided credentials
|
14
|
+
to the <tt>User.authenticate</tt> method and sets an
|
15
|
+
<tt>env['clearance.current_user']</tt> variable.
|
16
|
+
|
17
|
+
2. An overriden <tt>current_user</tt> helper method for controllers, which reads
|
18
|
+
the variable set in the middleware.
|
19
|
+
|
20
|
+
|
21
|
+
== Usage
|
22
|
+
|
23
|
+
First, add the gem to your Gemfile, along with +clearance+:
|
24
|
+
|
25
|
+
gem 'clearance', '~> 0.9.1'
|
26
|
+
gem 'clearance_http_auth'
|
27
|
+
|
28
|
+
Second, include the module in your ApplicationController (or in a specific controller)
|
29
|
+
_after_ you include Clearance::Authentication:
|
30
|
+
|
31
|
+
class ApplicationController < ActionController::Base
|
32
|
+
include Clearance::Authentication
|
33
|
+
include Clearance::HttpAuth
|
34
|
+
end
|
35
|
+
|
36
|
+
There is no step three. When you hit your application API with the same credentials
|
37
|
+
as when logging in the browser, you should be in:
|
38
|
+
|
39
|
+
$ curl -i -X GET -u test@example.com:password http://localhost:3000/books.xml
|
40
|
+
$ curl -i -X POST -u test@example.com:password -H "Content-Type: application/xml" http://localhost:3000/books.xml \
|
41
|
+
-d "<book><author>Kafka</author><title>Metamorphosis</title></book>"
|
42
|
+
|
43
|
+
By default, the middleware intercepts only requests to JSON and XML formats.
|
44
|
+
You can add more formats in your <tt>config/application.rb</tt>:
|
45
|
+
|
46
|
+
config.clearance_http_auth.api_formats << 'csv'
|
47
|
+
|
48
|
+
|
49
|
+
= About
|
50
|
+
|
51
|
+
The project originally grew out of a simple monkeypatch: https://github.com/thoughtbot/clearance/issues/34
|
52
|
+
|
53
|
+
Comments and patches are welcome. Fork, add tests for features and don't break any existing ones,
|
54
|
+
send a pull request.
|
55
|
+
|
56
|
+
-----
|
57
|
+
|
58
|
+
Karel Minarik (http://karmi.cz)
|
data/Rakefile
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
require 'rubygems'
|
3
|
+
begin
|
4
|
+
require 'bundler/setup'
|
5
|
+
rescue LoadError
|
6
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
7
|
+
end
|
8
|
+
|
9
|
+
require 'rake'
|
10
|
+
require 'rake/rdoctask'
|
11
|
+
require 'rake/testtask'
|
12
|
+
|
13
|
+
Bundler::GemHelper.install_tasks
|
14
|
+
|
15
|
+
task :default => :test
|
16
|
+
|
17
|
+
Rake::TestTask.new(:test) do |test|
|
18
|
+
test.libs << 'lib' << 'test'
|
19
|
+
test.pattern = 'test/**/*_test.rb'
|
20
|
+
test.verbose = true
|
21
|
+
end
|
22
|
+
|
23
|
+
Rake::RDocTask.new(:rdoc) do |rdoc|
|
24
|
+
rdoc.rdoc_dir = 'rdoc'
|
25
|
+
rdoc.title = 'Clearance::HttpAuth'
|
26
|
+
rdoc.options << '--line-numbers' << '--inline-source'
|
27
|
+
rdoc.rdoc_files.include('README.rdoc')
|
28
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
29
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module Clearance
|
2
|
+
module HttpAuth
|
3
|
+
|
4
|
+
# Configuration is available in your Rails' <tt>application.rb</tt> as
|
5
|
+
# <tt>config.clearance_http_auth</tt>. See README for example.
|
6
|
+
#
|
7
|
+
class Configuration
|
8
|
+
|
9
|
+
# Returns formats for which the Middleware is enabled
|
10
|
+
#
|
11
|
+
def self.api_formats
|
12
|
+
@api_formats ||= %w[ json xml ]
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Clearance
|
2
|
+
module HttpAuth
|
3
|
+
|
4
|
+
# This module redefines default Clearance's +current_user+
|
5
|
+
# helper method functionality to look first in +env+
|
6
|
+
# passed from the middleware stack.
|
7
|
+
#
|
8
|
+
module CurrentUserOverride
|
9
|
+
|
10
|
+
# User in the current cookie
|
11
|
+
#
|
12
|
+
# @return [User, nil]
|
13
|
+
def current_user
|
14
|
+
env['clearance.current_user'] || @_current_user || user_from_cookie
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
module Clearance
|
2
|
+
module HttpAuth
|
3
|
+
|
4
|
+
# A Rack middleware which intercepts requests to your application API
|
5
|
+
# (as defined in <tt>Configuration.api_formats</tt>) and performs
|
6
|
+
# a HTTP Basic Authentication via <tt>Rack::Auth::Basic</tt>.
|
7
|
+
#
|
8
|
+
class Middleware
|
9
|
+
|
10
|
+
def initialize(app)
|
11
|
+
@app = app
|
12
|
+
end
|
13
|
+
|
14
|
+
# Wrap the application with a <tt>Rack::Auth::Basic</tt> block
|
15
|
+
# and set the <tt>env['clearance.current_user']</tt> variable
|
16
|
+
# if the incoming request is targeting the API.
|
17
|
+
#
|
18
|
+
def call(env)
|
19
|
+
if targeting_api?(env)
|
20
|
+
@app = Rack::Auth::Basic.new(@app) do |username, password|
|
21
|
+
env['clearance.current_user'] = ::User.authenticate(username, password)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
@app.call(env)
|
25
|
+
end
|
26
|
+
|
27
|
+
private
|
28
|
+
|
29
|
+
def targeting_api?(env)
|
30
|
+
return false unless env['action_dispatch.request.path_parameters']
|
31
|
+
format = env['action_dispatch.request.path_parameters'][:format]
|
32
|
+
format && Configuration.api_formats.include?(format)
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
38
|
+
|
39
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'clearance_http_auth/configuration'
|
2
|
+
require 'clearance_http_auth/middleware'
|
3
|
+
require 'clearance_http_auth/current_user_override'
|
4
|
+
require 'clearance_http_auth/engine'
|
5
|
+
|
6
|
+
module Clearance
|
7
|
+
|
8
|
+
# Include this module in a controller to enable the middleware and +current_user+ override:
|
9
|
+
#
|
10
|
+
# class ProjectsController < ApplicationController
|
11
|
+
# include Clearance::Authentication
|
12
|
+
# include Clearance::HttpAuth
|
13
|
+
# end
|
14
|
+
#
|
15
|
+
module HttpAuth
|
16
|
+
def self.included(controller)
|
17
|
+
controller.send :include, CurrentUserOverride
|
18
|
+
controller.use Middleware
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class Clearance::HttpAuthTest < ActiveSupport::TestCase
|
4
|
+
|
5
|
+
context "Configuration" do
|
6
|
+
should "return JSON and XML formats by default" do
|
7
|
+
assert Clearance::HttpAuth::Configuration.api_formats.include?('json'), "does not include JSON"
|
8
|
+
assert Clearance::HttpAuth::Configuration.api_formats.include?('xml'), "does not include XML"
|
9
|
+
end
|
10
|
+
|
11
|
+
should "allow adding formats" do
|
12
|
+
assert_nothing_raised { Clearance::HttpAuth::Configuration.api_formats << 'pdf' }
|
13
|
+
assert Clearance::HttpAuth::Configuration.api_formats.include?('pdf'), "does not include added format"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
data/test/dummy/Rakefile
ADDED
@@ -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
|
+
Dummy::Application.load_tasks
|
@@ -0,0 +1,29 @@
|
|
1
|
+
class EntrancesController < ApplicationController
|
2
|
+
before_filter :authenticate
|
3
|
+
|
4
|
+
respond_to :html, :json, :xml
|
5
|
+
|
6
|
+
def index
|
7
|
+
logger.debug current_user.inspect
|
8
|
+
|
9
|
+
respond_to do |format|
|
10
|
+
message = "Welcome!"
|
11
|
+
format.html { render :text => message }
|
12
|
+
format.json { render :json => { :message => message }.to_json }
|
13
|
+
format.xml { render :xml => { :message => message }.to_xml(:root => 'document') }
|
14
|
+
format.csv { render :text => message }
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def create
|
19
|
+
|
20
|
+
respond_to do |format|
|
21
|
+
message = "Created!"
|
22
|
+
format.html { render :text => message, :status => :created }
|
23
|
+
format.json { render :json => { :message => message }.to_json, :status => :created }
|
24
|
+
format.xml { render :xml => { :message => message }.to_xml(:root => 'document'), :status => :created }
|
25
|
+
format.csv { render :text => message, :status => :created }
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
require "active_model/railtie"
|
4
|
+
require "active_record/railtie"
|
5
|
+
require "action_controller/railtie"
|
6
|
+
require "action_view/railtie"
|
7
|
+
require "action_mailer/railtie"
|
8
|
+
|
9
|
+
Bundler.require
|
10
|
+
require "clearance_http_auth"
|
11
|
+
|
12
|
+
module Dummy
|
13
|
+
class Application < Rails::Application
|
14
|
+
# Settings in config/environments/* take precedence over those specified here.
|
15
|
+
# Application configuration should go into files in config/initializers
|
16
|
+
# -- all .rb files in that directory are automatically loaded.
|
17
|
+
|
18
|
+
# Custom directories with classes and modules you want to be autoloadable.
|
19
|
+
# config.autoload_paths += %W(#{config.root}/extras)
|
20
|
+
|
21
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
22
|
+
# :all can be used as a placeholder for all plugins not explicitly named.
|
23
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
24
|
+
|
25
|
+
# Activate observers that should always be running.
|
26
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
27
|
+
|
28
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
29
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
30
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
31
|
+
|
32
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
33
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
34
|
+
# config.i18n.default_locale = :de
|
35
|
+
|
36
|
+
# JavaScript files you want as :defaults (application.js is always included).
|
37
|
+
# config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
|
38
|
+
|
39
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
40
|
+
config.encoding = "utf-8"
|
41
|
+
|
42
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
43
|
+
config.filter_parameters += [:password]
|
44
|
+
|
45
|
+
config.clearance_http_auth.api_formats << 'csv'
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# SQLite version 3.x
|
2
|
+
# gem install sqlite3-ruby (not necessary on OS X Leopard)
|
3
|
+
development:
|
4
|
+
adapter: sqlite3
|
5
|
+
database: db/development.sqlite3
|
6
|
+
pool: 5
|
7
|
+
timeout: 5000
|
8
|
+
|
9
|
+
# Warning: The database defined as "test" will be erased and
|
10
|
+
# re-generated from your development database when you run "rake".
|
11
|
+
# Do not set this db to the same as development or production.
|
12
|
+
test:
|
13
|
+
adapter: sqlite3
|
14
|
+
database: db/test.sqlite3
|
15
|
+
pool: 5
|
16
|
+
timeout: 5000
|
17
|
+
|
18
|
+
production:
|
19
|
+
adapter: sqlite3
|
20
|
+
database: db/production.sqlite3
|
21
|
+
pool: 5
|
22
|
+
timeout: 5000
|
@@ -0,0 +1,26 @@
|
|
1
|
+
Dummy::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
|
+
Dummy::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
|
+
Dummy::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,10 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
@@ -0,0 +1 @@
|
|
1
|
+
Mime::Type.register "text/csv", :csv
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
Dummy::Application.config.secret_token = '59031f235943d9fdcc4ab9d0b9fa954305e3bc3eaee8c4c2c7fec95d93b39810def54d2825637139fbc8dec8394e5db8b153d74b0fd83fb927b1b041a25179ae'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|
Binary file
|
@@ -0,0 +1,20 @@
|
|
1
|
+
class ClearanceCreateUsers < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table(:users) do |t|
|
4
|
+
t.string :email
|
5
|
+
t.string :encrypted_password, :limit => 128
|
6
|
+
t.string :salt, :limit => 128
|
7
|
+
t.string :confirmation_token, :limit => 128
|
8
|
+
t.string :remember_token, :limit => 128
|
9
|
+
t.boolean :email_confirmed, :default => false, :null => false
|
10
|
+
t.timestamps
|
11
|
+
end
|
12
|
+
|
13
|
+
add_index :users, :email
|
14
|
+
add_index :users, :remember_token
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.down
|
18
|
+
drop_table :users
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# This file is auto-generated from the current state of the database. Instead
|
2
|
+
# of editing this file, please use the migrations feature of Active Record to
|
3
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
4
|
+
#
|
5
|
+
# Note that this schema.rb definition is the authoritative source for your
|
6
|
+
# database schema. If you need to create the application database on another
|
7
|
+
# system, you should be using db:schema:load, not running all the migrations
|
8
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
9
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
10
|
+
#
|
11
|
+
# It's strongly recommended to check this file into your version control system.
|
12
|
+
|
13
|
+
ActiveRecord::Schema.define(:version => 20101221153914) do
|
14
|
+
|
15
|
+
create_table "users", :force => true do |t|
|
16
|
+
t.string "email"
|
17
|
+
t.string "encrypted_password", :limit => 128
|
18
|
+
t.string "salt", :limit => 128
|
19
|
+
t.string "confirmation_token", :limit => 128
|
20
|
+
t.string "remember_token", :limit => 128
|
21
|
+
t.boolean "email_confirmed", :default => false, :null => false
|
22
|
+
t.datetime "created_at"
|
23
|
+
t.datetime "updated_at"
|
24
|
+
end
|
25
|
+
|
26
|
+
add_index "users", ["email"], :name => "index_users_on_email"
|
27
|
+
add_index "users", ["remember_token"], :name => "index_users_on_remember_token"
|
28
|
+
|
29
|
+
end
|
Binary file
|