devise-verifiable 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +14 -0
  4. data/Rakefile +37 -0
  5. data/app/controllers/devise/verification_controller.rb +37 -0
  6. data/app/views/devise/verification/new.erb +17 -0
  7. data/config/locales/en.yml +4 -0
  8. data/lib/devise-verifiable.rb +20 -0
  9. data/lib/devise/controller/helpers.rb +22 -0
  10. data/lib/devise/models/verifiable.rb +59 -0
  11. data/lib/devise/verifiable/engine.rb +12 -0
  12. data/lib/devise/verifiable/routes.rb +18 -0
  13. data/lib/devise/verifiable/version.rb +5 -0
  14. data/lib/tasks/devise_verifiable_tasks.rake +4 -0
  15. data/test/devise_verifiable_test.rb +7 -0
  16. data/test/dummy/Rakefile +6 -0
  17. data/test/dummy/app/assets/javascripts/application.js +13 -0
  18. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  19. data/test/dummy/app/controllers/application_controller.rb +5 -0
  20. data/test/dummy/app/controllers/home_controller.rb +6 -0
  21. data/test/dummy/app/helpers/application_helper.rb +2 -0
  22. data/test/dummy/app/models/user.rb +6 -0
  23. data/test/dummy/app/views/home/index.html.erb +2 -0
  24. data/test/dummy/app/views/layouts/application.html.erb +17 -0
  25. data/test/dummy/bin/bundle +3 -0
  26. data/test/dummy/bin/rails +4 -0
  27. data/test/dummy/bin/rake +4 -0
  28. data/test/dummy/bin/setup +29 -0
  29. data/test/dummy/config.ru +4 -0
  30. data/test/dummy/config/application.rb +13 -0
  31. data/test/dummy/config/boot.rb +5 -0
  32. data/test/dummy/config/database.yml +25 -0
  33. data/test/dummy/config/environment.rb +5 -0
  34. data/test/dummy/config/environments/development.rb +41 -0
  35. data/test/dummy/config/environments/production.rb +79 -0
  36. data/test/dummy/config/environments/test.rb +42 -0
  37. data/test/dummy/config/initializers/assets.rb +11 -0
  38. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  39. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  40. data/test/dummy/config/initializers/devise.rb +267 -0
  41. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  42. data/test/dummy/config/initializers/inflections.rb +16 -0
  43. data/test/dummy/config/initializers/mime_types.rb +4 -0
  44. data/test/dummy/config/initializers/session_store.rb +3 -0
  45. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  46. data/test/dummy/config/locales/devise.en.yml +62 -0
  47. data/test/dummy/config/locales/en.yml +23 -0
  48. data/test/dummy/config/routes.rb +6 -0
  49. data/test/dummy/config/secrets.yml +22 -0
  50. data/test/dummy/db/development.sqlite3 +0 -0
  51. data/test/dummy/db/migrate/20160326191549_create_users.rb +13 -0
  52. data/test/dummy/db/migrate/20160326200137_add_devise_to_users.rb +49 -0
  53. data/test/dummy/db/schema.rb +39 -0
  54. data/test/dummy/db/test.sqlite3 +0 -0
  55. data/test/dummy/log/development.log +723 -0
  56. data/test/dummy/log/test.log +14134 -0
  57. data/test/dummy/public/404.html +67 -0
  58. data/test/dummy/public/422.html +67 -0
  59. data/test/dummy/public/500.html +66 -0
  60. data/test/dummy/public/favicon.ico +0 -0
  61. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0P64YMvGLyegqKbcLGgQEMgpMem2a76XNfbXIz9-Ey0.cache +1 -0
  62. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1dJiU-fQPONR0DpPbDVF8uV-KnmaNjmvmOwPj96fQjM.cache +0 -0
  63. data/test/dummy/tmp/cache/assets/sprockets/v3.0/534R9hua9PcmJx52xsGKCkjQOOpAz82i1NVXrew7wRI.cache +0 -0
  64. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +0 -0
  65. data/test/dummy/tmp/cache/assets/sprockets/v3.0/BJSW3SvCsdyDxfrPXPEX-SdPn6WpFejINpQC-ohzq1M.cache +1 -0
  66. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ch2bQFHkYziI9Erdkuj8uoPJyw0W2aA5prtYAqlccww.cache +1 -0
  67. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DSOLSc6A5RVSmvM415eEWAWG_AgOvZcLZOXQjsXyWQA.cache +2 -0
  68. data/test/dummy/tmp/cache/assets/sprockets/v3.0/FsGm4YIKEUTAAoLtBvqu9W2QJph2IK0QwuDkhZTX9Po.cache +1 -0
  69. data/test/dummy/tmp/cache/assets/sprockets/v3.0/IvDM1j8-H1H6kEjVCsyIW8N2zla-aIp9q_OE9PVZtVw.cache +1 -0
  70. data/test/dummy/tmp/cache/assets/sprockets/v3.0/J7VgE3aDZL9AndrYm8x10MZyJhmtGgOqKVF7sDlAn6g.cache +0 -0
  71. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JMWwR7l28LmBEVBcM5dlvxSMN8WXl5AYuCL_61oGl0o.cache +0 -0
  72. data/test/dummy/tmp/cache/assets/sprockets/v3.0/K9ZheMi0hi4DNLzmDMRnv9A_lOVz33kNImc16Now42o.cache +1 -0
  73. data/test/dummy/tmp/cache/assets/sprockets/v3.0/LHgjtAV8kdldaJ_dX0RCznzjmWYRuLdhU29fZCJ0VmU.cache +1 -0
  74. data/test/dummy/tmp/cache/assets/sprockets/v3.0/NnUCa7jNYx9HCmEB7E7WPWT00DwaM4IYICy1Ju1jjcs.cache +1 -0
  75. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +0 -0
  76. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OlBX9JIv9SAOmK2t35x1SYDx1sxCXF0yvqpna3WMyH0.cache +1 -0
  77. data/test/dummy/tmp/cache/assets/sprockets/v3.0/YrZ0OIHu42cExs1kqngMA6ShVDKhfGmhyW-E9haNo5Y.cache +1 -0
  78. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dGmwK2w4ea6Db33cXkyKS6ufPhxdaAcKsHWKqy4q7u8.cache +0 -0
  79. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fLS-tnaEaPlVn0Fq4Ug11zN5DgVroLYMXYN2OdjFjsk.cache +0 -0
  80. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gZp3uXMHuYQC4hzCr7bQfetKNdJAtbQmg3so2KpW1Dw.cache +2 -0
  81. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gpiWtnqpufka8lRtMznM6Ko0aWJrcH_j8cfZwdYmzNI.cache +1 -0
  82. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +0 -0
  83. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jd9LtCHlkjxlA-wzs0l6_1jn61CDnMmqYnjRMYnEHlE.cache +0 -0
  84. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kzdSvu57G4i6eTuarsZCAfbhbICnkRa0Xhi0b9ua6qk.cache +1 -0
  85. data/test/dummy/tmp/cache/assets/sprockets/v3.0/n9y1tI8pEiZFScheiDHWNB37EK6_rfbXTYMY5nC6bd0.cache +0 -0
  86. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +0 -0
  87. data/test/dummy/tmp/cache/assets/sprockets/v3.0/rCO5-bHVJ6Y_GsPBmOPUL23pfjvc2Gw2zt_ODmZsygw.cache +1 -0
  88. data/test/dummy/tmp/cache/assets/sprockets/v3.0/s6AtMNZlL_Kj-d3p2Resd_EU2Dy2v2Nn3rQnZvlmML4.cache +0 -0
  89. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sFqi-B8R6HSSCM6DhcvfXJk3vZeoIUDAR02K9P3JRBs.cache +0 -0
  90. data/test/dummy/tmp/cache/assets/sprockets/v3.0/x3o-vQBj2yHdj2-2aquYbWr5KEAIYG1rFAAx70fHJDc.cache +0 -0
  91. data/test/dummy/tmp/pids/server.pid +1 -0
  92. data/test/fixtures/users.yml +11 -0
  93. data/test/integration/navigation_test.rb +24 -0
  94. data/test/integration/verification_test.rb +39 -0
  95. data/test/models/verifiable_test.rb +31 -0
  96. data/test/routes_test.rb +26 -0
  97. data/test/support/integration_case.rb +23 -0
  98. data/test/support/matchers.rb +13 -0
  99. data/test/test_helper.rb +30 -0
  100. metadata +284 -0
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -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,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -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,62 @@
1
+ # Additional translations at https://github.com/plataformatec/devise/wiki/I18n
2
+
3
+ en:
4
+ devise:
5
+ confirmations:
6
+ confirmed: "Your email address has been successfully confirmed."
7
+ send_instructions: "You will receive an email with instructions for how to confirm your email address in a few minutes."
8
+ send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions for how to confirm your email address in a few minutes."
9
+ failure:
10
+ already_authenticated: "You are already signed in."
11
+ inactive: "Your account is not activated yet."
12
+ invalid: "Invalid %{authentication_keys} or password."
13
+ locked: "Your account is locked."
14
+ last_attempt: "You have one more attempt before your account is locked."
15
+ not_found_in_database: "Invalid %{authentication_keys} or password."
16
+ timeout: "Your session expired. Please sign in again to continue."
17
+ unauthenticated: "You need to sign in or sign up before continuing."
18
+ unconfirmed: "You have to confirm your email address before continuing."
19
+ mailer:
20
+ confirmation_instructions:
21
+ subject: "Confirmation instructions"
22
+ reset_password_instructions:
23
+ subject: "Reset password instructions"
24
+ unlock_instructions:
25
+ subject: "Unlock instructions"
26
+ password_change:
27
+ subject: "Password Changed"
28
+ omniauth_callbacks:
29
+ failure: "Could not authenticate you from %{kind} because \"%{reason}\"."
30
+ success: "Successfully authenticated from %{kind} account."
31
+ passwords:
32
+ no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided."
33
+ send_instructions: "You will receive an email with instructions on how to reset your password in a few minutes."
34
+ send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes."
35
+ updated: "Your password has been changed successfully. You are now signed in."
36
+ updated_not_active: "Your password has been changed successfully."
37
+ registrations:
38
+ destroyed: "Bye! Your account has been successfully cancelled. We hope to see you again soon."
39
+ signed_up: "Welcome! You have signed up successfully."
40
+ signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated."
41
+ signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked."
42
+ signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please follow the link to activate your account."
43
+ update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirm link to confirm your new email address."
44
+ updated: "Your account has been updated successfully."
45
+ sessions:
46
+ signed_in: "Signed in successfully."
47
+ signed_out: "Signed out successfully."
48
+ already_signed_out: "Signed out successfully."
49
+ unlocks:
50
+ send_instructions: "You will receive an email with instructions for how to unlock your account in a few minutes."
51
+ send_paranoid_instructions: "If your account exists, you will receive an email with instructions for how to unlock it in a few minutes."
52
+ unlocked: "Your account has been unlocked successfully. Please sign in to continue."
53
+ errors:
54
+ messages:
55
+ already_confirmed: "was already confirmed, please try signing in"
56
+ confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one"
57
+ expired: "has expired, please request a new one"
58
+ not_found: "not found"
59
+ not_locked: "was not locked"
60
+ not_saved:
61
+ one: "1 error prohibited this %{resource} from being saved:"
62
+ other: "%{count} errors prohibited this %{resource} from being saved:"
@@ -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,6 @@
1
+ Rails.application.routes.draw do
2
+
3
+ devise_for :users
4
+
5
+ root to: 'home#index'
6
+ end
@@ -0,0 +1,22 @@
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 the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: b25cd7fbf5e58f6a26087c52bb5d2d04820f4cc1f39cd74d2832be47e9d6232cbb76bd4539c1e888eef7fd9b718ec576b3a58fbda8931cc3adb1039b6231ebc8
15
+
16
+ test:
17
+ secret_key_base: adde39cc7b5cddfef70350ede68bacf01e35d91f118888a292953e74ca1d52919f0a876ad2d0e8786639e6112c3784dfc8ceedd4cc9eee7751731e250295a32e
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,13 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :full_name
5
+ t.string :address
6
+ t.string :city
7
+ t.string :state
8
+ t.string :postal_code
9
+
10
+ t.timestamps null: false
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,49 @@
1
+ class AddDeviseToUsers < ActiveRecord::Migration
2
+ def self.up
3
+ change_table(:users) do |t|
4
+ ## Database authenticatable
5
+ t.string :email, null: false, default: ""
6
+ t.string :encrypted_password, null: false, default: ""
7
+
8
+ ## Recoverable
9
+ t.string :reset_password_token
10
+ t.datetime :reset_password_sent_at
11
+
12
+ ## Rememberable
13
+ t.datetime :remember_created_at
14
+
15
+ ## Trackable
16
+ t.integer :sign_in_count, default: 0, null: false
17
+ t.datetime :current_sign_in_at
18
+ t.datetime :last_sign_in_at
19
+ t.string :current_sign_in_ip
20
+ t.string :last_sign_in_ip
21
+
22
+ ## Confirmable
23
+ # t.string :confirmation_token
24
+ # t.datetime :confirmed_at
25
+ # t.datetime :confirmation_sent_at
26
+ # t.string :unconfirmed_email # Only if using reconfirmable
27
+
28
+ ## Lockable
29
+ # t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts
30
+ # t.string :unlock_token # Only if unlock strategy is :email or :both
31
+ # t.datetime :locked_at
32
+
33
+
34
+ # Uncomment below if timestamps were not included in your original model.
35
+ # t.timestamps null: false
36
+ end
37
+
38
+ add_index :users, :email, unique: true
39
+ add_index :users, :reset_password_token, unique: true
40
+ # add_index :users, :confirmation_token, unique: true
41
+ # add_index :users, :unlock_token, unique: true
42
+ end
43
+
44
+ def self.down
45
+ # By default, we don't want to make any assumption about how to roll back a migration when your
46
+ # model already existed. Please edit below which fields you would like to remove in this migration.
47
+ raise ActiveRecord::IrreversibleMigration
48
+ end
49
+ end
@@ -0,0 +1,39 @@
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: 20160326200137) do
15
+
16
+ create_table "users", force: :cascade do |t|
17
+ t.string "full_name"
18
+ t.string "address"
19
+ t.string "city"
20
+ t.string "state"
21
+ t.string "postal_code"
22
+ t.datetime "created_at", null: false
23
+ t.datetime "updated_at", null: false
24
+ t.string "email", default: "", null: false
25
+ t.string "encrypted_password", default: "", null: false
26
+ t.string "reset_password_token"
27
+ t.datetime "reset_password_sent_at"
28
+ t.datetime "remember_created_at"
29
+ t.integer "sign_in_count", default: 0, null: false
30
+ t.datetime "current_sign_in_at"
31
+ t.datetime "last_sign_in_at"
32
+ t.string "current_sign_in_ip"
33
+ t.string "last_sign_in_ip"
34
+ end
35
+
36
+ add_index "users", ["email"], name: "index_users_on_email", unique: true
37
+ add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
38
+
39
+ end
@@ -0,0 +1,723 @@
1
+  (10.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.9ms) select sqlite_version(*)
3
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateUsers (20160326191549)
6
+  (0.1ms) begin transaction
7
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "full_name" varchar, "address" varchar, "city" varchar, "state" varchar, "postal_code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160326191549"]]
9
+  (1.0ms) commit transaction
10
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+ Migrating to AddDeviseToUsers (20160326200137)
13
+  (0.1ms) begin transaction
14
+  (0.5ms) ALTER TABLE "users" ADD "email" varchar DEFAULT '' NOT NULL
15
+  (0.1ms) ALTER TABLE "users" ADD "encrypted_password" varchar DEFAULT '' NOT NULL
16
+  (0.1ms) ALTER TABLE "users" ADD "reset_password_token" varchar
17
+  (0.1ms) ALTER TABLE "users" ADD "reset_password_sent_at" datetime
18
+  (0.1ms) ALTER TABLE "users" ADD "remember_created_at" datetime
19
+  (0.1ms) ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
20
+  (0.1ms) ALTER TABLE "users" ADD "current_sign_in_at" datetime
21
+  (0.1ms) ALTER TABLE "users" ADD "last_sign_in_at" datetime
22
+  (0.1ms) ALTER TABLE "users" ADD "current_sign_in_ip" varchar
23
+  (0.1ms) ALTER TABLE "users" ADD "last_sign_in_ip" varchar
24
+  (0.1ms) select sqlite_version(*)
25
+  (0.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
26
+  (0.1ms)  SELECT sql
27
+ FROM sqlite_master
28
+ WHERE name='index_users_on_email' AND type='index'
29
+ UNION ALL
30
+ SELECT sql
31
+ FROM sqlite_temp_master
32
+ WHERE name='index_users_on_email' AND type='index'
33
+ 
34
+  (0.2ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
35
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160326200137"]]
36
+  (1.3ms) commit transaction
37
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
38
+  (0.1ms) SELECT sql
39
+ FROM sqlite_master
40
+ WHERE name='index_users_on_reset_password_token' AND type='index'
41
+ UNION ALL
42
+ SELECT sql
43
+ FROM sqlite_temp_master
44
+ WHERE name='index_users_on_reset_password_token' AND type='index'
45
+
46
+  (0.1ms)  SELECT sql
47
+ FROM sqlite_master
48
+ WHERE name='index_users_on_email' AND type='index'
49
+ UNION ALL
50
+ SELECT sql
51
+ FROM sqlite_temp_master
52
+ WHERE name='index_users_on_email' AND type='index'
53
+ 
54
+
55
+
56
+ Started GET "/" for ::1 at 2016-03-29 07:40:35 -0300
57
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
58
+ Processing by Rails::WelcomeController#index as HTML
59
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (2.5ms)
60
+ Completed 200 OK in 15ms (Views: 15.2ms | ActiveRecord: 0.0ms)
61
+
62
+
63
+ Started GET "/" for ::1 at 2016-03-29 07:42:30 -0300
64
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
65
+ Processing by HomeController#index as HTML
66
+ Completed 401 Unauthorized in 33ms (ActiveRecord: 0.0ms)
67
+
68
+
69
+ Started GET "/users/sign_in" for ::1 at 2016-03-29 07:42:30 -0300
70
+ Processing by Devise::SessionsController#new as HTML
71
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/shared/_links.html.erb (2.7ms)
72
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/sessions/new.html.erb within layouts/application (40.9ms)
73
+ Completed 200 OK in 306ms (Views: 286.9ms | ActiveRecord: 0.6ms)
74
+
75
+
76
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-03-29 07:42:30 -0300
77
+
78
+
79
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-03-29 07:42:30 -0300
80
+
81
+
82
+ Started GET "/" for ::1 at 2016-03-29 09:07:23 -0300
83
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
84
+ Processing by HomeController#index as HTML
85
+ Completed 401 Unauthorized in 23ms (ActiveRecord: 0.0ms)
86
+
87
+
88
+ Started GET "/users/sign_in" for ::1 at 2016-03-29 09:07:23 -0300
89
+ Processing by Devise::SessionsController#new as HTML
90
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/shared/_links.html.erb (1.6ms)
91
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/sessions/new.html.erb within layouts/application (28.8ms)
92
+ Completed 200 OK in 320ms (Views: 303.9ms | ActiveRecord: 0.4ms)
93
+
94
+
95
+ Started GET "/users/sign_in" for ::1 at 2016-03-29 09:07:50 -0300
96
+ Processing by Devise::SessionsController#new as HTML
97
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/shared/_links.html.erb (0.4ms)
98
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/sessions/new.html.erb within layouts/application (5.7ms)
99
+ Completed 200 OK in 36ms (Views: 21.5ms | ActiveRecord: 0.7ms)
100
+
101
+
102
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-03-29 09:07:50 -0300
103
+
104
+
105
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-03-29 09:07:50 -0300
106
+
107
+
108
+ Started GET "/users/sign_in" for ::1 at 2016-03-29 09:08:04 -0300
109
+ Processing by Devise::SessionsController#new as HTML
110
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/shared/_links.html.erb (0.3ms)
111
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/sessions/new.html.erb within layouts/application (4.1ms)
112
+ Completed 200 OK in 30ms (Views: 19.2ms | ActiveRecord: 0.6ms)
113
+
114
+
115
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-03-29 09:08:04 -0300
116
+
117
+
118
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-03-29 09:08:04 -0300
119
+
120
+
121
+ Started GET "/" for ::1 at 2016-03-29 09:08:26 -0300
122
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
123
+ Processing by HomeController#index as HTML
124
+ [:Verifiable, :Encryptor, :OmniAuth, :ParameterFilter, :BaseSanitizer, :ParameterSanitizer, :TestHelpers, :TimeInflector, :Controllers, :Hooks, :Mailers, :Strategies, :ALL, :CONTROLLERS, :ROUTES, :STRATEGIES, :URL_HELPERS, :NO_INPUT, :TRUE_VALUES, :Getter, :Mapping, :Models, :Engine, :KeyGenerator, :CachingKeyGenerator, :TokenGenerator, :FailureApp, :Delegator]
125
+ Rendered home/index.html.erb within layouts/application (1.2ms)
126
+ Completed 200 OK in 218ms (Views: 217.7ms | ActiveRecord: 0.0ms)
127
+
128
+
129
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-03-29 09:08:26 -0300
130
+
131
+
132
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-03-29 09:08:26 -0300
133
+
134
+
135
+ Started GET "/" for ::1 at 2016-03-29 09:08:36 -0300
136
+ Processing by HomeController#index as HTML
137
+ [:Verifiable, :Encryptor, :OmniAuth, :ParameterFilter, :BaseSanitizer, :ParameterSanitizer, :TestHelpers, :TimeInflector, :Controllers, :Hooks, :Mailers, :Strategies, :ALL, :CONTROLLERS, :ROUTES, :STRATEGIES, :URL_HELPERS, :NO_INPUT, :TRUE_VALUES, :Getter, :Mapping, :Models, :Engine, :KeyGenerator, :CachingKeyGenerator, :TokenGenerator, :FailureApp, :Delegator]
138
+ Rendered home/index.html.erb within layouts/application (0.1ms)
139
+ Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
140
+
141
+
142
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-03-29 09:08:36 -0300
143
+
144
+
145
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-03-29 09:08:36 -0300
146
+
147
+
148
+ Started GET "/" for ::1 at 2016-04-05 18:10:52 -0300
149
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
150
+ Processing by HomeController#index as HTML
151
+ Completed 401 Unauthorized in 21ms (ActiveRecord: 0.0ms)
152
+
153
+
154
+ Started GET "/users/sign_in" for ::1 at 2016-04-05 18:10:52 -0300
155
+ Processing by Devise::SessionsController#new as HTML
156
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/shared/_links.html.erb (1.3ms)
157
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/sessions/new.html.erb within layouts/application (21.7ms)
158
+ Completed 200 OK in 338ms (Views: 321.8ms | ActiveRecord: 0.4ms)
159
+
160
+
161
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-05 18:10:52 -0300
162
+
163
+
164
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-04-05 18:10:52 -0300
165
+
166
+
167
+ Started GET "/" for ::1 at 2016-04-05 18:15:11 -0300
168
+ Processing by HomeController#index as HTML
169
+ Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
170
+
171
+
172
+ Started GET "/users/sign_in" for ::1 at 2016-04-05 18:15:11 -0300
173
+ Processing by Devise::SessionsController#new as HTML
174
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/shared/_links.html.erb (0.3ms)
175
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/sessions/new.html.erb within layouts/application (4.1ms)
176
+ Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.0ms)
177
+
178
+
179
+ Started GET "/users/sign_in" for ::1 at 2016-04-05 22:55:33 -0300
180
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
181
+ Processing by Devise::SessionsController#new as HTML
182
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/shared/_links.html.erb (1.4ms)
183
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/sessions/new.html.erb within layouts/application (25.0ms)
184
+ Completed 200 OK in 341ms (Views: 312.7ms | ActiveRecord: 0.5ms)
185
+
186
+
187
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-05 22:55:34 -0300
188
+
189
+
190
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-04-05 22:55:34 -0300
191
+
192
+
193
+ Started GET "/" for ::1 at 2016-04-05 22:55:37 -0300
194
+ Processing by HomeController#index as HTML
195
+ Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
196
+
197
+
198
+ Started GET "/users/sign_in" for ::1 at 2016-04-05 22:55:37 -0300
199
+ Processing by Devise::SessionsController#new as HTML
200
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/shared/_links.html.erb (0.4ms)
201
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/sessions/new.html.erb within layouts/application (5.6ms)
202
+ Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.0ms)
203
+
204
+
205
+ Started GET "/users/sign_in" for ::1 at 2016-04-05 23:30:53 -0300
206
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
207
+ Processing by Devise::SessionsController#new as HTML
208
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/shared/_links.html.erb (1.8ms)
209
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/sessions/new.html.erb within layouts/application (29.5ms)
210
+ Completed 200 OK in 365ms (Views: 337.4ms | ActiveRecord: 0.5ms)
211
+
212
+
213
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-05 23:30:53 -0300
214
+
215
+
216
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-04-05 23:30:53 -0300
217
+
218
+
219
+ Started POST "/users/sign_in" for ::1 at 2016-04-05 23:31:28 -0300
220
+ Processing by Devise::SessionsController#create as HTML
221
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"XhbVY8zFEcE/GDgKweLfyKAJ6lZwEkfi3n2By8blJ1U0K3B27mWSe+M0jooFawT43wp/Pvs1W1ntbCMyrLx75g==", "user"=>{"email"=>"rodrigo@mail.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"}
222
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" ASC LIMIT 1 [["email", "rodrigo@mail.com"]]
223
+ Completed 401 Unauthorized in 8ms (ActiveRecord: 0.3ms)
224
+ Processing by Devise::SessionsController#new as HTML
225
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"XhbVY8zFEcE/GDgKweLfyKAJ6lZwEkfi3n2By8blJ1U0K3B27mWSe+M0jooFawT43wp/Pvs1W1ntbCMyrLx75g==", "user"=>{"email"=>"rodrigo@mail.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"}
226
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/shared/_links.html.erb (0.3ms)
227
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/sessions/new.html.erb within layouts/application (4.6ms)
228
+ Completed 200 OK in 115ms (Views: 20.7ms | ActiveRecord: 0.0ms)
229
+
230
+
231
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-04-05 23:31:28 -0300
232
+
233
+
234
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-05 23:31:28 -0300
235
+
236
+
237
+ Started GET "/users/sign_up" for ::1 at 2016-04-05 23:31:29 -0300
238
+ Processing by Devise::RegistrationsController#new as HTML
239
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/shared/_links.html.erb (0.8ms)
240
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/registrations/new.html.erb within layouts/application (9.7ms)
241
+ Completed 200 OK in 40ms (Views: 38.5ms | ActiveRecord: 0.0ms)
242
+
243
+
244
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-05 23:31:29 -0300
245
+
246
+
247
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-04-05 23:31:29 -0300
248
+
249
+
250
+ Started POST "/users" for ::1 at 2016-04-05 23:31:36 -0300
251
+ Processing by Devise::RegistrationsController#create as HTML
252
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"LqYQ0r/YkNM6FNpTJ/bt3aI9M76J05lITHcPZ1ArbtJEm7XHnXgTaeY4bNPjfzbt3T6m1gL0hfN/Zq2eOnIyYQ==", "user"=>{"email"=>"rodrigorcomp@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
253
+  (0.1ms) begin transaction
254
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'rodrigorcomp@gmail.com' LIMIT 1
255
+ SQL (0.5ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["email", "rodrigorcomp@gmail.com"], ["encrypted_password", "$2a$10$fYHKm9uV9BwmKbVrzKf7tuCyowPiYOhR9ejsMdt8ATUemuPDWjPAu"], ["created_at", "2016-04-06 02:31:36.412062"], ["updated_at", "2016-04-06 02:31:36.412062"]]
256
+  (3.2ms) commit transaction
257
+  (0.1ms) begin transaction
258
+ SQL (0.4ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2016-04-06 02:31:36.418241"], ["current_sign_in_at", "2016-04-06 02:31:36.418241"], ["last_sign_in_ip", "::1"], ["current_sign_in_ip", "::1"], ["sign_in_count", 1], ["updated_at", "2016-04-06 02:31:36.419249"], ["id", 1]]
259
+  (0.8ms) commit transaction
260
+ Redirected to http://localhost:3000/
261
+ Completed 302 Found in 156ms (ActiveRecord: 5.2ms)
262
+
263
+
264
+ Started GET "/" for ::1 at 2016-04-05 23:31:36 -0300
265
+ Processing by HomeController#index as HTML
266
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 1]]
267
+ Redirected to http://localhost:3000/users/verification/new
268
+ Filter chain halted as :authenticate_verified_user! rendered or redirected
269
+ Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
270
+
271
+
272
+ Started GET "/users/verification/new" for ::1 at 2016-04-05 23:31:36 -0300
273
+ Processing by Devise::VerificationController#new as HTML
274
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 1]]
275
+ Rendered /Users/rodrigora/Projects/devise-verifiable/app/views/devise/verification/new.erb within layouts/application (0.4ms)
276
+ Completed 200 OK in 17ms (Views: 14.2ms | ActiveRecord: 0.2ms)
277
+
278
+
279
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-04-05 23:31:36 -0300
280
+
281
+
282
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-05 23:31:36 -0300
283
+
284
+
285
+ Started GET "/users/verification/new" for ::1 at 2016-04-05 23:34:30 -0300
286
+ Processing by Devise::VerificationController#new as HTML
287
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 1]]
288
+ Rendered /Users/rodrigora/Projects/devise-verifiable/app/views/devise/verification/new.erb within layouts/application (4.2ms)
289
+ Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.1ms)
290
+
291
+ ActionView::Template::Error (undefined method `field' for #<User:0x007fe6d5cfc100>):
292
+ 5: <%- resource_class.fields_for_verification.each do |field| %>
293
+ 6: <div class="field">
294
+ 7: <%= f.label :field %><br />
295
+ 8: <%= f.email_field :field, autofocus: true %>
296
+ 9: </div>
297
+ 10: <% end %>
298
+ 11:
299
+ activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing'
300
+ actionview (4.2.6) lib/action_view/helpers/tags/base.rb:28:in `public_send'
301
+ actionview (4.2.6) lib/action_view/helpers/tags/base.rb:28:in `value'
302
+ actionview (4.2.6) lib/action_view/helpers/tags/base.rb:38:in `value_before_type_cast'
303
+ actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `block in render'
304
+ actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `fetch'
305
+ actionview (4.2.6) lib/action_view/helpers/tags/text_field.rb:13:in `render'
306
+ actionview (4.2.6) lib/action_view/helpers/form_helper.rb:1178:in `email_field'
307
+ actionview (4.2.6) lib/action_view/helpers/form_helper.rb:1323:in `email_field'
308
+ /Users/rodrigora/Projects/devise-verifiable/app/views/devise/verification/new.erb:8:in `block (2 levels) in ___sers_rodrigora__rojects_devise_verifiable_app_views_devise_verification_new_erb___1127984640762077868_70314703203200'
309
+ /Users/rodrigora/Projects/devise-verifiable/app/views/devise/verification/new.erb:5:in `each'
310
+ /Users/rodrigora/Projects/devise-verifiable/app/views/devise/verification/new.erb:5:in `block in ___sers_rodrigora__rojects_devise_verifiable_app_views_devise_verification_new_erb___1127984640762077868_70314703203200'
311
+ actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `block in capture'
312
+ actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer'
313
+ actionview (4.2.6) lib/action_view/helpers/capture_helper.rb:38:in `capture'
314
+ actionview (4.2.6) lib/action_view/helpers/form_helper.rb:444:in `form_for'
315
+ /Users/rodrigora/Projects/devise-verifiable/app/views/devise/verification/new.erb:3:in `___sers_rodrigora__rojects_devise_verifiable_app_views_devise_verification_new_erb___1127984640762077868_70314703203200'
316
+ actionview (4.2.6) lib/action_view/template.rb:145:in `block in render'
317
+ activesupport (4.2.6) lib/active_support/notifications.rb:166:in `instrument'
318
+ actionview (4.2.6) lib/action_view/template.rb:333:in `instrument'
319
+ actionview (4.2.6) lib/action_view/template.rb:143:in `render'
320
+ actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
321
+ actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
322
+ activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument'
323
+ activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
324
+ activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument'
325
+ actionview (4.2.6) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
326
+ actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
327
+ actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
328
+ actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
329
+ actionview (4.2.6) lib/action_view/renderer/template_renderer.rb:14:in `render'
330
+ actionview (4.2.6) lib/action_view/renderer/renderer.rb:46:in `render_template'
331
+ actionview (4.2.6) lib/action_view/renderer/renderer.rb:27:in `render'
332
+ actionview (4.2.6) lib/action_view/rendering.rb:100:in `_render_template'
333
+ actionpack (4.2.6) lib/action_controller/metal/streaming.rb:217:in `_render_template'
334
+ actionview (4.2.6) lib/action_view/rendering.rb:83:in `render_to_body'
335
+ actionpack (4.2.6) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
336
+ actionpack (4.2.6) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
337
+ actionpack (4.2.6) lib/abstract_controller/rendering.rb:25:in `render'
338
+ actionpack (4.2.6) lib/action_controller/metal/rendering.rb:16:in `render'
339
+ actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
340
+ activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
341
+ /Users/rodrigora/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/benchmark.rb:303:in `realtime'
342
+ activesupport (4.2.6) lib/active_support/core_ext/benchmark.rb:12:in `ms'
343
+ actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
344
+ actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
345
+ activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
346
+ actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:43:in `render'
347
+ actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
348
+ actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
349
+ actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action'
350
+ actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
351
+ actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
352
+ activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call'
353
+ activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call'
354
+ activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
355
+ activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call'
356
+ activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call'
357
+ activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
358
+ activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
359
+ activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
360
+ actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
361
+ actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
362
+ actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
363
+ activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument'
364
+ activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
365
+ activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument'
366
+ actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
367
+ actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
368
+ activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
369
+ actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process'
370
+ actionview (4.2.6) lib/action_view/rendering.rb:30:in `process'
371
+ actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch'
372
+ actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
373
+ actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action'
374
+ actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `call'
375
+ actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
376
+ actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve'
377
+ actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:49:in `serve'
378
+ actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve'
379
+ actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each'
380
+ actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve'
381
+ actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call'
382
+ warden (1.2.6) lib/warden/manager.rb:35:in `block in call'
383
+ warden (1.2.6) lib/warden/manager.rb:34:in `catch'
384
+ warden (1.2.6) lib/warden/manager.rb:34:in `call'
385
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
386
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
387
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
388
+ actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
389
+ actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call'
390
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
391
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
392
+ actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
393
+ activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call'
394
+ activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
395
+ activerecord (4.2.6) lib/active_record/migration.rb:377:in `call'
396
+ actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
397
+ activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
398
+ activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
399
+ activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
400
+ actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
401
+ actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
402
+ actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
403
+ actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
404
+ actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
405
+ railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app'
406
+ railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call'
407
+ activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
408
+ activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged'
409
+ activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged'
410
+ railties (4.2.6) lib/rails/rack/logger.rb:20:in `call'
411
+ actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
412
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
413
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
414
+ activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
415
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
416
+ actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call'
417
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
418
+ railties (4.2.6) lib/rails/engine.rb:518:in `call'
419
+ railties (4.2.6) lib/rails/application.rb:165:in `call'
420
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
421
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
422
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
423
+ /Users/rodrigora/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
424
+ /Users/rodrigora/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
425
+ /Users/rodrigora/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
426
+
427
+
428
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.1ms)
429
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms)
430
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
431
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (57.5ms)
432
+
433
+
434
+ Started GET "/users/verification/new" for ::1 at 2016-04-05 23:34:39 -0300
435
+ Processing by Devise::VerificationController#new as HTML
436
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 1]]
437
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/shared/_links.html.erb (0.7ms)
438
+ Rendered /Users/rodrigora/Projects/devise-verifiable/app/views/devise/verification/new.erb within layouts/application (6.0ms)
439
+ Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.1ms)
440
+
441
+
442
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-05 23:34:39 -0300
443
+
444
+
445
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-04-05 23:34:40 -0300
446
+
447
+
448
+ Started GET "/" for ::1 at 2016-04-06 00:25:35 -0300
449
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
450
+ Processing by HomeController#index as HTML
451
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 1]]
452
+ Redirected to http://localhost:3000/users/verification/new
453
+ Filter chain halted as :authenticate_verified_user! rendered or redirected
454
+ Completed 302 Found in 48ms (ActiveRecord: 0.9ms)
455
+
456
+
457
+ Started GET "/users/verification/new" for ::1 at 2016-04-06 00:25:36 -0300
458
+ Processing by Devise::VerificationController#new as HTML
459
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 1]]
460
+ Rendered /Users/rodrigora/Projects/devise-verifiable/app/views/devise/verification/new.erb within layouts/application (23.7ms)
461
+ Completed 200 OK in 368ms (Views: 365.8ms | ActiveRecord: 0.1ms)
462
+
463
+
464
+ Started GET "/users/verification/new" for ::1 at 2016-04-06 00:25:43 -0300
465
+ Processing by Devise::VerificationController#new as HTML
466
+ Completed 401 Unauthorized in 5ms (ActiveRecord: 0.0ms)
467
+
468
+
469
+ Started GET "/users/sign_in" for ::1 at 2016-04-06 00:25:43 -0300
470
+ Processing by Devise::SessionsController#new as HTML
471
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/shared/_links.html.erb (1.5ms)
472
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/sessions/new.html.erb within layouts/application (13.2ms)
473
+ Completed 200 OK in 36ms (Views: 33.3ms | ActiveRecord: 0.0ms)
474
+
475
+
476
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-04-06 00:25:43 -0300
477
+
478
+
479
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-06 00:25:43 -0300
480
+
481
+
482
+ Started GET "/users/sign_up" for ::1 at 2016-04-06 00:25:46 -0300
483
+ Processing by Devise::RegistrationsController#new as HTML
484
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/shared/_links.html.erb (0.5ms)
485
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/registrations/new.html.erb within layouts/application (6.3ms)
486
+ Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.0ms)
487
+
488
+
489
+ Started POST "/users" for ::1 at 2016-04-06 00:25:52 -0300
490
+ Processing by Devise::RegistrationsController#create as HTML
491
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"6AEEw1zdofWVAAOOEv3ZAa4vOe/8BCsAroIx71fb8jz5ALS1D7q/RuN1k5Gn2Ur282o7jbnIMoQs/UELwroyRA==", "user"=>{"email"=>"rodrigorcomp@gmail.com2", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
492
+  (0.1ms) begin transaction
493
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'rodrigorcomp@gmail.com2' LIMIT 1
494
+  (0.1ms) rollback transaction
495
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/shared/_links.html.erb (0.2ms)
496
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/devise-3.5.6/app/views/devise/registrations/new.html.erb within layouts/application (5.4ms)
497
+ Completed 200 OK in 142ms (Views: 21.0ms | ActiveRecord: 0.3ms)
498
+
499
+
500
+ Started PATCH "/users/verification.user" for ::1 at 2016-04-06 11:57:17 -0300
501
+
502
+ ActionController::RoutingError (No route matches [PATCH] "/users/verification.user"):
503
+ actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
504
+ actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
505
+ railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app'
506
+ railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call'
507
+ activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
508
+ activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged'
509
+ activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged'
510
+ railties (4.2.6) lib/rails/rack/logger.rb:20:in `call'
511
+ actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
512
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
513
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
514
+ activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
515
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
516
+ actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call'
517
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
518
+ railties (4.2.6) lib/rails/engine.rb:518:in `call'
519
+ railties (4.2.6) lib/rails/application.rb:165:in `call'
520
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
521
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
522
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
523
+ /Users/rodrigora/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
524
+ /Users/rodrigora/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
525
+ /Users/rodrigora/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
526
+
527
+
528
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
529
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms)
530
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.9ms)
531
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms)
532
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (87.4ms)
533
+
534
+
535
+ Started GET "/users/verification/new" for ::1 at 2016-04-06 11:57:21 -0300
536
+ Processing by Devise::VerificationController#new as HTML
537
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 1]]
538
+ Rendered /Users/rodrigora/Projects/devise-verifiable/app/views/devise/verification/new.erb within layouts/application (1.8ms)
539
+ Completed 200 OK in 49ms (Views: 30.3ms | ActiveRecord: 1.8ms)
540
+
541
+
542
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-06 11:57:21 -0300
543
+
544
+
545
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-04-06 11:57:21 -0300
546
+
547
+
548
+ Started GET "/users/sign_up" for ::1 at 2016-04-06 11:57:23 -0300
549
+ Processing by Devise::RegistrationsController#new as HTML
550
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 1]]
551
+ Redirected to http://localhost:3000/
552
+ Filter chain halted as :require_no_authentication rendered or redirected
553
+ Completed 302 Found in 3ms (ActiveRecord: 0.1ms)
554
+
555
+
556
+ Started GET "/" for ::1 at 2016-04-06 11:57:23 -0300
557
+ Processing by HomeController#index as HTML
558
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 1]]
559
+ Redirected to http://localhost:3000/users/verification/new
560
+ Filter chain halted as :authenticate_verified_user! rendered or redirected
561
+ Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
562
+
563
+
564
+ Started GET "/users/verification/new" for ::1 at 2016-04-06 11:57:23 -0300
565
+ Processing by Devise::VerificationController#new as HTML
566
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 1]]
567
+ Rendered /Users/rodrigora/Projects/devise-verifiable/app/views/devise/verification/new.erb within layouts/application (1.2ms)
568
+ Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.1ms)
569
+
570
+
571
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-04-06 11:57:23 -0300
572
+
573
+
574
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-06 11:57:23 -0300
575
+
576
+
577
+ Started GET "/users/verification/new" for ::1 at 2016-04-06 11:57:24 -0300
578
+ Processing by Devise::VerificationController#new as HTML
579
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 1]]
580
+ Rendered /Users/rodrigora/Projects/devise-verifiable/app/views/devise/verification/new.erb within layouts/application (1.5ms)
581
+ Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.2ms)
582
+
583
+
584
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-04-06 11:57:24 -0300
585
+
586
+
587
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-06 11:57:24 -0300
588
+
589
+
590
+ Started GET "/users/verification/new" for ::1 at 2016-04-06 11:57:25 -0300
591
+ Processing by Devise::VerificationController#new as HTML
592
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 1]]
593
+ Rendered /Users/rodrigora/Projects/devise-verifiable/app/views/devise/verification/new.erb within layouts/application (1.2ms)
594
+ Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.1ms)
595
+
596
+
597
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-06 11:57:25 -0300
598
+
599
+
600
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-04-06 11:57:25 -0300
601
+
602
+
603
+ Started GET "/users/verification/new" for ::1 at 2016-04-06 11:57:26 -0300
604
+ Processing by Devise::VerificationController#new as HTML
605
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 1]]
606
+ Rendered /Users/rodrigora/Projects/devise-verifiable/app/views/devise/verification/new.erb within layouts/application (2.6ms)
607
+ Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.1ms)
608
+
609
+
610
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-06 11:57:26 -0300
611
+
612
+
613
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-04-06 11:57:26 -0300
614
+
615
+
616
+ Started POST "/users/verification" for ::1 at 2016-04-06 11:57:27 -0300
617
+ Processing by Devise::VerificationController#create as HTML
618
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"vPMVNZEdt/fnyr/lPWZsVwLNHvOKEcPy8AMP3+axIKvWzrAgs700TTvmCWX577dnfc6LmwE230nDEq0mjOh8GA==", "user"=>{"full_name"=>"", "address"=>""}, "commit"=>"Verify"}
619
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 1]]
620
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.1ms)
621
+
622
+ NoMethodError (undefined method `valid_for_verification?' for #<User:0x007f95b6c1cac0>):
623
+ activemodel (4.2.6) lib/active_model/attribute_methods.rb:433:in `method_missing'
624
+ /Users/rodrigora/Projects/devise-verifiable/app/controllers/devise/verification_controller.rb:11:in `create'
625
+ actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
626
+ actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action'
627
+ actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
628
+ actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
629
+ activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call'
630
+ activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call'
631
+ activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
632
+ activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call'
633
+ activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call'
634
+ activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
635
+ activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
636
+ activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
637
+ actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
638
+ actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
639
+ actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
640
+ activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument'
641
+ activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
642
+ activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument'
643
+ actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
644
+ actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
645
+ activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
646
+ actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process'
647
+ actionview (4.2.6) lib/action_view/rendering.rb:30:in `process'
648
+ actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch'
649
+ actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
650
+ actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action'
651
+ actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `call'
652
+ actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
653
+ actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve'
654
+ actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:49:in `serve'
655
+ actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve'
656
+ actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each'
657
+ actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve'
658
+ actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call'
659
+ warden (1.2.6) lib/warden/manager.rb:35:in `block in call'
660
+ warden (1.2.6) lib/warden/manager.rb:34:in `catch'
661
+ warden (1.2.6) lib/warden/manager.rb:34:in `call'
662
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
663
+ rack (1.6.4) lib/rack/conditionalget.rb:38:in `call'
664
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
665
+ actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
666
+ actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call'
667
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
668
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
669
+ actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
670
+ activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call'
671
+ activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
672
+ activerecord (4.2.6) lib/active_record/migration.rb:377:in `call'
673
+ actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
674
+ activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
675
+ activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
676
+ activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
677
+ actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
678
+ actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
679
+ actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
680
+ actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
681
+ actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
682
+ railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app'
683
+ railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call'
684
+ activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
685
+ activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged'
686
+ activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged'
687
+ railties (4.2.6) lib/rails/rack/logger.rb:20:in `call'
688
+ actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
689
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
690
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
691
+ activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
692
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
693
+ actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call'
694
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
695
+ railties (4.2.6) lib/rails/engine.rb:518:in `call'
696
+ railties (4.2.6) lib/rails/application.rb:165:in `call'
697
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
698
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
699
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
700
+ /Users/rodrigora/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
701
+ /Users/rodrigora/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
702
+ /Users/rodrigora/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
703
+
704
+
705
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms)
706
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms)
707
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
708
+ Rendered /Users/rodrigora/.rvm/gems/ruby-2.2.4@devise-verifiable/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (56.3ms)
709
+
710
+
711
+ Started POST "/users/verification" for ::1 at 2016-04-06 11:57:45 -0300
712
+ ActiveRecord::SchemaMigration Load (8.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
713
+ Processing by Devise::VerificationController#create as HTML
714
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"vPMVNZEdt/fnyr/lPWZsVwLNHvOKEcPy8AMP3+axIKvWzrAgs700TTvmCWX577dnfc6LmwE230nDEq0mjOh8GA==", "user"=>{"full_name"=>"", "address"=>""}, "commit"=>"Verify"}
715
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT 1 [["id", 1]]
716
+ Rendered /Users/rodrigora/Projects/devise-verifiable/app/views/devise/verification/new.erb within layouts/application (17.0ms)
717
+ Completed 200 OK in 384ms (Views: 333.1ms | ActiveRecord: 0.6ms)
718
+
719
+
720
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-04-06 11:57:46 -0300
721
+
722
+
723
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-04-06 11:57:46 -0300