htauthentication 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +32 -0
- data/lib/htauthentication.rb +4 -0
- data/lib/htauthentication/has_htpasswd_login.rb +34 -0
- data/lib/htauthentication/version.rb +3 -0
- data/lib/tasks/htauthentication_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/sessions_controller.rb +10 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/user.rb +4 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/sessions/create.html.erb +1 -0
- data/test/dummy/app/views/sessions/new.html.erb +12 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/constants.rb +1 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +65 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20140417114926_create_users.rb +10 -0
- data/test/dummy/db/schema.rb +23 -0
- data/test/dummy/log/development.log +2569 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/test/fixtures/users.yml +9 -0
- data/test/dummy/test/models/user_test.rb +7 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/htauthentication_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +179 -0
@@ -0,0 +1,36 @@
|
|
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
|
+
# Do not eager load code on boot. This avoids loading your whole application
|
11
|
+
# just for the purpose of running a single test. If you are using a tool that
|
12
|
+
# preloads Rails for running tests, you may have to set it to true.
|
13
|
+
config.eager_load = false
|
14
|
+
|
15
|
+
# Configure static asset server for tests with Cache-Control for performance.
|
16
|
+
config.serve_static_assets = true
|
17
|
+
config.static_cache_control = "public, max-age=3600"
|
18
|
+
|
19
|
+
# Show full error reports and disable caching.
|
20
|
+
config.consider_all_requests_local = true
|
21
|
+
config.action_controller.perform_caching = false
|
22
|
+
|
23
|
+
# Raise exceptions instead of rendering exception templates.
|
24
|
+
config.action_dispatch.show_exceptions = false
|
25
|
+
|
26
|
+
# Disable request forgery protection in test environment.
|
27
|
+
config.action_controller.allow_forgery_protection = false
|
28
|
+
|
29
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
30
|
+
# The :test delivery method accumulates sent emails in the
|
31
|
+
# ActionMailer::Base.deliveries array.
|
32
|
+
config.action_mailer.delivery_method = :test
|
33
|
+
|
34
|
+
# Print deprecation notices to the stderr.
|
35
|
+
config.active_support.deprecation = :stderr
|
36
|
+
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 @@
|
|
1
|
+
HTPASSWD_PATH = "/var/www/rails/.htpasswd"
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format. Inflections
|
4
|
+
# are locale specific, and you may define rules for as many different
|
5
|
+
# locales as you wish. All of these examples are active by default:
|
6
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
7
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
8
|
+
# inflect.singular /^(ox)en/i, '\1'
|
9
|
+
# inflect.irregular 'person', 'people'
|
10
|
+
# inflect.uncountable %w( fish sheep )
|
11
|
+
# end
|
12
|
+
|
13
|
+
# These inflection rules are supported but not enabled by default:
|
14
|
+
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
15
|
+
# inflect.acronym 'RESTful'
|
16
|
+
# end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure your secret_key_base is kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
Dummy::Application.config.secret_key_base = 'b6c020f68763edd3952a364753ec46dbb6293615c06a85bf1917f5aafd88142ac8dfc01e178c4fd4891e011bcba4ead36049a1d14e0b16965e86f96ce28d4b44'
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
|
9
|
+
end
|
10
|
+
|
11
|
+
# To enable root element in JSON for ActiveRecord objects.
|
12
|
+
# ActiveSupport.on_load(:active_record) do
|
13
|
+
# self.include_root_in_json = true
|
14
|
+
# end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# To learn more, please read the Rails Internationalization guide
|
20
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
21
|
+
|
22
|
+
en:
|
23
|
+
hello: "Hello world"
|
@@ -0,0 +1,65 @@
|
|
1
|
+
Dummy::Application.routes.draw do
|
2
|
+
|
3
|
+
root 'sessions#new'
|
4
|
+
|
5
|
+
controller :sessions do
|
6
|
+
get "login" => :new, as: "login"
|
7
|
+
post "login" => :create, as: "create_session"
|
8
|
+
get "logout" => :destroy, as: "logout"
|
9
|
+
end
|
10
|
+
|
11
|
+
# The priority is based upon order of creation: first created -> highest priority.
|
12
|
+
# See how all your routes lay out with "rake routes".
|
13
|
+
|
14
|
+
# You can have the root of your site routed with "root"
|
15
|
+
# root 'welcome#index'
|
16
|
+
|
17
|
+
# Example of regular route:
|
18
|
+
# get 'products/:id' => 'catalog#view'
|
19
|
+
|
20
|
+
# Example of named route that can be invoked with purchase_url(id: product.id)
|
21
|
+
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
|
22
|
+
|
23
|
+
# Example resource route (maps HTTP verbs to controller actions automatically):
|
24
|
+
# resources :products
|
25
|
+
|
26
|
+
# Example resource route with options:
|
27
|
+
# resources :products do
|
28
|
+
# member do
|
29
|
+
# get 'short'
|
30
|
+
# post 'toggle'
|
31
|
+
# end
|
32
|
+
#
|
33
|
+
# collection do
|
34
|
+
# get 'sold'
|
35
|
+
# end
|
36
|
+
# end
|
37
|
+
|
38
|
+
# Example resource route with sub-resources:
|
39
|
+
# resources :products do
|
40
|
+
# resources :comments, :sales
|
41
|
+
# resource :seller
|
42
|
+
# end
|
43
|
+
|
44
|
+
# Example resource route with more complex sub-resources:
|
45
|
+
# resources :products do
|
46
|
+
# resources :comments
|
47
|
+
# resources :sales do
|
48
|
+
# get 'recent', on: :collection
|
49
|
+
# end
|
50
|
+
# end
|
51
|
+
|
52
|
+
# Example resource route with concerns:
|
53
|
+
# concern :toggleable do
|
54
|
+
# post 'toggle'
|
55
|
+
# end
|
56
|
+
# resources :posts, concerns: :toggleable
|
57
|
+
# resources :photos, concerns: :toggleable
|
58
|
+
|
59
|
+
# Example resource route within a namespace:
|
60
|
+
# namespace :admin do
|
61
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
62
|
+
# # (app/controllers/admin/products_controller.rb)
|
63
|
+
# resources :products
|
64
|
+
# end
|
65
|
+
end
|
Binary file
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(version: 20140417114926) do
|
15
|
+
|
16
|
+
create_table "users", force: true do |t|
|
17
|
+
t.string "username"
|
18
|
+
t.string "password_digest"
|
19
|
+
t.datetime "created_at"
|
20
|
+
t.datetime "updated_at"
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
@@ -0,0 +1,2569 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/" for 127.0.0.1 at 2014-04-17 13:47:51 +0200
|
4
|
+
Processing by Rails::WelcomeController#index as HTML
|
5
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/railties-4.0.4/lib/rails/templates/rails/welcome/index.html.erb (0.8ms)
|
6
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
7
|
+
[1m[36m (13.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
8
|
+
[1m[35m (12.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
9
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
10
|
+
Migrating to CreateUsers (20140417114926)
|
11
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "password_digest" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
13
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140417114926"]]
|
14
|
+
[1m[36m (12.9ms)[0m [1mcommit transaction[0m
|
15
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
16
|
+
|
17
|
+
|
18
|
+
Started GET "/sessions/new" for 127.0.0.1 at 2014-04-17 13:51:53 +0200
|
19
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
20
|
+
|
21
|
+
ActionController::RoutingError (No route matches [GET] "/sessions/new"):
|
22
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
23
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
24
|
+
railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
|
25
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
|
26
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
27
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
|
28
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
|
29
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
|
30
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
31
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
32
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
33
|
+
activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
34
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
35
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
|
36
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
37
|
+
railties (4.0.4) lib/rails/engine.rb:511:in `call'
|
38
|
+
railties (4.0.4) lib/rails/application.rb:97:in `call'
|
39
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
40
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
41
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
42
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
43
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
44
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
45
|
+
|
46
|
+
|
47
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
48
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms)
|
49
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (7.6ms)
|
50
|
+
|
51
|
+
|
52
|
+
Started GET "/sessions/new" for 127.0.0.1 at 2014-04-17 13:52:25 +0200
|
53
|
+
|
54
|
+
SyntaxError (/var/www/rails/htauthentication/test/dummy/config/routes.rb:3: syntax error, unexpected =>, expecting keyword_end
|
55
|
+
"new" => :new
|
56
|
+
^):
|
57
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:223:in `load'
|
58
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:223:in `block in load'
|
59
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:214:in `load_dependency'
|
60
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:223:in `load'
|
61
|
+
railties (4.0.4) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
|
62
|
+
railties (4.0.4) lib/rails/application/routes_reloader.rb:40:in `each'
|
63
|
+
railties (4.0.4) lib/rails/application/routes_reloader.rb:40:in `load_paths'
|
64
|
+
railties (4.0.4) lib/rails/application/routes_reloader.rb:16:in `reload!'
|
65
|
+
railties (4.0.4) lib/rails/application/routes_reloader.rb:26:in `block in updater'
|
66
|
+
activesupport (4.0.4) lib/active_support/file_update_checker.rb:75:in `call'
|
67
|
+
activesupport (4.0.4) lib/active_support/file_update_checker.rb:75:in `execute'
|
68
|
+
railties (4.0.4) lib/rails/application/routes_reloader.rb:7:in `execute'
|
69
|
+
railties (4.0.4) lib/rails/application/finisher.rb:81:in `block (2 levels) in <module:Finisher>'
|
70
|
+
activesupport (4.0.4) lib/active_support/callbacks.rb:397:in `_run__2535252856301431044__prepare__callbacks'
|
71
|
+
activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
72
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:74:in `prepare!'
|
73
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:62:in `call'
|
74
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
75
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
76
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
77
|
+
railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
|
78
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
|
79
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
80
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
|
81
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
|
82
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
|
83
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
84
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
85
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
86
|
+
activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
87
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
88
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
|
89
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
90
|
+
railties (4.0.4) lib/rails/engine.rb:511:in `call'
|
91
|
+
railties (4.0.4) lib/rails/application.rb:97:in `call'
|
92
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
93
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
94
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
95
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
96
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
97
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
98
|
+
|
99
|
+
|
100
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
|
101
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
102
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
103
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.9ms)
|
104
|
+
|
105
|
+
|
106
|
+
Started GET "/sessions/new" for 127.0.0.1 at 2014-04-17 13:53:05 +0200
|
107
|
+
|
108
|
+
ActionController::RoutingError (No route matches [GET] "/sessions/new"):
|
109
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
110
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
111
|
+
railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
|
112
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
|
113
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
114
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
|
115
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
|
116
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
|
117
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
118
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
119
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
120
|
+
activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
121
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
122
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
|
123
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
124
|
+
railties (4.0.4) lib/rails/engine.rb:511:in `call'
|
125
|
+
railties (4.0.4) lib/rails/application.rb:97:in `call'
|
126
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
127
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
128
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
129
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
130
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
131
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
132
|
+
|
133
|
+
|
134
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
|
135
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
|
136
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms)
|
137
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (16.2ms)
|
138
|
+
|
139
|
+
|
140
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:53:08 +0200
|
141
|
+
|
142
|
+
ActionController::RoutingError (uninitialized constant SessionsController):
|
143
|
+
activesupport (4.0.4) lib/active_support/inflector/methods.rb:226:in `const_get'
|
144
|
+
activesupport (4.0.4) lib/active_support/inflector/methods.rb:226:in `block in constantize'
|
145
|
+
activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `each'
|
146
|
+
activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `inject'
|
147
|
+
activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `constantize'
|
148
|
+
actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
|
149
|
+
actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:66:in `controller'
|
150
|
+
actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:44:in `call'
|
151
|
+
actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
152
|
+
actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
|
153
|
+
actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
|
154
|
+
actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
|
155
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
156
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
157
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
158
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
159
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
160
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
161
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
162
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
163
|
+
activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
|
164
|
+
activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
165
|
+
activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
|
166
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
167
|
+
activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__3956880670645048571__call__callbacks'
|
168
|
+
activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
169
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
170
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
171
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
172
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
173
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
174
|
+
railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
|
175
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
|
176
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
177
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
|
178
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
|
179
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
|
180
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
181
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
182
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
183
|
+
activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
184
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
185
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
|
186
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
187
|
+
railties (4.0.4) lib/rails/engine.rb:511:in `call'
|
188
|
+
railties (4.0.4) lib/rails/application.rb:97:in `call'
|
189
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
190
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
191
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
192
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
193
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
194
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
195
|
+
|
196
|
+
|
197
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
198
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
|
199
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
|
200
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (11.3ms)
|
201
|
+
|
202
|
+
|
203
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:53:32 +0200
|
204
|
+
Processing by SessionsController#new as HTML
|
205
|
+
Rendered sessions/new.html.erb within layouts/application (0.5ms)
|
206
|
+
Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.0ms)
|
207
|
+
|
208
|
+
|
209
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:53:32 +0200
|
210
|
+
|
211
|
+
|
212
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:53:32 +0200
|
213
|
+
|
214
|
+
|
215
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:53:58 +0200
|
216
|
+
|
217
|
+
SyntaxError (/var/www/rails/htauthentication/test/dummy/config/routes.rb:4: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
|
218
|
+
post "login" => :create, as "create_session"
|
219
|
+
^):
|
220
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:223:in `load'
|
221
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:223:in `block in load'
|
222
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:214:in `load_dependency'
|
223
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:223:in `load'
|
224
|
+
railties (4.0.4) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
|
225
|
+
railties (4.0.4) lib/rails/application/routes_reloader.rb:40:in `each'
|
226
|
+
railties (4.0.4) lib/rails/application/routes_reloader.rb:40:in `load_paths'
|
227
|
+
railties (4.0.4) lib/rails/application/routes_reloader.rb:16:in `reload!'
|
228
|
+
railties (4.0.4) lib/rails/application/routes_reloader.rb:26:in `block in updater'
|
229
|
+
activesupport (4.0.4) lib/active_support/file_update_checker.rb:75:in `call'
|
230
|
+
activesupport (4.0.4) lib/active_support/file_update_checker.rb:75:in `execute'
|
231
|
+
railties (4.0.4) lib/rails/application/routes_reloader.rb:7:in `execute'
|
232
|
+
railties (4.0.4) lib/rails/application/finisher.rb:81:in `block (2 levels) in <module:Finisher>'
|
233
|
+
activesupport (4.0.4) lib/active_support/callbacks.rb:397:in `_run__2535252856301431044__prepare__callbacks'
|
234
|
+
activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
235
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:74:in `prepare!'
|
236
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:62:in `call'
|
237
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
238
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
239
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
240
|
+
railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
|
241
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
|
242
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
243
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
|
244
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
|
245
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
|
246
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
247
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
248
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
249
|
+
activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
250
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
251
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
|
252
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
253
|
+
railties (4.0.4) lib/rails/engine.rb:511:in `call'
|
254
|
+
railties (4.0.4) lib/rails/application.rb:97:in `call'
|
255
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
256
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
257
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
258
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
259
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
260
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
261
|
+
|
262
|
+
|
263
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.3ms)
|
264
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
265
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
266
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
|
267
|
+
|
268
|
+
|
269
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:54:18 +0200
|
270
|
+
Processing by SessionsController#new as HTML
|
271
|
+
Rendered sessions/new.html.erb within layouts/application (0.0ms)
|
272
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
273
|
+
|
274
|
+
|
275
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:54:18 +0200
|
276
|
+
|
277
|
+
|
278
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:54:18 +0200
|
279
|
+
|
280
|
+
|
281
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:54:29 +0200
|
282
|
+
Processing by SessionsController#new as HTML
|
283
|
+
Rendered sessions/new.html.erb within layouts/application (0.5ms)
|
284
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
285
|
+
|
286
|
+
|
287
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:54:29 +0200
|
288
|
+
|
289
|
+
|
290
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:54:29 +0200
|
291
|
+
|
292
|
+
|
293
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:55:16 +0200
|
294
|
+
Processing by SessionsController#new as HTML
|
295
|
+
Rendered sessions/new.html.erb within layouts/application (0.9ms)
|
296
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
297
|
+
|
298
|
+
|
299
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:55:16 +0200
|
300
|
+
|
301
|
+
|
302
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:55:16 +0200
|
303
|
+
|
304
|
+
|
305
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:55:17 +0200
|
306
|
+
Processing by SessionsController#new as HTML
|
307
|
+
Rendered sessions/new.html.erb within layouts/application (0.2ms)
|
308
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
309
|
+
|
310
|
+
|
311
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:55:17 +0200
|
312
|
+
|
313
|
+
|
314
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:55:17 +0200
|
315
|
+
|
316
|
+
|
317
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:55:18 +0200
|
318
|
+
Processing by SessionsController#new as HTML
|
319
|
+
Rendered sessions/new.html.erb within layouts/application (0.2ms)
|
320
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
321
|
+
|
322
|
+
|
323
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:55:18 +0200
|
324
|
+
|
325
|
+
|
326
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:55:18 +0200
|
327
|
+
|
328
|
+
|
329
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:55:19 +0200
|
330
|
+
Processing by SessionsController#new as HTML
|
331
|
+
Rendered sessions/new.html.erb within layouts/application (0.2ms)
|
332
|
+
Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
333
|
+
|
334
|
+
|
335
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:55:19 +0200
|
336
|
+
|
337
|
+
|
338
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:55:19 +0200
|
339
|
+
|
340
|
+
|
341
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:55:21 +0200
|
342
|
+
Processing by SessionsController#new as HTML
|
343
|
+
Rendered sessions/new.html.erb within layouts/application (0.2ms)
|
344
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
345
|
+
|
346
|
+
|
347
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:55:21 +0200
|
348
|
+
|
349
|
+
|
350
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:55:21 +0200
|
351
|
+
|
352
|
+
|
353
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:55:38 +0200
|
354
|
+
Processing by SessionsController#new as HTML
|
355
|
+
Rendered sessions/new.html.erb within layouts/application (0.4ms)
|
356
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
357
|
+
|
358
|
+
|
359
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:55:38 +0200
|
360
|
+
|
361
|
+
|
362
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:55:38 +0200
|
363
|
+
|
364
|
+
|
365
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:55:39 +0200
|
366
|
+
Processing by SessionsController#new as HTML
|
367
|
+
Rendered sessions/new.html.erb within layouts/application (0.2ms)
|
368
|
+
Completed 200 OK in 22ms (Views: 22.1ms | ActiveRecord: 0.0ms)
|
369
|
+
|
370
|
+
|
371
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:55:39 +0200
|
372
|
+
|
373
|
+
|
374
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:55:39 +0200
|
375
|
+
|
376
|
+
|
377
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:55:40 +0200
|
378
|
+
Processing by SessionsController#new as HTML
|
379
|
+
Rendered sessions/new.html.erb within layouts/application (0.2ms)
|
380
|
+
Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
381
|
+
|
382
|
+
|
383
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:55:40 +0200
|
384
|
+
|
385
|
+
|
386
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:55:40 +0200
|
387
|
+
|
388
|
+
|
389
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:55:41 +0200
|
390
|
+
Processing by SessionsController#new as HTML
|
391
|
+
Rendered sessions/new.html.erb within layouts/application (0.4ms)
|
392
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
393
|
+
|
394
|
+
|
395
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:55:41 +0200
|
396
|
+
|
397
|
+
|
398
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:55:41 +0200
|
399
|
+
|
400
|
+
|
401
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:55:52 +0200
|
402
|
+
Processing by SessionsController#new as HTML
|
403
|
+
Rendered sessions/new.html.erb within layouts/application (1.0ms)
|
404
|
+
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
405
|
+
|
406
|
+
|
407
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:55:52 +0200
|
408
|
+
|
409
|
+
|
410
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:55:52 +0200
|
411
|
+
|
412
|
+
|
413
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:55:53 +0200
|
414
|
+
Processing by SessionsController#new as HTML
|
415
|
+
Rendered sessions/new.html.erb within layouts/application (0.4ms)
|
416
|
+
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
417
|
+
|
418
|
+
|
419
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:55:53 +0200
|
420
|
+
|
421
|
+
|
422
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:55:53 +0200
|
423
|
+
|
424
|
+
|
425
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:55:54 +0200
|
426
|
+
Processing by SessionsController#new as HTML
|
427
|
+
Rendered sessions/new.html.erb within layouts/application (0.3ms)
|
428
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
429
|
+
|
430
|
+
|
431
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:55:54 +0200
|
432
|
+
|
433
|
+
|
434
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:55:54 +0200
|
435
|
+
|
436
|
+
|
437
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:55:54 +0200
|
438
|
+
Processing by SessionsController#new as HTML
|
439
|
+
Rendered sessions/new.html.erb within layouts/application (0.1ms)
|
440
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
441
|
+
|
442
|
+
|
443
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:55:55 +0200
|
444
|
+
|
445
|
+
|
446
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:55:55 +0200
|
447
|
+
|
448
|
+
|
449
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:55:56 +0200
|
450
|
+
Processing by SessionsController#new as HTML
|
451
|
+
Rendered sessions/new.html.erb within layouts/application (0.2ms)
|
452
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
453
|
+
|
454
|
+
|
455
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:55:56 +0200
|
456
|
+
|
457
|
+
|
458
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:55:56 +0200
|
459
|
+
|
460
|
+
|
461
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:55:56 +0200
|
462
|
+
Processing by SessionsController#new as HTML
|
463
|
+
Rendered sessions/new.html.erb within layouts/application (0.4ms)
|
464
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
465
|
+
|
466
|
+
|
467
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:55:56 +0200
|
468
|
+
|
469
|
+
|
470
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:55:56 +0200
|
471
|
+
|
472
|
+
|
473
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:56:12 +0200
|
474
|
+
Processing by SessionsController#new as HTML
|
475
|
+
Rendered sessions/new.html.erb within layouts/application (1.0ms)
|
476
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
477
|
+
|
478
|
+
|
479
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:56:12 +0200
|
480
|
+
|
481
|
+
|
482
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:56:12 +0200
|
483
|
+
|
484
|
+
|
485
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:56:13 +0200
|
486
|
+
Processing by SessionsController#new as HTML
|
487
|
+
Rendered sessions/new.html.erb within layouts/application (0.3ms)
|
488
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
489
|
+
|
490
|
+
|
491
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:56:13 +0200
|
492
|
+
|
493
|
+
|
494
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:56:13 +0200
|
495
|
+
|
496
|
+
|
497
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:56:14 +0200
|
498
|
+
Processing by SessionsController#new as HTML
|
499
|
+
Rendered sessions/new.html.erb within layouts/application (0.1ms)
|
500
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
501
|
+
|
502
|
+
|
503
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:56:14 +0200
|
504
|
+
|
505
|
+
|
506
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:56:14 +0200
|
507
|
+
|
508
|
+
|
509
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:56:15 +0200
|
510
|
+
Processing by SessionsController#new as HTML
|
511
|
+
Rendered sessions/new.html.erb within layouts/application (0.3ms)
|
512
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
513
|
+
|
514
|
+
|
515
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:56:15 +0200
|
516
|
+
|
517
|
+
|
518
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:56:15 +0200
|
519
|
+
|
520
|
+
|
521
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:56:35 +0200
|
522
|
+
Processing by SessionsController#new as HTML
|
523
|
+
Rendered sessions/new.html.erb within layouts/application (0.2ms)
|
524
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
525
|
+
|
526
|
+
|
527
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:56:35 +0200
|
528
|
+
|
529
|
+
|
530
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:56:35 +0200
|
531
|
+
|
532
|
+
|
533
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:56:36 +0200
|
534
|
+
Processing by SessionsController#new as HTML
|
535
|
+
Rendered sessions/new.html.erb within layouts/application (0.3ms)
|
536
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
537
|
+
|
538
|
+
|
539
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:56:36 +0200
|
540
|
+
|
541
|
+
|
542
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:56:36 +0200
|
543
|
+
|
544
|
+
|
545
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:56:37 +0200
|
546
|
+
Processing by SessionsController#new as HTML
|
547
|
+
Rendered sessions/new.html.erb within layouts/application (0.3ms)
|
548
|
+
Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
549
|
+
|
550
|
+
|
551
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:56:37 +0200
|
552
|
+
|
553
|
+
|
554
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:56:37 +0200
|
555
|
+
|
556
|
+
|
557
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:56:37 +0200
|
558
|
+
Processing by SessionsController#new as HTML
|
559
|
+
Rendered sessions/new.html.erb within layouts/application (0.1ms)
|
560
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
561
|
+
|
562
|
+
|
563
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:56:37 +0200
|
564
|
+
|
565
|
+
|
566
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:56:37 +0200
|
567
|
+
|
568
|
+
|
569
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:56:37 +0200
|
570
|
+
Processing by SessionsController#new as HTML
|
571
|
+
Rendered sessions/new.html.erb within layouts/application (0.3ms)
|
572
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
573
|
+
|
574
|
+
|
575
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:56:37 +0200
|
576
|
+
|
577
|
+
|
578
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:56:37 +0200
|
579
|
+
|
580
|
+
|
581
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:56:38 +0200
|
582
|
+
Processing by SessionsController#new as HTML
|
583
|
+
Rendered sessions/new.html.erb within layouts/application (0.4ms)
|
584
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
585
|
+
|
586
|
+
|
587
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:56:38 +0200
|
588
|
+
|
589
|
+
|
590
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:56:38 +0200
|
591
|
+
|
592
|
+
|
593
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:56:39 +0200
|
594
|
+
Processing by SessionsController#new as HTML
|
595
|
+
Rendered sessions/new.html.erb within layouts/application (0.3ms)
|
596
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
597
|
+
|
598
|
+
|
599
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:56:39 +0200
|
600
|
+
|
601
|
+
|
602
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:56:39 +0200
|
603
|
+
|
604
|
+
|
605
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:56:39 +0200
|
606
|
+
Processing by SessionsController#new as HTML
|
607
|
+
Rendered sessions/new.html.erb within layouts/application (0.2ms)
|
608
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
609
|
+
|
610
|
+
|
611
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:56:39 +0200
|
612
|
+
|
613
|
+
|
614
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:56:39 +0200
|
615
|
+
|
616
|
+
|
617
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:56:40 +0200
|
618
|
+
Processing by SessionsController#new as HTML
|
619
|
+
Rendered sessions/new.html.erb within layouts/application (0.2ms)
|
620
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
621
|
+
|
622
|
+
|
623
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:56:40 +0200
|
624
|
+
|
625
|
+
|
626
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:56:40 +0200
|
627
|
+
|
628
|
+
|
629
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:57:03 +0200
|
630
|
+
Processing by SessionsController#new as HTML
|
631
|
+
Rendered sessions/new.html.erb within layouts/application (27.3ms)
|
632
|
+
Completed 500 Internal Server Error in 29ms
|
633
|
+
|
634
|
+
ActionView::Template::Error (undefined method `from_tag' for #<#<Class:0x007f8eecb6a788>:0x007f8eec9e49b8>):
|
635
|
+
1: <%= from_tag do %>
|
636
|
+
2:
|
637
|
+
3:
|
638
|
+
4: <% end %>
|
639
|
+
app/views/sessions/new.html.erb:1:in `_app_views_sessions_new_html_erb___1510570930875903882_70125915945040'
|
640
|
+
|
641
|
+
|
642
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
643
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
644
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.6ms)
|
645
|
+
|
646
|
+
|
647
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:57:25 +0200
|
648
|
+
Processing by SessionsController#new as HTML
|
649
|
+
Rendered sessions/new.html.erb within layouts/application (2.3ms)
|
650
|
+
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
|
651
|
+
|
652
|
+
|
653
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:57:25 +0200
|
654
|
+
|
655
|
+
|
656
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:57:25 +0200
|
657
|
+
|
658
|
+
|
659
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 13:58:37 +0200
|
660
|
+
Processing by SessionsController#new as HTML
|
661
|
+
Rendered sessions/new.html.erb within layouts/application (1.3ms)
|
662
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
663
|
+
|
664
|
+
|
665
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 13:58:38 +0200
|
666
|
+
|
667
|
+
|
668
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 13:58:38 +0200
|
669
|
+
|
670
|
+
|
671
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 13:58:42 +0200
|
672
|
+
Processing by SessionsController#create as HTML
|
673
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"test", "password"=>"[FILTERED]", "commit"=>"Login"}
|
674
|
+
Completed 500 Internal Server Error in 1ms
|
675
|
+
|
676
|
+
SystemExit (jo):
|
677
|
+
app/controllers/sessions_controller.rb:6:in `abort'
|
678
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
679
|
+
|
680
|
+
|
681
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
682
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
683
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
684
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.0ms)
|
685
|
+
|
686
|
+
|
687
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 13:59:33 +0200
|
688
|
+
Processing by SessionsController#create as HTML
|
689
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"test", "password"=>"[FILTERED]", "commit"=>"Login"}
|
690
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'test' LIMIT 1
|
691
|
+
Rendered sessions/create.html.erb within layouts/application (0.6ms)
|
692
|
+
Completed 500 Internal Server Error in 7ms
|
693
|
+
|
694
|
+
ActionView::Template::Error (undefined method `username' for nil:NilClass):
|
695
|
+
1: Hello <%= @user.username %>
|
696
|
+
app/views/sessions/create.html.erb:1:in `_app_views_sessions_create_html_erb___3599404104772753687_70125916974480'
|
697
|
+
|
698
|
+
|
699
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
700
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
701
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.4ms)
|
702
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
703
|
+
[1m[35mSQL (3.2ms)[0m INSERT INTO "users" ("created_at", "updated_at", "username") VALUES (?, ?, ?) [["created_at", Thu, 17 Apr 2014 12:00:43 UTC +00:00], ["updated_at", Thu, 17 Apr 2014 12:00:43 UTC +00:00], ["username", "kai"]]
|
704
|
+
[1m[36m (12.8ms)[0m [1mcommit transaction[0m
|
705
|
+
|
706
|
+
|
707
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:01:06 +0200
|
708
|
+
Processing by SessionsController#create as HTML
|
709
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"test", "password"=>"[FILTERED]", "commit"=>"Login"}
|
710
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."username" = 'test' LIMIT 1[0m
|
711
|
+
Rendered sessions/create.html.erb within layouts/application (1.2ms)
|
712
|
+
Completed 500 Internal Server Error in 4ms
|
713
|
+
|
714
|
+
ActionView::Template::Error (undefined method `username' for nil:NilClass):
|
715
|
+
1: Hello, <%= @user.username %>
|
716
|
+
app/views/sessions/create.html.erb:1:in `_app_views_sessions_create_html_erb___3599404104772753687_70125878533260'
|
717
|
+
|
718
|
+
|
719
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
720
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
721
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms)
|
722
|
+
|
723
|
+
|
724
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:01:08 +0200
|
725
|
+
Processing by SessionsController#new as HTML
|
726
|
+
Rendered sessions/new.html.erb within layouts/application (1.4ms)
|
727
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
728
|
+
|
729
|
+
|
730
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:01:11 +0200
|
731
|
+
Processing by SessionsController#create as HTML
|
732
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"Kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
733
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'Kai' LIMIT 1
|
734
|
+
Rendered sessions/create.html.erb within layouts/application (0.9ms)
|
735
|
+
Completed 500 Internal Server Error in 5ms
|
736
|
+
|
737
|
+
ActionView::Template::Error (undefined method `username' for nil:NilClass):
|
738
|
+
1: Hello, <%= @user.username %>
|
739
|
+
app/views/sessions/create.html.erb:1:in `_app_views_sessions_create_html_erb___3599404104772753687_70125878533260'
|
740
|
+
|
741
|
+
|
742
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
743
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
744
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms)
|
745
|
+
|
746
|
+
|
747
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:01:48 +0200
|
748
|
+
Processing by SessionsController#new as HTML
|
749
|
+
Rendered sessions/new.html.erb within layouts/application (0.9ms)
|
750
|
+
Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
751
|
+
|
752
|
+
|
753
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:01:49 +0200
|
754
|
+
Processing by SessionsController#new as HTML
|
755
|
+
Rendered sessions/new.html.erb within layouts/application (0.5ms)
|
756
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
757
|
+
|
758
|
+
|
759
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:01:49 +0200
|
760
|
+
|
761
|
+
|
762
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:01:49 +0200
|
763
|
+
|
764
|
+
|
765
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:01:51 +0200
|
766
|
+
Processing by SessionsController#create as HTML
|
767
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"Kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
768
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."username" = 'Kai' LIMIT 1[0m
|
769
|
+
Rendered sessions/create.html.erb within layouts/application (0.5ms)
|
770
|
+
Completed 500 Internal Server Error in 3ms
|
771
|
+
|
772
|
+
ActionView::Template::Error (undefined method `username' for nil:NilClass):
|
773
|
+
1: Hello, <%= @user.username %>
|
774
|
+
app/views/sessions/create.html.erb:1:in `_app_views_sessions_create_html_erb___3599404104772753687_70125878533260'
|
775
|
+
|
776
|
+
|
777
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
778
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
779
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.9ms)
|
780
|
+
|
781
|
+
|
782
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:01:58 +0200
|
783
|
+
Processing by SessionsController#new as HTML
|
784
|
+
Rendered sessions/new.html.erb within layouts/application (0.7ms)
|
785
|
+
Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
786
|
+
|
787
|
+
|
788
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:02:01 +0200
|
789
|
+
Processing by SessionsController#create as HTML
|
790
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
791
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
792
|
+
Rendered sessions/create.html.erb within layouts/application (0.3ms)
|
793
|
+
Completed 200 OK in 14ms (Views: 4.2ms | ActiveRecord: 0.4ms)
|
794
|
+
|
795
|
+
|
796
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:02:01 +0200
|
797
|
+
|
798
|
+
|
799
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:02:01 +0200
|
800
|
+
|
801
|
+
|
802
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:02:05 +0200
|
803
|
+
Processing by SessionsController#new as HTML
|
804
|
+
Rendered sessions/new.html.erb within layouts/application (0.8ms)
|
805
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
806
|
+
|
807
|
+
|
808
|
+
Started GET "/sessions/new" for 127.0.0.1 at 2014-04-17 14:02:53 +0200
|
809
|
+
|
810
|
+
ActionController::RoutingError (No route matches [GET] "/sessions/new"):
|
811
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
812
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
813
|
+
railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
|
814
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
|
815
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
816
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
|
817
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
|
818
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
|
819
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
820
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
821
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
822
|
+
activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
823
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
824
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
|
825
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
826
|
+
railties (4.0.4) lib/rails/engine.rb:511:in `call'
|
827
|
+
railties (4.0.4) lib/rails/application.rb:97:in `call'
|
828
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
829
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
830
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
831
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
832
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
833
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
834
|
+
|
835
|
+
|
836
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
837
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
|
838
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
|
839
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (8.9ms)
|
840
|
+
|
841
|
+
|
842
|
+
Started GET "/" for 127.0.0.1 at 2014-04-17 14:02:56 +0200
|
843
|
+
Processing by Rails::WelcomeController#index as HTML
|
844
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/railties-4.0.4/lib/rails/templates/rails/welcome/index.html.erb (0.1ms)
|
845
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
846
|
+
|
847
|
+
|
848
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:02:59 +0200
|
849
|
+
Processing by SessionsController#new as HTML
|
850
|
+
Rendered sessions/new.html.erb within layouts/application (0.7ms)
|
851
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
852
|
+
|
853
|
+
|
854
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:02:59 +0200
|
855
|
+
|
856
|
+
|
857
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:02:59 +0200
|
858
|
+
|
859
|
+
|
860
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:03:03 +0200
|
861
|
+
Processing by SessionsController#create as HTML
|
862
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"test", "password"=>"[FILTERED]", "commit"=>"Login"}
|
863
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."username" = 'test' LIMIT 1[0m
|
864
|
+
Redirected to http://localhost:3000/login
|
865
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
|
866
|
+
|
867
|
+
|
868
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:03:03 +0200
|
869
|
+
Processing by SessionsController#new as HTML
|
870
|
+
Rendered sessions/new.html.erb within layouts/application (0.9ms)
|
871
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
872
|
+
|
873
|
+
|
874
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:03:03 +0200
|
875
|
+
|
876
|
+
|
877
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:03:03 +0200
|
878
|
+
|
879
|
+
|
880
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:03:05 +0200
|
881
|
+
Processing by SessionsController#create as HTML
|
882
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
883
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
884
|
+
Rendered sessions/create.html.erb within layouts/application (0.1ms)
|
885
|
+
Completed 200 OK in 10ms (Views: 2.1ms | ActiveRecord: 0.5ms)
|
886
|
+
|
887
|
+
|
888
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:03:05 +0200
|
889
|
+
|
890
|
+
|
891
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:03:05 +0200
|
892
|
+
|
893
|
+
|
894
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:03:06 +0200
|
895
|
+
Processing by SessionsController#new as HTML
|
896
|
+
Rendered sessions/new.html.erb within layouts/application (0.8ms)
|
897
|
+
Completed 200 OK in 24ms (Views: 23.9ms | ActiveRecord: 0.0ms)
|
898
|
+
|
899
|
+
|
900
|
+
Started GET "/" for 127.0.0.1 at 2014-04-17 14:04:04 +0200
|
901
|
+
Processing by SessionsController#new as HTML
|
902
|
+
Rendered sessions/new.html.erb within layouts/application (0.7ms)
|
903
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
904
|
+
|
905
|
+
|
906
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:04:04 +0200
|
907
|
+
|
908
|
+
|
909
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:04:04 +0200
|
910
|
+
|
911
|
+
|
912
|
+
Started GET "/" for 127.0.0.1 at 2014-04-17 14:08:16 +0200
|
913
|
+
Processing by SessionsController#new as HTML
|
914
|
+
Rendered sessions/new.html.erb within layouts/application (0.5ms)
|
915
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
916
|
+
|
917
|
+
|
918
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:08:16 +0200
|
919
|
+
|
920
|
+
|
921
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:08:16 +0200
|
922
|
+
|
923
|
+
|
924
|
+
Started GET "/" for 127.0.0.1 at 2014-04-17 14:08:31 +0200
|
925
|
+
Processing by SessionsController#new as HTML
|
926
|
+
Rendered sessions/new.html.erb within layouts/application (0.7ms)
|
927
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
928
|
+
|
929
|
+
|
930
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:08:31 +0200
|
931
|
+
|
932
|
+
|
933
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:08:31 +0200
|
934
|
+
|
935
|
+
|
936
|
+
Started GET "/" for 127.0.0.1 at 2014-04-17 14:08:32 +0200
|
937
|
+
Processing by SessionsController#new as HTML
|
938
|
+
Rendered sessions/new.html.erb within layouts/application (1.1ms)
|
939
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
940
|
+
|
941
|
+
|
942
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:08:32 +0200
|
943
|
+
|
944
|
+
|
945
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:08:32 +0200
|
946
|
+
|
947
|
+
|
948
|
+
Started GET "/" for 127.0.0.1 at 2014-04-17 14:08:35 +0200
|
949
|
+
Processing by SessionsController#new as HTML
|
950
|
+
Rendered sessions/new.html.erb within layouts/application (0.7ms)
|
951
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
952
|
+
|
953
|
+
|
954
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:08:35 +0200
|
955
|
+
|
956
|
+
|
957
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:08:35 +0200
|
958
|
+
|
959
|
+
|
960
|
+
Started GET "/" for 127.0.0.1 at 2014-04-17 14:08:41 +0200
|
961
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
962
|
+
Processing by SessionsController#new as HTML
|
963
|
+
Rendered sessions/new.html.erb within layouts/application (12.5ms)
|
964
|
+
Completed 200 OK in 36ms (Views: 35.5ms | ActiveRecord: 0.0ms)
|
965
|
+
|
966
|
+
|
967
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:08:41 +0200
|
968
|
+
|
969
|
+
|
970
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:08:41 +0200
|
971
|
+
|
972
|
+
|
973
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:08:44 +0200
|
974
|
+
Processing by SessionsController#create as HTML
|
975
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
976
|
+
Completed 500 Internal Server Error in 3ms
|
977
|
+
|
978
|
+
NameError (undefined local variable or method `has_htpasswd_logi' for #<Class:0x000000030197c8>):
|
979
|
+
app/models/user.rb:3:in `<class:User>'
|
980
|
+
app/models/user.rb:1:in `<top (required)>'
|
981
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
982
|
+
|
983
|
+
|
984
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
985
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
986
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
987
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
|
988
|
+
|
989
|
+
|
990
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:08:52 +0200
|
991
|
+
Processing by SessionsController#create as HTML
|
992
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
993
|
+
Completed 500 Internal Server Error in 2ms
|
994
|
+
|
995
|
+
NameError (undefined local variable or method `has_htpasswd_login' for #<Class:0x007f2b30913e78>):
|
996
|
+
app/models/user.rb:3:in `<class:User>'
|
997
|
+
app/models/user.rb:1:in `<top (required)>'
|
998
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
999
|
+
|
1000
|
+
|
1001
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
|
1002
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
1003
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
1004
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.9ms)
|
1005
|
+
|
1006
|
+
|
1007
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:09:16 +0200
|
1008
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1009
|
+
Processing by SessionsController#create as HTML
|
1010
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1011
|
+
Completed 500 Internal Server Error in 13ms
|
1012
|
+
|
1013
|
+
NameError (undefined local variable or method `has_htpasswd_login' for #<Class:0x0000000322e450>):
|
1014
|
+
app/models/user.rb:3:in `<class:User>'
|
1015
|
+
app/models/user.rb:1:in `<top (required)>'
|
1016
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
1017
|
+
|
1018
|
+
|
1019
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1020
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
1021
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
1022
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
|
1023
|
+
|
1024
|
+
|
1025
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:11:20 +0200
|
1026
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1027
|
+
Processing by SessionsController#create as HTML
|
1028
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1029
|
+
Completed 500 Internal Server Error in 13ms
|
1030
|
+
|
1031
|
+
NameError (undefined local variable or method `has_htpasswd_login' for #<Class:0x00000002deac90>):
|
1032
|
+
app/models/user.rb:3:in `<class:User>'
|
1033
|
+
app/models/user.rb:1:in `<top (required)>'
|
1034
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
1035
|
+
|
1036
|
+
|
1037
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1038
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
1039
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
1040
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
|
1041
|
+
|
1042
|
+
|
1043
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:11:46 +0200
|
1044
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1045
|
+
Processing by SessionsController#create as HTML
|
1046
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1047
|
+
Completed 500 Internal Server Error in 13ms
|
1048
|
+
|
1049
|
+
NameError (undefined local variable or method `has_htpasswd_login' for #<Class:0x000000026c44c0>):
|
1050
|
+
app/models/user.rb:3:in `<class:User>'
|
1051
|
+
app/models/user.rb:1:in `<top (required)>'
|
1052
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
1053
|
+
|
1054
|
+
|
1055
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1056
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
1057
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
1058
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.1ms)
|
1059
|
+
|
1060
|
+
|
1061
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:12:29 +0200
|
1062
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1063
|
+
Processing by SessionsController#create as HTML
|
1064
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1065
|
+
Completed 500 Internal Server Error in 14ms
|
1066
|
+
|
1067
|
+
NameError (undefined local variable or method `has_htpasswd_login' for #<Class:0x00000001d6a0a0>):
|
1068
|
+
app/models/user.rb:3:in `<class:User>'
|
1069
|
+
app/models/user.rb:1:in `<top (required)>'
|
1070
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
1071
|
+
|
1072
|
+
|
1073
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1074
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
1075
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
1076
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
1077
|
+
|
1078
|
+
|
1079
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:12:37 +0200
|
1080
|
+
Processing by SessionsController#create as HTML
|
1081
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1082
|
+
Completed 500 Internal Server Error in 1ms
|
1083
|
+
|
1084
|
+
NameError (undefined local variable or method `has_htpasswd_login' for #<Class:0x0000000339b630>):
|
1085
|
+
app/models/user.rb:3:in `<class:User>'
|
1086
|
+
app/models/user.rb:1:in `<top (required)>'
|
1087
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
1088
|
+
|
1089
|
+
|
1090
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
|
1091
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
1092
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
1093
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.1ms)
|
1094
|
+
|
1095
|
+
|
1096
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:13:26 +0200
|
1097
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1098
|
+
Processing by SessionsController#create as HTML
|
1099
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1100
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
1101
|
+
Rendered sessions/create.html.erb within layouts/application (0.6ms)
|
1102
|
+
Completed 200 OK in 25ms (Views: 8.0ms | ActiveRecord: 0.3ms)
|
1103
|
+
|
1104
|
+
|
1105
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:13:26 +0200
|
1106
|
+
|
1107
|
+
|
1108
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:13:26 +0200
|
1109
|
+
|
1110
|
+
|
1111
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:13:57 +0200
|
1112
|
+
Processing by SessionsController#create as HTML
|
1113
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1114
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1[0m
|
1115
|
+
Rendered sessions/create.html.erb within layouts/application (0.4ms)
|
1116
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
|
1117
|
+
|
1118
|
+
|
1119
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:13:57 +0200
|
1120
|
+
|
1121
|
+
|
1122
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:13:57 +0200
|
1123
|
+
|
1124
|
+
|
1125
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:14:14 +0200
|
1126
|
+
Processing by SessionsController#create as HTML
|
1127
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1128
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
1129
|
+
Rendered sessions/create.html.erb within layouts/application (2.1ms)
|
1130
|
+
Completed 500 Internal Server Error in 5ms
|
1131
|
+
|
1132
|
+
ActionView::Template::Error (undefined method `has_htpasswd_logi' for #<Class:0x0000000209fe00>):
|
1133
|
+
1: Hello, <%= @user.username %>, <%= User.has_htpasswd_logi %>
|
1134
|
+
app/views/sessions/create.html.erb:1:in `_app_views_sessions_create_html_erb___673529726368507925_70075277495420'
|
1135
|
+
|
1136
|
+
|
1137
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
1138
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
1139
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.7ms)
|
1140
|
+
|
1141
|
+
|
1142
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:14:21 +0200
|
1143
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1144
|
+
Processing by SessionsController#create as HTML
|
1145
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1146
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
1147
|
+
Rendered sessions/create.html.erb within layouts/application (0.6ms)
|
1148
|
+
Completed 200 OK in 24ms (Views: 7.4ms | ActiveRecord: 0.3ms)
|
1149
|
+
|
1150
|
+
|
1151
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:14:21 +0200
|
1152
|
+
|
1153
|
+
|
1154
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:14:21 +0200
|
1155
|
+
|
1156
|
+
|
1157
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:16:18 +0200
|
1158
|
+
Processing by SessionsController#create as HTML
|
1159
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1160
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1[0m
|
1161
|
+
Completed 500 Internal Server Error in 7ms
|
1162
|
+
|
1163
|
+
NoMethodError (undefined method `authenticate_by_htpasswd' for #<User:0x007fbcbc12a8d8>):
|
1164
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
1165
|
+
|
1166
|
+
|
1167
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
|
1168
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
1169
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
1170
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
1171
|
+
|
1172
|
+
|
1173
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:16:24 +0200
|
1174
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1175
|
+
Processing by SessionsController#create as HTML
|
1176
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1177
|
+
Completed 500 Internal Server Error in 13ms
|
1178
|
+
|
1179
|
+
NameError (undefined local variable or method `has_htpasswd_login' for #<Class:0x00000001c08f90>):
|
1180
|
+
app/models/user.rb:3:in `<class:User>'
|
1181
|
+
app/models/user.rb:1:in `<top (required)>'
|
1182
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
1183
|
+
|
1184
|
+
|
1185
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1186
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
1187
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
1188
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
1189
|
+
|
1190
|
+
|
1191
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:17:13 +0200
|
1192
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1193
|
+
Processing by SessionsController#create as HTML
|
1194
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1195
|
+
Completed 500 Internal Server Error in 13ms
|
1196
|
+
|
1197
|
+
NameError (undefined local variable or method `has_htpasswd_login' for #<Class:0x000000026be7f0>):
|
1198
|
+
app/models/user.rb:3:in `<class:User>'
|
1199
|
+
app/models/user.rb:1:in `<top (required)>'
|
1200
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
1201
|
+
|
1202
|
+
|
1203
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1204
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
1205
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
1206
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
|
1207
|
+
|
1208
|
+
|
1209
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:17:28 +0200
|
1210
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1211
|
+
Processing by SessionsController#create as HTML
|
1212
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1213
|
+
Completed 500 Internal Server Error in 13ms
|
1214
|
+
|
1215
|
+
NameError (undefined local variable or method `has_htpasswd_login' for #<Class:0x000000025c7478>):
|
1216
|
+
app/models/user.rb:3:in `<class:User>'
|
1217
|
+
app/models/user.rb:1:in `<top (required)>'
|
1218
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
1219
|
+
|
1220
|
+
|
1221
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1222
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
1223
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
1224
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
|
1225
|
+
|
1226
|
+
|
1227
|
+
Started GET "/" for 127.0.0.1 at 2014-04-17 14:17:30 +0200
|
1228
|
+
Processing by SessionsController#new as HTML
|
1229
|
+
Rendered sessions/new.html.erb within layouts/application (1.1ms)
|
1230
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
1231
|
+
|
1232
|
+
|
1233
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:17:30 +0200
|
1234
|
+
|
1235
|
+
|
1236
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:17:30 +0200
|
1237
|
+
|
1238
|
+
|
1239
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:17:32 +0200
|
1240
|
+
Processing by SessionsController#create as HTML
|
1241
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1242
|
+
Completed 500 Internal Server Error in 1ms
|
1243
|
+
|
1244
|
+
NameError (undefined local variable or method `has_htpasswd_login' for #<Class:0x007f1b304e2d50>):
|
1245
|
+
app/models/user.rb:3:in `<class:User>'
|
1246
|
+
app/models/user.rb:1:in `<top (required)>'
|
1247
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
1248
|
+
|
1249
|
+
|
1250
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
|
1251
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
|
1252
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
|
1253
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.8ms)
|
1254
|
+
|
1255
|
+
|
1256
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:18:27 +0200
|
1257
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1258
|
+
Processing by SessionsController#create as HTML
|
1259
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1260
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
1261
|
+
Completed 500 Internal Server Error in 17ms
|
1262
|
+
|
1263
|
+
NoMethodError (undefined method `authenticate_by_htpasswd' for #<User:0x000000036d8500>):
|
1264
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
1265
|
+
|
1266
|
+
|
1267
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1268
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
1269
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
1270
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.1ms)
|
1271
|
+
|
1272
|
+
|
1273
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:19:28 +0200
|
1274
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1275
|
+
Processing by SessionsController#create as HTML
|
1276
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1277
|
+
Completed 500 Internal Server Error in 13ms
|
1278
|
+
|
1279
|
+
NameError (undefined local variable or method `has_htpasswd_login' for #<Class:0x000000037123b8>):
|
1280
|
+
app/models/user.rb:3:in `<class:User>'
|
1281
|
+
app/models/user.rb:1:in `<top (required)>'
|
1282
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
1283
|
+
|
1284
|
+
|
1285
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1286
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
1287
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
1288
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.5ms)
|
1289
|
+
|
1290
|
+
|
1291
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:20:04 +0200
|
1292
|
+
Processing by SessionsController#create as HTML
|
1293
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1294
|
+
Completed 500 Internal Server Error in 3ms
|
1295
|
+
|
1296
|
+
NameError (undefined local variable or method `has_htpasswd_login' for #<Class:0x00000004d10430>):
|
1297
|
+
app/models/user.rb:3:in `<class:User>'
|
1298
|
+
app/models/user.rb:1:in `<top (required)>'
|
1299
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
1300
|
+
|
1301
|
+
|
1302
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
|
1303
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
1304
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
1305
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.1ms)
|
1306
|
+
|
1307
|
+
|
1308
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:20:09 +0200
|
1309
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1310
|
+
Processing by SessionsController#create as HTML
|
1311
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1312
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
1313
|
+
Completed 500 Internal Server Error in 18ms
|
1314
|
+
|
1315
|
+
NoMethodError (undefined method `authenticate_by_htpasswd' for #<User:0x00000002f7df80>):
|
1316
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
1317
|
+
|
1318
|
+
|
1319
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1320
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
1321
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
1322
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.1ms)
|
1323
|
+
|
1324
|
+
|
1325
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:26:07 +0200
|
1326
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1327
|
+
Processing by SessionsController#create as HTML
|
1328
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1329
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
1330
|
+
Rendered sessions/create.html.erb within layouts/application (0.8ms)
|
1331
|
+
Completed 200 OK in 25ms (Views: 8.1ms | ActiveRecord: 0.3ms)
|
1332
|
+
|
1333
|
+
|
1334
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:26:07 +0200
|
1335
|
+
|
1336
|
+
|
1337
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:26:07 +0200
|
1338
|
+
|
1339
|
+
|
1340
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:26:44 +0200
|
1341
|
+
Processing by SessionsController#create as HTML
|
1342
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1343
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1[0m
|
1344
|
+
Rendered sessions/create.html.erb within layouts/application (0.4ms)
|
1345
|
+
Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.2ms)
|
1346
|
+
|
1347
|
+
|
1348
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:26:44 +0200
|
1349
|
+
|
1350
|
+
|
1351
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:26:44 +0200
|
1352
|
+
|
1353
|
+
|
1354
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:26:57 +0200
|
1355
|
+
Processing by SessionsController#create as HTML
|
1356
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1357
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
1358
|
+
Redirected to http://localhost:3000/login
|
1359
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.5ms)
|
1360
|
+
|
1361
|
+
|
1362
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:26:57 +0200
|
1363
|
+
Processing by SessionsController#new as HTML
|
1364
|
+
Rendered sessions/new.html.erb within layouts/application (1.4ms)
|
1365
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
1366
|
+
|
1367
|
+
|
1368
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:26:58 +0200
|
1369
|
+
|
1370
|
+
|
1371
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:26:58 +0200
|
1372
|
+
|
1373
|
+
|
1374
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:27:00 +0200
|
1375
|
+
Processing by SessionsController#create as HTML
|
1376
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1377
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1[0m
|
1378
|
+
Redirected to http://localhost:3000/login
|
1379
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
|
1380
|
+
|
1381
|
+
|
1382
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:27:00 +0200
|
1383
|
+
Processing by SessionsController#new as HTML
|
1384
|
+
Rendered sessions/new.html.erb within layouts/application (0.6ms)
|
1385
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
1386
|
+
|
1387
|
+
|
1388
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:27:00 +0200
|
1389
|
+
|
1390
|
+
|
1391
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:27:00 +0200
|
1392
|
+
|
1393
|
+
|
1394
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:27:12 +0200
|
1395
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1396
|
+
Processing by SessionsController#create as HTML
|
1397
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1398
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
1399
|
+
Rendered sessions/create.html.erb within layouts/application (0.6ms)
|
1400
|
+
Completed 200 OK in 24ms (Views: 7.4ms | ActiveRecord: 0.3ms)
|
1401
|
+
|
1402
|
+
|
1403
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:27:12 +0200
|
1404
|
+
|
1405
|
+
|
1406
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:27:12 +0200
|
1407
|
+
|
1408
|
+
|
1409
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:28:25 +0200
|
1410
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1411
|
+
Processing by SessionsController#create as HTML
|
1412
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1413
|
+
Completed 500 Internal Server Error in 13ms
|
1414
|
+
|
1415
|
+
NoMethodError (undefined method `htpasswd_logged_in=' for #<Class:0x00000001f40870>):
|
1416
|
+
app/models/user.rb:3:in `<class:User>'
|
1417
|
+
app/models/user.rb:1:in `<top (required)>'
|
1418
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
1419
|
+
|
1420
|
+
|
1421
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1422
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
1423
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
1424
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
|
1425
|
+
|
1426
|
+
|
1427
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:28:48 +0200
|
1428
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1429
|
+
Processing by SessionsController#create as HTML
|
1430
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1431
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
1432
|
+
Rendered sessions/create.html.erb within layouts/application (0.7ms)
|
1433
|
+
Completed 200 OK in 24ms (Views: 7.6ms | ActiveRecord: 0.3ms)
|
1434
|
+
|
1435
|
+
|
1436
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:28:48 +0200
|
1437
|
+
|
1438
|
+
|
1439
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:28:48 +0200
|
1440
|
+
|
1441
|
+
|
1442
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:29:03 +0200
|
1443
|
+
Processing by SessionsController#new as HTML
|
1444
|
+
Rendered sessions/new.html.erb within layouts/application (2.4ms)
|
1445
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
1446
|
+
|
1447
|
+
|
1448
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:29:06 +0200
|
1449
|
+
Processing by SessionsController#create as HTML
|
1450
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kaipeter", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1451
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."username" = 'kaipeter' LIMIT 1[0m
|
1452
|
+
Completed 500 Internal Server Error in 1ms
|
1453
|
+
|
1454
|
+
NoMethodError (undefined method `authenticate_by_htpasswd' for nil:NilClass):
|
1455
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
1456
|
+
|
1457
|
+
|
1458
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
|
1459
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
1460
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
1461
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.6ms)
|
1462
|
+
|
1463
|
+
|
1464
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:29:39 +0200
|
1465
|
+
Processing by SessionsController#create as HTML
|
1466
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kaipeter", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1467
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kaipeter' LIMIT 1
|
1468
|
+
Completed 500 Internal Server Error in 2ms
|
1469
|
+
|
1470
|
+
NoMethodError (undefined method `authenticate_by_htpasswd' for nil:NilClass):
|
1471
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
1472
|
+
|
1473
|
+
|
1474
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
|
1475
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
1476
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
1477
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.8ms)
|
1478
|
+
|
1479
|
+
|
1480
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:29:55 +0200
|
1481
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1482
|
+
Processing by SessionsController#create as HTML
|
1483
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kaipeter", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1484
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kaipeter' LIMIT 1
|
1485
|
+
Completed 500 Internal Server Error in 14ms
|
1486
|
+
|
1487
|
+
NoMethodError (undefined method `authenticate_by_htpasswd' for nil:NilClass):
|
1488
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
1489
|
+
|
1490
|
+
|
1491
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
|
1492
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
1493
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
1494
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
|
1495
|
+
|
1496
|
+
|
1497
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:30:06 +0200
|
1498
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1499
|
+
Processing by SessionsController#create as HTML
|
1500
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kaipeter", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1501
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kaipeter' LIMIT 1
|
1502
|
+
Redirected to http://localhost:3000/login
|
1503
|
+
Completed 302 Found in 14ms (ActiveRecord: 0.3ms)
|
1504
|
+
|
1505
|
+
|
1506
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:30:06 +0200
|
1507
|
+
Processing by SessionsController#new as HTML
|
1508
|
+
Rendered sessions/new.html.erb within layouts/application (1.5ms)
|
1509
|
+
Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
|
1510
|
+
|
1511
|
+
|
1512
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:30:06 +0200
|
1513
|
+
|
1514
|
+
|
1515
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:30:06 +0200
|
1516
|
+
|
1517
|
+
|
1518
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:30:08 +0200
|
1519
|
+
Processing by SessionsController#create as HTML
|
1520
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"test", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1521
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."username" = 'test' LIMIT 1[0m
|
1522
|
+
Redirected to http://localhost:3000/login
|
1523
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1524
|
+
|
1525
|
+
|
1526
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:30:08 +0200
|
1527
|
+
Processing by SessionsController#new as HTML
|
1528
|
+
Rendered sessions/new.html.erb within layouts/application (0.8ms)
|
1529
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
1530
|
+
|
1531
|
+
|
1532
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:30:08 +0200
|
1533
|
+
|
1534
|
+
|
1535
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:30:08 +0200
|
1536
|
+
|
1537
|
+
|
1538
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:30:11 +0200
|
1539
|
+
Processing by SessionsController#create as HTML
|
1540
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1541
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
1542
|
+
Rendered sessions/create.html.erb within layouts/application (0.5ms)
|
1543
|
+
Completed 200 OK in 8ms (Views: 2.8ms | ActiveRecord: 0.2ms)
|
1544
|
+
|
1545
|
+
|
1546
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:30:11 +0200
|
1547
|
+
|
1548
|
+
|
1549
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:30:11 +0200
|
1550
|
+
|
1551
|
+
|
1552
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:30:34 +0200
|
1553
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1554
|
+
Processing by SessionsController#new as HTML
|
1555
|
+
Rendered sessions/new.html.erb within layouts/application (12.9ms)
|
1556
|
+
Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.0ms)
|
1557
|
+
|
1558
|
+
|
1559
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:30:36 +0200
|
1560
|
+
Processing by SessionsController#new as HTML
|
1561
|
+
Rendered sessions/new.html.erb within layouts/application (0.6ms)
|
1562
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
1563
|
+
|
1564
|
+
|
1565
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:30:36 +0200
|
1566
|
+
|
1567
|
+
|
1568
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:30:36 +0200
|
1569
|
+
|
1570
|
+
|
1571
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:30:39 +0200
|
1572
|
+
Processing by SessionsController#create as HTML
|
1573
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"test", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1574
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'test' LIMIT 1
|
1575
|
+
Redirected to http://localhost:3000/login
|
1576
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.5ms)
|
1577
|
+
|
1578
|
+
|
1579
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:30:39 +0200
|
1580
|
+
Processing by SessionsController#new as HTML
|
1581
|
+
Rendered sessions/new.html.erb within layouts/application (0.7ms)
|
1582
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
1583
|
+
|
1584
|
+
|
1585
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:30:39 +0200
|
1586
|
+
|
1587
|
+
|
1588
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:30:39 +0200
|
1589
|
+
|
1590
|
+
|
1591
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:30:42 +0200
|
1592
|
+
Processing by SessionsController#create as HTML
|
1593
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1594
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1[0m
|
1595
|
+
Redirected to http://localhost:3000/login
|
1596
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.2ms)
|
1597
|
+
|
1598
|
+
|
1599
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:30:42 +0200
|
1600
|
+
Processing by SessionsController#new as HTML
|
1601
|
+
Rendered sessions/new.html.erb within layouts/application (0.7ms)
|
1602
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
1603
|
+
|
1604
|
+
|
1605
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:30:42 +0200
|
1606
|
+
|
1607
|
+
|
1608
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:30:42 +0200
|
1609
|
+
|
1610
|
+
|
1611
|
+
Started GET "/" for 127.0.0.1 at 2014-04-17 14:31:59 +0200
|
1612
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1613
|
+
Processing by SessionsController#new as HTML
|
1614
|
+
Rendered sessions/new.html.erb within layouts/application (12.7ms)
|
1615
|
+
Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.0ms)
|
1616
|
+
|
1617
|
+
|
1618
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:31:59 +0200
|
1619
|
+
|
1620
|
+
|
1621
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:31:59 +0200
|
1622
|
+
|
1623
|
+
|
1624
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:32:02 +0200
|
1625
|
+
Processing by SessionsController#create as HTML
|
1626
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1627
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
1628
|
+
Rendered sessions/create.html.erb within layouts/application (0.3ms)
|
1629
|
+
Completed 200 OK in 11ms (Views: 2.0ms | ActiveRecord: 0.4ms)
|
1630
|
+
|
1631
|
+
|
1632
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:32:02 +0200
|
1633
|
+
|
1634
|
+
|
1635
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:32:02 +0200
|
1636
|
+
|
1637
|
+
|
1638
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:34:12 +0200
|
1639
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1640
|
+
Processing by SessionsController#create as HTML
|
1641
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1642
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
1643
|
+
Completed 500 Internal Server Error in 17ms
|
1644
|
+
|
1645
|
+
ArgumentError (wrong number of arguments (0 for 1)):
|
1646
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
1647
|
+
|
1648
|
+
|
1649
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1650
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
1651
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
1652
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
|
1653
|
+
|
1654
|
+
|
1655
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:34:27 +0200
|
1656
|
+
|
1657
|
+
SyntaxError (/var/www/rails/htauthentication/test/dummy/app/controllers/sessions_controller.rb:7: syntax error, unexpected tIDENTIFIER, expecting keyword_end
|
1658
|
+
...authenticate_by_htpasswd params[:password]
|
1659
|
+
... ^):
|
1660
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:424:in `load'
|
1661
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:424:in `block in load_file'
|
1662
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:616:in `new_constants_in'
|
1663
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:423:in `load_file'
|
1664
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:324:in `require_or_load'
|
1665
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:463:in `load_missing_constant'
|
1666
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:184:in `const_missing'
|
1667
|
+
activesupport (4.0.4) lib/active_support/inflector/methods.rb:226:in `const_get'
|
1668
|
+
activesupport (4.0.4) lib/active_support/inflector/methods.rb:226:in `block in constantize'
|
1669
|
+
activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `each'
|
1670
|
+
activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `inject'
|
1671
|
+
activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `constantize'
|
1672
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:535:in `get'
|
1673
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:566:in `constantize'
|
1674
|
+
actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
|
1675
|
+
actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:66:in `controller'
|
1676
|
+
actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:44:in `call'
|
1677
|
+
actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1678
|
+
actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
|
1679
|
+
actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
|
1680
|
+
actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
|
1681
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
1682
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
1683
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
1684
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1685
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
1686
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
1687
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
1688
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
1689
|
+
activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
|
1690
|
+
activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
1691
|
+
activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
|
1692
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1693
|
+
activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__1599527552702930932__call__callbacks'
|
1694
|
+
activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1695
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1696
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
1697
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1698
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1699
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1700
|
+
railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
|
1701
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
|
1702
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1703
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1704
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1705
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
|
1706
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1707
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1708
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1709
|
+
activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
1710
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1711
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
|
1712
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
1713
|
+
railties (4.0.4) lib/rails/engine.rb:511:in `call'
|
1714
|
+
railties (4.0.4) lib/rails/application.rb:97:in `call'
|
1715
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1716
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1717
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1718
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
1719
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
1720
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
1721
|
+
|
1722
|
+
|
1723
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1724
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
1725
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
1726
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
|
1727
|
+
|
1728
|
+
|
1729
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:34:37 +0200
|
1730
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1731
|
+
|
1732
|
+
SyntaxError (/var/www/rails/htauthentication/test/dummy/app/controllers/sessions_controller.rb:7: syntax error, unexpected tIDENTIFIER, expecting keyword_end
|
1733
|
+
...authenticate_by_htpasswd params[:password]
|
1734
|
+
... ^):
|
1735
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:424:in `load'
|
1736
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:424:in `block in load_file'
|
1737
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:616:in `new_constants_in'
|
1738
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:423:in `load_file'
|
1739
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:324:in `require_or_load'
|
1740
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:463:in `load_missing_constant'
|
1741
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:184:in `const_missing'
|
1742
|
+
activesupport (4.0.4) lib/active_support/inflector/methods.rb:226:in `const_get'
|
1743
|
+
activesupport (4.0.4) lib/active_support/inflector/methods.rb:226:in `block in constantize'
|
1744
|
+
activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `each'
|
1745
|
+
activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `inject'
|
1746
|
+
activesupport (4.0.4) lib/active_support/inflector/methods.rb:224:in `constantize'
|
1747
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:535:in `get'
|
1748
|
+
activesupport (4.0.4) lib/active_support/dependencies.rb:566:in `constantize'
|
1749
|
+
actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
|
1750
|
+
actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:66:in `controller'
|
1751
|
+
actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:44:in `call'
|
1752
|
+
actionpack (4.0.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
1753
|
+
actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `each'
|
1754
|
+
actionpack (4.0.4) lib/action_dispatch/journey/router.rb:59:in `call'
|
1755
|
+
actionpack (4.0.4) lib/action_dispatch/routing/route_set.rb:674:in `call'
|
1756
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
1757
|
+
rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
|
1758
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
1759
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1760
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/flash.rb:241:in `call'
|
1761
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
1762
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
1763
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/cookies.rb:486:in `call'
|
1764
|
+
activerecord (4.0.4) lib/active_record/query_cache.rb:36:in `call'
|
1765
|
+
activerecord (4.0.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
|
1766
|
+
activerecord (4.0.4) lib/active_record/migration.rb:373:in `call'
|
1767
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1768
|
+
activesupport (4.0.4) lib/active_support/callbacks.rb:373:in `_run__2702257311363655325__call__callbacks'
|
1769
|
+
activesupport (4.0.4) lib/active_support/callbacks.rb:80:in `run_callbacks'
|
1770
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1771
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/reloader.rb:64:in `call'
|
1772
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
1773
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1774
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1775
|
+
railties (4.0.4) lib/rails/rack/logger.rb:38:in `call_app'
|
1776
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `block in call'
|
1777
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1778
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1779
|
+
activesupport (4.0.4) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1780
|
+
railties (4.0.4) lib/rails/rack/logger.rb:20:in `call'
|
1781
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1782
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
1783
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
1784
|
+
activesupport (4.0.4) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
1785
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1786
|
+
actionpack (4.0.4) lib/action_dispatch/middleware/static.rb:64:in `call'
|
1787
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
1788
|
+
railties (4.0.4) lib/rails/engine.rb:511:in `call'
|
1789
|
+
railties (4.0.4) lib/rails/application.rb:97:in `call'
|
1790
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
1791
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
1792
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
1793
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
1794
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
1795
|
+
/home/kai/.rvm/rubies/ruby-2.0.0-p451/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
1796
|
+
|
1797
|
+
|
1798
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.3ms)
|
1799
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
1800
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (12.3ms)
|
1801
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.3ms)
|
1802
|
+
|
1803
|
+
|
1804
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:35:28 +0200
|
1805
|
+
Processing by SessionsController#create as HTML
|
1806
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1807
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
1808
|
+
Completed 500 Internal Server Error in 6ms
|
1809
|
+
|
1810
|
+
NameError (uninitialized constant Htauthentication::HasHtpasswdLogin::LocalInstanceMethods::HTPASSWD_PATH):
|
1811
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
1812
|
+
|
1813
|
+
|
1814
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
1815
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
1816
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
1817
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
|
1818
|
+
|
1819
|
+
|
1820
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:36:24 +0200
|
1821
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1822
|
+
Processing by SessionsController#create as HTML
|
1823
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1824
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1
|
1825
|
+
Redirected to http://localhost:3000/login
|
1826
|
+
Completed 302 Found in 17ms (ActiveRecord: 0.3ms)
|
1827
|
+
|
1828
|
+
|
1829
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:36:24 +0200
|
1830
|
+
Processing by SessionsController#new as HTML
|
1831
|
+
Rendered sessions/new.html.erb within layouts/application (1.9ms)
|
1832
|
+
Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
|
1833
|
+
|
1834
|
+
|
1835
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:36:24 +0200
|
1836
|
+
|
1837
|
+
|
1838
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:36:24 +0200
|
1839
|
+
|
1840
|
+
|
1841
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:36:27 +0200
|
1842
|
+
Processing by SessionsController#create as HTML
|
1843
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"kai", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1844
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."username" = 'kai' LIMIT 1[0m
|
1845
|
+
Redirected to http://localhost:3000/login
|
1846
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
|
1847
|
+
|
1848
|
+
|
1849
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:36:27 +0200
|
1850
|
+
Processing by SessionsController#new as HTML
|
1851
|
+
Rendered sessions/new.html.erb within layouts/application (1.3ms)
|
1852
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
1853
|
+
|
1854
|
+
|
1855
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:36:27 +0200
|
1856
|
+
|
1857
|
+
|
1858
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:36:27 +0200
|
1859
|
+
|
1860
|
+
|
1861
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:36:30 +0200
|
1862
|
+
Processing by SessionsController#create as HTML
|
1863
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1864
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'berkemeyer' LIMIT 1
|
1865
|
+
Redirected to http://localhost:3000/login
|
1866
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
|
1867
|
+
|
1868
|
+
|
1869
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:36:30 +0200
|
1870
|
+
Processing by SessionsController#new as HTML
|
1871
|
+
Rendered sessions/new.html.erb within layouts/application (1.2ms)
|
1872
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
1873
|
+
|
1874
|
+
|
1875
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:36:30 +0200
|
1876
|
+
|
1877
|
+
|
1878
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:36:30 +0200
|
1879
|
+
|
1880
|
+
|
1881
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:36:34 +0200
|
1882
|
+
Processing by SessionsController#create as HTML
|
1883
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1884
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."username" = 'berkemeyer' LIMIT 1[0m
|
1885
|
+
Redirected to http://localhost:3000/login
|
1886
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
|
1887
|
+
|
1888
|
+
|
1889
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:36:34 +0200
|
1890
|
+
Processing by SessionsController#new as HTML
|
1891
|
+
Rendered sessions/new.html.erb within layouts/application (0.6ms)
|
1892
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
1893
|
+
|
1894
|
+
|
1895
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:36:34 +0200
|
1896
|
+
|
1897
|
+
|
1898
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:36:34 +0200
|
1899
|
+
|
1900
|
+
|
1901
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:36:38 +0200
|
1902
|
+
Processing by SessionsController#create as HTML
|
1903
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1904
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."username" = 'berkemeyer' LIMIT 1
|
1905
|
+
Redirected to http://localhost:3000/login
|
1906
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1907
|
+
|
1908
|
+
|
1909
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:36:38 +0200
|
1910
|
+
Processing by SessionsController#new as HTML
|
1911
|
+
Rendered sessions/new.html.erb within layouts/application (0.7ms)
|
1912
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
1913
|
+
|
1914
|
+
|
1915
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:36:38 +0200
|
1916
|
+
|
1917
|
+
|
1918
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:36:38 +0200
|
1919
|
+
|
1920
|
+
|
1921
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:36:43 +0200
|
1922
|
+
Processing by SessionsController#create as HTML
|
1923
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1924
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."username" = 'berkemeyer' LIMIT 1[0m
|
1925
|
+
Redirected to http://localhost:3000/login
|
1926
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
1927
|
+
|
1928
|
+
|
1929
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:36:43 +0200
|
1930
|
+
Processing by SessionsController#new as HTML
|
1931
|
+
Rendered sessions/new.html.erb within layouts/application (0.6ms)
|
1932
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
1933
|
+
|
1934
|
+
|
1935
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:36:43 +0200
|
1936
|
+
|
1937
|
+
|
1938
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:36:43 +0200
|
1939
|
+
|
1940
|
+
|
1941
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:37:20 +0200
|
1942
|
+
Processing by SessionsController#new as HTML
|
1943
|
+
Rendered sessions/new.html.erb within layouts/application (0.7ms)
|
1944
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
1945
|
+
|
1946
|
+
|
1947
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:37:20 +0200
|
1948
|
+
|
1949
|
+
|
1950
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:37:20 +0200
|
1951
|
+
|
1952
|
+
|
1953
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:37:20 +0200
|
1954
|
+
Processing by SessionsController#new as HTML
|
1955
|
+
Rendered sessions/new.html.erb within layouts/application (1.4ms)
|
1956
|
+
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
1957
|
+
|
1958
|
+
|
1959
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:37:20 +0200
|
1960
|
+
|
1961
|
+
|
1962
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:37:20 +0200
|
1963
|
+
|
1964
|
+
|
1965
|
+
Started GET "/" for 127.0.0.1 at 2014-04-17 14:37:56 +0200
|
1966
|
+
Processing by SessionsController#new as HTML
|
1967
|
+
Rendered sessions/new.html.erb within layouts/application (0.7ms)
|
1968
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
1969
|
+
|
1970
|
+
|
1971
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:37:56 +0200
|
1972
|
+
|
1973
|
+
|
1974
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:37:56 +0200
|
1975
|
+
|
1976
|
+
|
1977
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:38:00 +0200
|
1978
|
+
Processing by SessionsController#create as HTML
|
1979
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1980
|
+
Redirected to http://localhost:3000/login
|
1981
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.3ms)
|
1982
|
+
|
1983
|
+
|
1984
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:38:00 +0200
|
1985
|
+
Processing by SessionsController#new as HTML
|
1986
|
+
Rendered sessions/new.html.erb within layouts/application (0.6ms)
|
1987
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
1988
|
+
|
1989
|
+
|
1990
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:38:00 +0200
|
1991
|
+
|
1992
|
+
|
1993
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:38:00 +0200
|
1994
|
+
|
1995
|
+
|
1996
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:38:04 +0200
|
1997
|
+
Processing by SessionsController#create as HTML
|
1998
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
1999
|
+
Rendered sessions/create.html.erb within layouts/application (0.3ms)
|
2000
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
2001
|
+
|
2002
|
+
|
2003
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:38:04 +0200
|
2004
|
+
|
2005
|
+
|
2006
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:38:04 +0200
|
2007
|
+
|
2008
|
+
|
2009
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:38:20 +0200
|
2010
|
+
Processing by SessionsController#create as HTML
|
2011
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2012
|
+
Completed 500 Internal Server Error in 5ms
|
2013
|
+
|
2014
|
+
NoMethodError (undefined method `authenticate_by_htpasswd' for #<User:0x007f8d185e9668>):
|
2015
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
2016
|
+
|
2017
|
+
|
2018
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
2019
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
2020
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
2021
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
2022
|
+
|
2023
|
+
|
2024
|
+
Started GET "/" for 127.0.0.1 at 2014-04-17 14:38:22 +0200
|
2025
|
+
Processing by SessionsController#new as HTML
|
2026
|
+
Rendered sessions/new.html.erb within layouts/application (0.7ms)
|
2027
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
2028
|
+
|
2029
|
+
|
2030
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:38:22 +0200
|
2031
|
+
|
2032
|
+
|
2033
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:38:22 +0200
|
2034
|
+
|
2035
|
+
|
2036
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:38:27 +0200
|
2037
|
+
Processing by SessionsController#create as HTML
|
2038
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2039
|
+
Completed 500 Internal Server Error in 1ms
|
2040
|
+
|
2041
|
+
NoMethodError (undefined method `authenticate_by_htpasswd' for #<User:0x007f8d18703c10>):
|
2042
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
2043
|
+
|
2044
|
+
|
2045
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
2046
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
2047
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
2048
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
|
2049
|
+
|
2050
|
+
|
2051
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:38:41 +0200
|
2052
|
+
Processing by SessionsController#create as HTML
|
2053
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2054
|
+
Rendered sessions/create.html.erb within layouts/application (0.1ms)
|
2055
|
+
Completed 200 OK in 9ms (Views: 1.6ms | ActiveRecord: 0.5ms)
|
2056
|
+
|
2057
|
+
|
2058
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:38:41 +0200
|
2059
|
+
|
2060
|
+
|
2061
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:38:41 +0200
|
2062
|
+
|
2063
|
+
|
2064
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:38:43 +0200
|
2065
|
+
Processing by SessionsController#new as HTML
|
2066
|
+
Rendered sessions/new.html.erb within layouts/application (0.7ms)
|
2067
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
2068
|
+
|
2069
|
+
|
2070
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:38:43 +0200
|
2071
|
+
|
2072
|
+
|
2073
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:38:43 +0200
|
2074
|
+
|
2075
|
+
|
2076
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:38:48 +0200
|
2077
|
+
Processing by SessionsController#create as HTML
|
2078
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2079
|
+
Rendered sessions/create.html.erb within layouts/application (0.1ms)
|
2080
|
+
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
2081
|
+
|
2082
|
+
|
2083
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:38:48 +0200
|
2084
|
+
|
2085
|
+
|
2086
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:38:48 +0200
|
2087
|
+
|
2088
|
+
|
2089
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:40:42 +0200
|
2090
|
+
Processing by SessionsController#new as HTML
|
2091
|
+
Rendered sessions/new.html.erb within layouts/application (0.6ms)
|
2092
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
2093
|
+
|
2094
|
+
|
2095
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:40:42 +0200
|
2096
|
+
|
2097
|
+
|
2098
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:40:42 +0200
|
2099
|
+
|
2100
|
+
|
2101
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:40:47 +0200
|
2102
|
+
Processing by SessionsController#create as HTML
|
2103
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2104
|
+
Rendered sessions/create.html.erb within layouts/application (0.1ms)
|
2105
|
+
Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
2106
|
+
|
2107
|
+
|
2108
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:40:47 +0200
|
2109
|
+
|
2110
|
+
|
2111
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:40:47 +0200
|
2112
|
+
|
2113
|
+
|
2114
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-17 14:40:53 +0200
|
2115
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2116
|
+
Processing by SessionsController#new as HTML
|
2117
|
+
Rendered sessions/new.html.erb within layouts/application (12.9ms)
|
2118
|
+
Completed 200 OK in 20ms (Views: 20.0ms | ActiveRecord: 0.0ms)
|
2119
|
+
|
2120
|
+
|
2121
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:40:57 +0200
|
2122
|
+
Processing by SessionsController#create as HTML
|
2123
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2124
|
+
Rendered sessions/create.html.erb within layouts/application (0.4ms)
|
2125
|
+
Completed 200 OK in 7ms (Views: 1.8ms | ActiveRecord: 0.2ms)
|
2126
|
+
|
2127
|
+
|
2128
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:40:57 +0200
|
2129
|
+
|
2130
|
+
|
2131
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:40:57 +0200
|
2132
|
+
|
2133
|
+
|
2134
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-17 14:47:36 +0200
|
2135
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2136
|
+
Processing by SessionsController#create as HTML
|
2137
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"pafyPJmRQr6OPOD2iYeFUo5SI0A9asRfP0SQQaLjS3A=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2138
|
+
Rendered sessions/create.html.erb within layouts/application (0.6ms)
|
2139
|
+
Completed 200 OK in 23ms (Views: 7.4ms | ActiveRecord: 0.2ms)
|
2140
|
+
|
2141
|
+
|
2142
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-17 14:47:37 +0200
|
2143
|
+
|
2144
|
+
|
2145
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-17 14:47:37 +0200
|
2146
|
+
|
2147
|
+
|
2148
|
+
Started GET "/" for 127.0.0.1 at 2014-04-22 08:13:21 +0200
|
2149
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2150
|
+
Processing by SessionsController#new as HTML
|
2151
|
+
Rendered sessions/new.html.erb within layouts/application (12.7ms)
|
2152
|
+
Completed 200 OK in 22ms (Views: 21.9ms | ActiveRecord: 0.0ms)
|
2153
|
+
|
2154
|
+
|
2155
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:13:21 +0200
|
2156
|
+
|
2157
|
+
|
2158
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:13:21 +0200
|
2159
|
+
|
2160
|
+
|
2161
|
+
Started GET "/" for 127.0.0.1 at 2014-04-22 08:15:10 +0200
|
2162
|
+
Processing by SessionsController#new as HTML
|
2163
|
+
Rendered sessions/new.html.erb within layouts/application (1.3ms)
|
2164
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
2165
|
+
|
2166
|
+
|
2167
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:15:10 +0200
|
2168
|
+
|
2169
|
+
|
2170
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:15:10 +0200
|
2171
|
+
|
2172
|
+
|
2173
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:15:17 +0200
|
2174
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2175
|
+
Processing by SessionsController#create as HTML
|
2176
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"test", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2177
|
+
Completed 500 Internal Server Error in 16ms
|
2178
|
+
|
2179
|
+
ArgumentError (wrong number of arguments (0 for 1)):
|
2180
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
2181
|
+
|
2182
|
+
|
2183
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
2184
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
2185
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
2186
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.3ms)
|
2187
|
+
|
2188
|
+
|
2189
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:16:15 +0200
|
2190
|
+
Processing by SessionsController#create as HTML
|
2191
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"test", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2192
|
+
Completed 500 Internal Server Error in 8ms
|
2193
|
+
|
2194
|
+
ArgumentError (wrong number of arguments (0 for 1)):
|
2195
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
2196
|
+
|
2197
|
+
|
2198
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
|
2199
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
2200
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
2201
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.0ms)
|
2202
|
+
|
2203
|
+
|
2204
|
+
Started GET "/" for 127.0.0.1 at 2014-04-22 08:16:42 +0200
|
2205
|
+
Processing by SessionsController#new as HTML
|
2206
|
+
Rendered sessions/new.html.erb within layouts/application (2.4ms)
|
2207
|
+
Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
|
2208
|
+
|
2209
|
+
|
2210
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:16:42 +0200
|
2211
|
+
|
2212
|
+
|
2213
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:16:42 +0200
|
2214
|
+
|
2215
|
+
|
2216
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:16:44 +0200
|
2217
|
+
Processing by SessionsController#create as HTML
|
2218
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"test", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2219
|
+
Completed 500 Internal Server Error in 23ms
|
2220
|
+
|
2221
|
+
ArgumentError (wrong number of arguments (0 for 1)):
|
2222
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
2223
|
+
|
2224
|
+
|
2225
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
2226
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
2227
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
2228
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.7ms)
|
2229
|
+
|
2230
|
+
|
2231
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:17:16 +0200
|
2232
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2233
|
+
Processing by SessionsController#create as HTML
|
2234
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"test", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2235
|
+
Completed 500 Internal Server Error in 16ms
|
2236
|
+
|
2237
|
+
ArgumentError (wrong number of arguments (0 for 1)):
|
2238
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
2239
|
+
|
2240
|
+
|
2241
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
2242
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
2243
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
2244
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
|
2245
|
+
|
2246
|
+
|
2247
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:17:24 +0200
|
2248
|
+
Processing by SessionsController#create as HTML
|
2249
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"test", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2250
|
+
Completed 500 Internal Server Error in 9ms
|
2251
|
+
|
2252
|
+
ArgumentError (wrong number of arguments (0 for 1)):
|
2253
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
2254
|
+
|
2255
|
+
|
2256
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
2257
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
2258
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
2259
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
|
2260
|
+
|
2261
|
+
|
2262
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:17:29 +0200
|
2263
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2264
|
+
Processing by SessionsController#create as HTML
|
2265
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"test", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2266
|
+
Redirected to http://localhost:3000/login
|
2267
|
+
Completed 302 Found in 16ms (ActiveRecord: 0.2ms)
|
2268
|
+
|
2269
|
+
|
2270
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-22 08:17:29 +0200
|
2271
|
+
Processing by SessionsController#new as HTML
|
2272
|
+
Rendered sessions/new.html.erb within layouts/application (1.4ms)
|
2273
|
+
Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
|
2274
|
+
|
2275
|
+
|
2276
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:17:29 +0200
|
2277
|
+
|
2278
|
+
|
2279
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:17:29 +0200
|
2280
|
+
|
2281
|
+
|
2282
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:17:32 +0200
|
2283
|
+
Processing by SessionsController#create as HTML
|
2284
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"test", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2285
|
+
Redirected to http://localhost:3000/login
|
2286
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
2287
|
+
|
2288
|
+
|
2289
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-22 08:17:32 +0200
|
2290
|
+
Processing by SessionsController#new as HTML
|
2291
|
+
Rendered sessions/new.html.erb within layouts/application (1.2ms)
|
2292
|
+
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
2293
|
+
|
2294
|
+
|
2295
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:17:33 +0200
|
2296
|
+
|
2297
|
+
|
2298
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:17:33 +0200
|
2299
|
+
|
2300
|
+
|
2301
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:18:17 +0200
|
2302
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2303
|
+
Processing by SessionsController#create as HTML
|
2304
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"test", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2305
|
+
Redirected to http://localhost:3000/login
|
2306
|
+
Completed 302 Found in 15ms (ActiveRecord: 0.2ms)
|
2307
|
+
|
2308
|
+
|
2309
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-22 08:18:18 +0200
|
2310
|
+
Processing by SessionsController#new as HTML
|
2311
|
+
Rendered sessions/new.html.erb within layouts/application (2.5ms)
|
2312
|
+
Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)
|
2313
|
+
|
2314
|
+
|
2315
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:18:18 +0200
|
2316
|
+
|
2317
|
+
|
2318
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:18:18 +0200
|
2319
|
+
|
2320
|
+
|
2321
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:18:22 +0200
|
2322
|
+
Processing by SessionsController#create as HTML
|
2323
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2324
|
+
Rendered sessions/create.html.erb within layouts/application (0.7ms)
|
2325
|
+
Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
2326
|
+
|
2327
|
+
|
2328
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:18:22 +0200
|
2329
|
+
|
2330
|
+
|
2331
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:18:22 +0200
|
2332
|
+
|
2333
|
+
|
2334
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:18:39 +0200
|
2335
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2336
|
+
Processing by SessionsController#create as HTML
|
2337
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2338
|
+
Rendered sessions/create.html.erb within layouts/application (0.6ms)
|
2339
|
+
Completed 200 OK in 24ms (Views: 7.8ms | ActiveRecord: 0.2ms)
|
2340
|
+
|
2341
|
+
|
2342
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:18:40 +0200
|
2343
|
+
|
2344
|
+
|
2345
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:18:40 +0200
|
2346
|
+
|
2347
|
+
|
2348
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:18:42 +0200
|
2349
|
+
Processing by SessionsController#create as HTML
|
2350
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2351
|
+
Redirected to http://localhost:3000/login
|
2352
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
2353
|
+
|
2354
|
+
|
2355
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-22 08:18:42 +0200
|
2356
|
+
Processing by SessionsController#new as HTML
|
2357
|
+
Rendered sessions/new.html.erb within layouts/application (1.1ms)
|
2358
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
2359
|
+
|
2360
|
+
|
2361
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:18:42 +0200
|
2362
|
+
|
2363
|
+
|
2364
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:18:42 +0200
|
2365
|
+
|
2366
|
+
|
2367
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:18:43 +0200
|
2368
|
+
Processing by SessionsController#create as HTML
|
2369
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2370
|
+
Redirected to http://localhost:3000/login
|
2371
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
2372
|
+
|
2373
|
+
|
2374
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-22 08:18:43 +0200
|
2375
|
+
Processing by SessionsController#new as HTML
|
2376
|
+
Rendered sessions/new.html.erb within layouts/application (0.7ms)
|
2377
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
2378
|
+
|
2379
|
+
|
2380
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:18:43 +0200
|
2381
|
+
|
2382
|
+
|
2383
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:18:43 +0200
|
2384
|
+
|
2385
|
+
|
2386
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:18:46 +0200
|
2387
|
+
Processing by SessionsController#create as HTML
|
2388
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2389
|
+
Redirected to http://localhost:3000/login
|
2390
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
2391
|
+
|
2392
|
+
|
2393
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-22 08:18:46 +0200
|
2394
|
+
Processing by SessionsController#new as HTML
|
2395
|
+
Rendered sessions/new.html.erb within layouts/application (1.0ms)
|
2396
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
2397
|
+
|
2398
|
+
|
2399
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:18:46 +0200
|
2400
|
+
|
2401
|
+
|
2402
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:18:46 +0200
|
2403
|
+
|
2404
|
+
|
2405
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-22 08:18:55 +0200
|
2406
|
+
Processing by SessionsController#new as HTML
|
2407
|
+
Rendered sessions/new.html.erb within layouts/application (0.8ms)
|
2408
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
2409
|
+
|
2410
|
+
|
2411
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:18:55 +0200
|
2412
|
+
|
2413
|
+
|
2414
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:18:55 +0200
|
2415
|
+
|
2416
|
+
|
2417
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-22 08:18:55 +0200
|
2418
|
+
Processing by SessionsController#new as HTML
|
2419
|
+
Rendered sessions/new.html.erb within layouts/application (1.4ms)
|
2420
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
2421
|
+
|
2422
|
+
|
2423
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:18:56 +0200
|
2424
|
+
|
2425
|
+
|
2426
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:18:56 +0200
|
2427
|
+
|
2428
|
+
|
2429
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:18:58 +0200
|
2430
|
+
Processing by SessionsController#create as HTML
|
2431
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"test", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2432
|
+
Redirected to http://localhost:3000/login
|
2433
|
+
Completed 302 Found in 24ms (ActiveRecord: 0.7ms)
|
2434
|
+
|
2435
|
+
|
2436
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-22 08:18:58 +0200
|
2437
|
+
Processing by SessionsController#new as HTML
|
2438
|
+
Rendered sessions/new.html.erb within layouts/application (1.1ms)
|
2439
|
+
Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.0ms)
|
2440
|
+
|
2441
|
+
|
2442
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:18:58 +0200
|
2443
|
+
|
2444
|
+
|
2445
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:18:58 +0200
|
2446
|
+
|
2447
|
+
|
2448
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:19:02 +0200
|
2449
|
+
Processing by SessionsController#create as HTML
|
2450
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2451
|
+
Rendered sessions/create.html.erb within layouts/application (0.1ms)
|
2452
|
+
Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
2453
|
+
|
2454
|
+
|
2455
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:19:02 +0200
|
2456
|
+
|
2457
|
+
|
2458
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:19:02 +0200
|
2459
|
+
|
2460
|
+
|
2461
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:19:13 +0200
|
2462
|
+
Processing by SessionsController#create as HTML
|
2463
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2464
|
+
Completed 500 Internal Server Error in 8ms
|
2465
|
+
|
2466
|
+
NoMethodError (undefined method `email' for #<User:0x00000002f410d0>):
|
2467
|
+
app/controllers/sessions_controller.rb:7:in `create'
|
2468
|
+
|
2469
|
+
|
2470
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
2471
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
2472
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
2473
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.0ms)
|
2474
|
+
|
2475
|
+
|
2476
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-22 08:19:36 +0200
|
2477
|
+
Processing by SessionsController#new as HTML
|
2478
|
+
Rendered sessions/new.html.erb within layouts/application (0.6ms)
|
2479
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
2480
|
+
|
2481
|
+
|
2482
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:19:36 +0200
|
2483
|
+
|
2484
|
+
|
2485
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:19:36 +0200
|
2486
|
+
|
2487
|
+
|
2488
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:19:40 +0200
|
2489
|
+
Processing by SessionsController#create as HTML
|
2490
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2491
|
+
Completed 500 Internal Server Error in 10ms
|
2492
|
+
|
2493
|
+
ActiveRecord::UnknownAttributeError (unknown attribute: email):
|
2494
|
+
app/controllers/sessions_controller.rb:6:in `create'
|
2495
|
+
|
2496
|
+
|
2497
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
|
2498
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
2499
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.6ms)
|
2500
|
+
Rendered /home/kai/.rvm/gems/ruby-2.0.0-p451@htauthentication/gems/actionpack-4.0.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
|
2501
|
+
|
2502
|
+
|
2503
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-22 08:20:15 +0200
|
2504
|
+
Processing by SessionsController#new as HTML
|
2505
|
+
Rendered sessions/new.html.erb within layouts/application (0.7ms)
|
2506
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
2507
|
+
|
2508
|
+
|
2509
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:20:15 +0200
|
2510
|
+
|
2511
|
+
|
2512
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:20:15 +0200
|
2513
|
+
|
2514
|
+
|
2515
|
+
Started GET "/" for 127.0.0.1 at 2014-04-22 08:20:17 +0200
|
2516
|
+
Processing by SessionsController#new as HTML
|
2517
|
+
Rendered sessions/new.html.erb within layouts/application (1.9ms)
|
2518
|
+
Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
|
2519
|
+
|
2520
|
+
|
2521
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:20:17 +0200
|
2522
|
+
|
2523
|
+
|
2524
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:20:17 +0200
|
2525
|
+
|
2526
|
+
|
2527
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:20:22 +0200
|
2528
|
+
Processing by SessionsController#create as HTML
|
2529
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2530
|
+
Rendered sessions/create.html.erb within layouts/application (0.1ms)
|
2531
|
+
Completed 200 OK in 35ms (Views: 1.6ms | ActiveRecord: 0.7ms)
|
2532
|
+
|
2533
|
+
|
2534
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:20:22 +0200
|
2535
|
+
|
2536
|
+
|
2537
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:20:22 +0200
|
2538
|
+
|
2539
|
+
|
2540
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:20:25 +0200
|
2541
|
+
Processing by SessionsController#create as HTML
|
2542
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2543
|
+
Redirected to http://localhost:3000/login
|
2544
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
2545
|
+
|
2546
|
+
|
2547
|
+
Started GET "/login" for 127.0.0.1 at 2014-04-22 08:20:25 +0200
|
2548
|
+
Processing by SessionsController#new as HTML
|
2549
|
+
Rendered sessions/new.html.erb within layouts/application (1.2ms)
|
2550
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
2551
|
+
|
2552
|
+
|
2553
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:20:25 +0200
|
2554
|
+
|
2555
|
+
|
2556
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:20:25 +0200
|
2557
|
+
|
2558
|
+
|
2559
|
+
Started POST "/login" for 127.0.0.1 at 2014-04-22 08:20:31 +0200
|
2560
|
+
Processing by SessionsController#create as HTML
|
2561
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"iMFuOyHQqQVKufU0xtl5xQG+HS9gq0pwEwlKPSKkSxw=", "username"=>"berkemeyer", "password"=>"[FILTERED]", "commit"=>"Login"}
|
2562
|
+
Rendered sessions/create.html.erb within layouts/application (0.1ms)
|
2563
|
+
Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
2564
|
+
|
2565
|
+
|
2566
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-22 08:20:31 +0200
|
2567
|
+
|
2568
|
+
|
2569
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-22 08:20:31 +0200
|