genkan 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -3
  3. data/Rakefile +11 -11
  4. data/app/controllers/concerns/genkan/authenticatable.rb +16 -16
  5. data/app/controllers/concerns/genkan/helper.rb +2 -1
  6. data/app/controllers/genkan/sessions_controller.rb +27 -26
  7. data/app/models/concerns/genkan/auth.rb +13 -13
  8. data/lib/generators/genkan/helper.rb +48 -48
  9. data/lib/generators/genkan/templates/initializer.erb +4 -3
  10. data/lib/genkan/config.rb +1 -1
  11. data/lib/genkan/engine.rb +1 -1
  12. data/lib/genkan/version.rb +1 -1
  13. data/spec/controllers/genkan/sessions_controller_spec.rb +14 -14
  14. data/spec/controllers/welcome_controller_spec.rb +4 -4
  15. data/spec/dummy/Rakefile +1 -1
  16. data/spec/dummy/app/mailers/application_mailer.rb +2 -2
  17. data/spec/dummy/bin/bundle +2 -2
  18. data/spec/dummy/bin/rails +3 -3
  19. data/spec/dummy/bin/rake +2 -2
  20. data/spec/dummy/bin/setup +9 -10
  21. data/spec/dummy/bin/update +9 -9
  22. data/spec/dummy/bin/yarn +1 -1
  23. data/spec/dummy/config.ru +1 -1
  24. data/spec/dummy/config/application.rb +2 -3
  25. data/spec/dummy/config/boot.rb +3 -3
  26. data/spec/dummy/config/environment.rb +1 -1
  27. data/spec/dummy/config/environments/development.rb +2 -2
  28. data/spec/dummy/config/environments/production.rb +2 -2
  29. data/spec/dummy/config/environments/test.rb +1 -1
  30. data/spec/dummy/config/initializers/assets.rb +2 -2
  31. data/spec/dummy/config/initializers/genkan.rb +5 -5
  32. data/spec/dummy/config/routes.rb +2 -2
  33. data/spec/dummy/config/spring.rb +2 -2
  34. data/spec/dummy/db/schema.rb +1 -3
  35. data/spec/dummy/db/test.sqlite3 +0 -0
  36. data/spec/dummy/log/test.log +1029 -0
  37. data/spec/lib/genkan/config_spec.rb +15 -15
  38. data/spec/lib/genkan_spec.rb +4 -4
  39. data/spec/models/user_spec.rb +47 -46
  40. data/spec/rails_helper.rb +7 -7
  41. metadata +2 -2
@@ -1,7 +1,7 @@
1
- require 'rails_helper'
1
+ require "rails_helper"
2
2
 
3
3
  RSpec.describe WelcomeController do
4
- describe 'GET #index' do
4
+ describe "GET #index" do
5
5
  let(:user) { create :user }
6
6
 
7
7
  before do
@@ -9,14 +9,14 @@ RSpec.describe WelcomeController do
9
9
  get :index
10
10
  end
11
11
 
12
- context 'with authenticated' do
12
+ context "with authenticated" do
13
13
  let(:enable_login_stub) { true }
14
14
 
15
15
  it { expect(response).to have_http_status(200) }
16
16
  it { expect(response).to render_template(:index) }
17
17
  end
18
18
 
19
- context 'without authenticated' do
19
+ context "without authenticated" do
20
20
  let(:enable_login_stub) { false }
21
21
 
22
22
  it { expect(response).to have_http_status(302) }
data/spec/dummy/Rakefile CHANGED
@@ -1,6 +1,6 @@
1
1
  # Add your own tasks in files placed in lib/tasks ending in .rake,
2
2
  # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
3
 
4
- require_relative 'config/application'
4
+ require_relative "config/application"
5
5
 
6
6
  Rails.application.load_tasks
@@ -1,4 +1,4 @@
1
1
  class ApplicationMailer < ActionMailer::Base
2
- default from: 'from@example.com'
3
- layout 'mailer'
2
+ default from: "from@example.com"
3
+ layout "mailer"
4
4
  end
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env ruby
2
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
- load Gem.bin_path('bundler', 'bundle')
2
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", __FILE__)
3
+ load Gem.bin_path("bundler", "bundle")
data/spec/dummy/bin/rails CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
- APP_PATH = File.expand_path('../config/application', __dir__)
3
- require_relative '../config/boot'
4
- require 'rails/commands'
2
+ APP_PATH = File.expand_path("../config/application", __dir__)
3
+ require_relative "../config/boot"
4
+ require "rails/commands"
data/spec/dummy/bin/rake CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
- require_relative '../config/boot'
3
- require 'rake'
2
+ require_relative "../config/boot"
3
+ require "rake"
4
4
  Rake.application.run
data/spec/dummy/bin/setup CHANGED
@@ -1,10 +1,10 @@
1
1
  #!/usr/bin/env ruby
2
- require 'pathname'
3
- require 'fileutils'
2
+ require "pathname"
3
+ require "fileutils"
4
4
  include FileUtils
5
5
 
6
6
  # path to your application root.
7
- APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
7
+ APP_ROOT = Pathname.new File.expand_path("../../", __FILE__)
8
8
 
9
9
  def system!(*args)
10
10
  system(*args) || abort("\n== Command #{args} failed ==")
@@ -14,25 +14,24 @@ chdir APP_ROOT do
14
14
  # This script is a starting point to setup your application.
15
15
  # Add necessary setup steps to this file.
16
16
 
17
- puts '== Installing dependencies =='
18
- system! 'gem install bundler --conservative'
19
- system('bundle check') || system!('bundle install')
17
+ puts "== Installing dependencies =="
18
+ system! "gem install bundler --conservative"
19
+ system("bundle check") || system!("bundle install")
20
20
 
21
21
  # Install JavaScript dependencies if using Yarn
22
22
  # system('bin/yarn')
23
23
 
24
-
25
24
  # puts "\n== Copying sample files =="
26
25
  # unless File.exist?('config/database.yml')
27
26
  # cp 'config/database.yml.sample', 'config/database.yml'
28
27
  # end
29
28
 
30
29
  puts "\n== Preparing database =="
31
- system! 'bin/rails db:setup'
30
+ system! "bin/rails db:setup"
32
31
 
33
32
  puts "\n== Removing old logs and tempfiles =="
34
- system! 'bin/rails log:clear tmp:clear'
33
+ system! "bin/rails log:clear tmp:clear"
35
34
 
36
35
  puts "\n== Restarting application server =="
37
- system! 'bin/rails restart'
36
+ system! "bin/rails restart"
38
37
  end
@@ -1,10 +1,10 @@
1
1
  #!/usr/bin/env ruby
2
- require 'pathname'
3
- require 'fileutils'
2
+ require "pathname"
3
+ require "fileutils"
4
4
  include FileUtils
5
5
 
6
6
  # path to your application root.
7
- APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
7
+ APP_ROOT = Pathname.new File.expand_path("../../", __FILE__)
8
8
 
9
9
  def system!(*args)
10
10
  system(*args) || abort("\n== Command #{args} failed ==")
@@ -14,16 +14,16 @@ chdir APP_ROOT do
14
14
  # This script is a way to update your development environment automatically.
15
15
  # Add necessary update steps to this file.
16
16
 
17
- puts '== Installing dependencies =='
18
- system! 'gem install bundler --conservative'
19
- system('bundle check') || system!('bundle install')
17
+ puts "== Installing dependencies =="
18
+ system! "gem install bundler --conservative"
19
+ system("bundle check") || system!("bundle install")
20
20
 
21
21
  puts "\n== Updating database =="
22
- system! 'bin/rails db:migrate'
22
+ system! "bin/rails db:migrate"
23
23
 
24
24
  puts "\n== Removing old logs and tempfiles =="
25
- system! 'bin/rails log:clear tmp:clear'
25
+ system! "bin/rails log:clear tmp:clear"
26
26
 
27
27
  puts "\n== Restarting application server =="
28
- system! 'bin/rails restart'
28
+ system! "bin/rails restart"
29
29
  end
data/spec/dummy/bin/yarn CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- VENDOR_PATH = File.expand_path('..', __dir__)
2
+ VENDOR_PATH = File.expand_path("..", __dir__)
3
3
  Dir.chdir(VENDOR_PATH) do
4
4
  begin
5
5
  exec "yarnpkg #{ARGV.join(" ")}"
data/spec/dummy/config.ru CHANGED
@@ -1,5 +1,5 @@
1
1
  # This file is used by Rack-based servers to start the application.
2
2
 
3
- require_relative 'config/environment'
3
+ require_relative "config/environment"
4
4
 
5
5
  run Rails.application
@@ -1,6 +1,6 @@
1
- require_relative 'boot'
1
+ require_relative "boot"
2
2
 
3
- require 'rails/all'
3
+ require "rails/all"
4
4
 
5
5
  Bundler.require(*Rails.groups)
6
6
  require "genkan"
@@ -15,4 +15,3 @@ module Dummy
15
15
  # -- all .rb files in that directory are automatically loaded.
16
16
  end
17
17
  end
18
-
@@ -1,5 +1,5 @@
1
1
  # Set up gems listed in the Gemfile.
2
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../Gemfile', __dir__)
2
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile", __dir__)
3
3
 
4
- require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
5
- $LOAD_PATH.unshift File.expand_path('../../../lib', __dir__)
4
+ require "bundler/setup" if File.exist?(ENV["BUNDLE_GEMFILE"])
5
+ $LOAD_PATH.unshift File.expand_path("../../../lib", __dir__)
@@ -1,5 +1,5 @@
1
1
  # Load the Rails application.
2
- require_relative 'application'
2
+ require_relative "application"
3
3
 
4
4
  # Initialize the Rails application.
5
5
  Rails.application.initialize!
@@ -13,12 +13,12 @@ Rails.application.configure do
13
13
  config.consider_all_requests_local = true
14
14
 
15
15
  # Enable/disable caching. By default caching is disabled.
16
- if Rails.root.join('tmp/caching-dev.txt').exist?
16
+ if Rails.root.join("tmp/caching-dev.txt").exist?
17
17
  config.action_controller.perform_caching = true
18
18
 
19
19
  config.cache_store = :memory_store
20
20
  config.public_file_server.headers = {
21
- 'Cache-Control' => "public, max-age=#{2.days.seconds.to_i}"
21
+ "Cache-Control" => "public, max-age=#{2.days.seconds.to_i}",
22
22
  }
23
23
  else
24
24
  config.action_controller.perform_caching = false
@@ -21,7 +21,7 @@ Rails.application.configure do
21
21
 
22
22
  # Disable serving static files from the `/public` folder by default since
23
23
  # Apache or NGINX already handles this.
24
- config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
24
+ config.public_file_server.enabled = ENV["RAILS_SERVE_STATIC_FILES"].present?
25
25
 
26
26
  # Compress JavaScripts and CSS.
27
27
  config.assets.js_compressor = :uglifier
@@ -52,7 +52,7 @@ Rails.application.configure do
52
52
  config.log_level = :debug
53
53
 
54
54
  # Prepend all log lines with the following tags.
55
- config.log_tags = [ :request_id ]
55
+ config.log_tags = [:request_id]
56
56
 
57
57
  # Use a different cache store in production.
58
58
  # config.cache_store = :mem_cache_store
@@ -15,7 +15,7 @@ Rails.application.configure do
15
15
  # Configure public file server for tests with Cache-Control for performance.
16
16
  config.public_file_server.enabled = true
17
17
  config.public_file_server.headers = {
18
- 'Cache-Control' => "public, max-age=#{1.hour.seconds.to_i}"
18
+ "Cache-Control" => "public, max-age=#{1.hour.seconds.to_i}",
19
19
  }
20
20
 
21
21
  # Show full error reports and disable caching.
@@ -1,12 +1,12 @@
1
1
  # Be sure to restart your server when you modify this file.
2
2
 
3
3
  # Version of your assets, change this if you want to expire all your assets.
4
- Rails.application.config.assets.version = '1.0'
4
+ Rails.application.config.assets.version = "1.0"
5
5
 
6
6
  # Add additional assets to the asset load path.
7
7
  # Rails.application.config.assets.paths << Emoji.images_path
8
8
  # Add Yarn node_modules folder to the asset load path.
9
- Rails.application.config.assets.paths << Rails.root.join('node_modules')
9
+ Rails.application.config.assets.paths << Rails.root.join("node_modules")
10
10
 
11
11
  # Precompile additional assets.
12
12
  # application.js, application.css, and all non-JS/CSS in the app/assets
@@ -1,5 +1,5 @@
1
1
  Genkan.configure do |config|
2
- config.user_class_name = 'User'
2
+ config.user_class_name = "User"
3
3
  config.auto_acceptance = false
4
4
  end
5
5
 
@@ -7,10 +7,10 @@ Genkan::Engine.configure do |config|
7
7
  config.middleware.use OmniAuth::Builder do
8
8
  provider(
9
9
  :google_oauth2,
10
- ENV.fetch('GOOGLE_OAUTH_CLIENT_ID') { 'google_oauth_client_id' },
11
- ENV.fetch('GOOGLE_OAUTH_CLIENT_SECRET') { 'google_oauth_client_secret' },
12
- name: 'google',
13
- scope: 'email'
10
+ ENV.fetch("GOOGLE_OAUTH_CLIENT_ID") { "google_oauth_client_id" },
11
+ ENV.fetch("GOOGLE_OAUTH_CLIENT_SECRET") { "google_oauth_client_secret" },
12
+ name: "google",
13
+ scope: "email",
14
14
  )
15
15
  end
16
16
  end
@@ -1,6 +1,6 @@
1
1
  Rails.application.routes.draw do
2
- root 'welcome#index'
2
+ root "welcome#index"
3
3
 
4
- mount Genkan::Engine, at: '/'
4
+ mount Genkan::Engine, at: "/"
5
5
  # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
6
6
  end
@@ -1,6 +1,6 @@
1
- %w(
1
+ %w[
2
2
  .ruby-version
3
3
  .rbenv-vars
4
4
  tmp/restart.txt
5
5
  tmp/caching-dev.txt
6
- ).each { |path| Spring.watch(path) }
6
+ ].each { |path| Spring.watch(path) }
@@ -10,8 +10,7 @@
10
10
  #
11
11
  # It's strongly recommended that you check this file into your version control system.
12
12
 
13
- ActiveRecord::Schema.define(version: 20170705145634) do
14
-
13
+ ActiveRecord::Schema.define(version: 20_170_705_145_634) do
15
14
  create_table "users", force: :cascade do |t|
16
15
  t.string "email", null: false
17
16
  t.string "remember_token", null: false
@@ -22,5 +21,4 @@ ActiveRecord::Schema.define(version: 20170705145634) do
22
21
  t.index ["email"], name: "index_users_on_email", unique: true
23
22
  t.index ["remember_token"], name: "index_users_on_remember_token", unique: true
24
23
  end
25
-
26
24
  end
Binary file
@@ -11366,3 +11366,1032 @@ Completed 200 OK in 10ms (Views: 8.0ms | ActiveRecord: 0.2ms)
11366
11366
   (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11367
11367
   (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11368
11368
   (0.0ms) PRAGMA foreign_keys = 1
11369
+  (1.6ms) PRAGMA foreign_keys
11370
+  (0.1ms) PRAGMA foreign_keys = OFF
11371
+  (1.5ms) DELETE FROM "users";
11372
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11373
+  (0.3ms) DELETE FROM sqlite_sequence where name = 'users';
11374
+  (1.4ms) DELETE FROM "ar_internal_metadata";
11375
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11376
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11377
+  (0.1ms) PRAGMA foreign_keys = 1
11378
+  (0.1ms) PRAGMA foreign_keys
11379
+  (0.1ms) PRAGMA foreign_keys = OFF
11380
+  (0.7ms) DELETE FROM "users";
11381
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11382
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11383
+  (0.6ms) DELETE FROM "ar_internal_metadata";
11384
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11385
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11386
+  (0.0ms) PRAGMA foreign_keys = 1
11387
+  (0.1ms) PRAGMA foreign_keys
11388
+  (0.0ms) PRAGMA foreign_keys = OFF
11389
+  (0.7ms) DELETE FROM "users";
11390
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11391
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11392
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11393
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11394
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11395
+  (0.0ms) PRAGMA foreign_keys = 1
11396
+  (0.1ms) PRAGMA foreign_keys
11397
+  (0.0ms) PRAGMA foreign_keys = OFF
11398
+  (0.6ms) DELETE FROM "users";
11399
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11400
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11401
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11402
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11403
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11404
+  (0.0ms) PRAGMA foreign_keys = 1
11405
+ Processing by Genkan::SessionsController#create as HTML
11406
+ Parameters: {"provider"=>"google"}
11407
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "karelle@yundt.com"], ["LIMIT", 1]]
11408
+  (0.0ms) begin transaction
11409
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "karelle@yundt.com"], ["LIMIT", 1]]
11410
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "karelle@yundt.com"], ["remember_token", "1725d3b53a56ee6fe0ad8dd2d55456119d8908ba"]]
11411
+  (0.4ms) commit transaction
11412
+  (0.1ms) begin transaction
11413
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND ("users"."id" != ?) LIMIT ? [["email", "karelle@yundt.com"], ["id", 1], ["LIMIT", 1]]
11414
+ SQL (0.2ms) UPDATE "users" SET "logged_in_count" = ?, "last_logged_in_at" = ?, "accepted_at" = ? WHERE "users"."id" = ? [["logged_in_count", 1], ["last_logged_in_at", "2017-07-24 15:27:54.580121"], ["accepted_at", "2017-07-24 15:27:54.580543"], ["id", 1]]
11415
+  (0.4ms) commit transaction
11416
+ Redirected to http://test.host/
11417
+ Completed 302 Found in 35ms (ActiveRecord: 2.4ms)
11418
+ Processing by Genkan::SessionsController#destroy as HTML
11419
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL AND "users"."remember_token" = ? LIMIT ? [["remember_token", "1725d3b53a56ee6fe0ad8dd2d55456119d8908ba"], ["LIMIT", 1]]
11420
+ Redirected to http://test.host/login
11421
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
11422
+  (0.1ms) PRAGMA foreign_keys
11423
+  (0.1ms) PRAGMA foreign_keys = OFF
11424
+  (0.6ms) DELETE FROM "users";
11425
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11426
+  (0.6ms) DELETE FROM sqlite_sequence where name = 'users';
11427
+  (0.6ms) DELETE FROM "ar_internal_metadata";
11428
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11429
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11430
+  (0.1ms) PRAGMA foreign_keys = 1
11431
+ Processing by Genkan::SessionsController#create as HTML
11432
+ Parameters: {"provider"=>"google"}
11433
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "chanelle@ryan.name"], ["LIMIT", 1]]
11434
+  (0.0ms) begin transaction
11435
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "chanelle@ryan.name"], ["LIMIT", 1]]
11436
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "chanelle@ryan.name"], ["remember_token", "a1d9544a44f1332c50d4e17e67d4d7a9ca5caee4"]]
11437
+  (0.5ms) commit transaction
11438
+  (0.0ms) begin transaction
11439
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND ("users"."id" != ?) LIMIT ? [["email", "chanelle@ryan.name"], ["id", 1], ["LIMIT", 1]]
11440
+ SQL (0.2ms) UPDATE "users" SET "logged_in_count" = ?, "last_logged_in_at" = ?, "accepted_at" = ? WHERE "users"."id" = ? [["logged_in_count", 1], ["last_logged_in_at", "2017-07-24 15:27:54.605748"], ["accepted_at", "2017-07-24 15:27:54.606047"], ["id", 1]]
11441
+  (0.5ms) commit transaction
11442
+ Redirected to http://test.host/
11443
+ Completed 302 Found in 6ms (ActiveRecord: 1.7ms)
11444
+ Processing by Genkan::SessionsController#destroy as HTML
11445
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL AND "users"."remember_token" = ? LIMIT ? [["remember_token", "a1d9544a44f1332c50d4e17e67d4d7a9ca5caee4"], ["LIMIT", 1]]
11446
+ Redirected to http://test.host/login
11447
+ Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
11448
+  (0.1ms) PRAGMA foreign_keys
11449
+  (0.0ms) PRAGMA foreign_keys = OFF
11450
+  (0.6ms) DELETE FROM "users";
11451
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11452
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'users';
11453
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11454
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11455
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11456
+  (0.0ms) PRAGMA foreign_keys = 1
11457
+ Processing by Genkan::SessionsController#create as HTML
11458
+ Parameters: {"provider"=>"google"}
11459
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "louie@cole.name"], ["LIMIT", 1]]
11460
+  (0.0ms) begin transaction
11461
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "louie@cole.name"], ["LIMIT", 1]]
11462
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "louie@cole.name"], ["remember_token", "9767bf186bd3bee23f97a0fceb91c4a811754c9d"]]
11463
+  (0.6ms) commit transaction
11464
+  (0.0ms) begin transaction
11465
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND ("users"."id" != ?) LIMIT ? [["email", "louie@cole.name"], ["id", 1], ["LIMIT", 1]]
11466
+  (0.0ms) rollback transaction
11467
+ Redirected to http://test.host/login
11468
+ Completed 302 Found in 6ms (ActiveRecord: 1.4ms)
11469
+  (0.1ms) PRAGMA foreign_keys
11470
+  (0.0ms) PRAGMA foreign_keys = OFF
11471
+  (0.7ms) DELETE FROM "users";
11472
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11473
+  (0.6ms) DELETE FROM sqlite_sequence where name = 'users';
11474
+  (0.6ms) DELETE FROM "ar_internal_metadata";
11475
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11476
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11477
+  (0.0ms) PRAGMA foreign_keys = 1
11478
+  (0.1ms) SELECT COUNT(*) FROM "users"
11479
+ Processing by Genkan::SessionsController#create as HTML
11480
+ Parameters: {"provider"=>"google"}
11481
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ariane.kling@crist.biz"], ["LIMIT", 1]]
11482
+  (0.0ms) begin transaction
11483
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ariane.kling@crist.biz"], ["LIMIT", 1]]
11484
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "ariane.kling@crist.biz"], ["remember_token", "af84a16ce5ebedc2fd11af537a223b7c14c2390c"]]
11485
+  (0.5ms) commit transaction
11486
+  (0.1ms) begin transaction
11487
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND ("users"."id" != ?) LIMIT ? [["email", "ariane.kling@crist.biz"], ["id", 1], ["LIMIT", 1]]
11488
+  (0.1ms) rollback transaction
11489
+ Redirected to http://test.host/login
11490
+ Completed 302 Found in 6ms (ActiveRecord: 1.3ms)
11491
+  (0.1ms) SELECT COUNT(*) FROM "users"
11492
+  (0.1ms) PRAGMA foreign_keys
11493
+  (0.0ms) PRAGMA foreign_keys = OFF
11494
+  (0.6ms) DELETE FROM "users";
11495
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11496
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'users';
11497
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11498
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11499
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11500
+  (0.0ms) PRAGMA foreign_keys = 1
11501
+  (0.1ms) SELECT COUNT(*) FROM "users"
11502
+ Processing by Genkan::SessionsController#create as HTML
11503
+ Parameters: {"provider"=>"google"}
11504
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mabelle@koelpingrady.biz"], ["LIMIT", 1]]
11505
+  (0.0ms) begin transaction
11506
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mabelle@koelpingrady.biz"], ["LIMIT", 1]]
11507
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "mabelle@koelpingrady.biz"], ["remember_token", "4e61c9383499a541f09d8c8a1f65a4746084607c"]]
11508
+  (0.5ms) commit transaction
11509
+  (0.0ms) begin transaction
11510
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND ("users"."id" != ?) LIMIT ? [["email", "mabelle@koelpingrady.biz"], ["id", 1], ["LIMIT", 1]]
11511
+ SQL (0.2ms) UPDATE "users" SET "logged_in_count" = ?, "last_logged_in_at" = ?, "accepted_at" = ? WHERE "users"."id" = ? [["logged_in_count", 1], ["last_logged_in_at", "2017-07-24 15:27:54.647117"], ["accepted_at", "2017-07-24 15:27:54.647533"], ["id", 1]]
11512
+  (0.4ms) commit transaction
11513
+ Redirected to http://test.host/
11514
+ Completed 302 Found in 6ms (ActiveRecord: 1.7ms)
11515
+  (0.1ms) SELECT COUNT(*) FROM "users"
11516
+  (0.1ms) PRAGMA foreign_keys
11517
+  (0.0ms) PRAGMA foreign_keys = OFF
11518
+  (0.5ms) DELETE FROM "users";
11519
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11520
+  (0.6ms) DELETE FROM sqlite_sequence where name = 'users';
11521
+  (0.6ms) DELETE FROM "ar_internal_metadata";
11522
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11523
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11524
+  (0.0ms) PRAGMA foreign_keys = 1
11525
+ Processing by Genkan::SessionsController#create as HTML
11526
+ Parameters: {"provider"=>"google"}
11527
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lorine.veum@willward.info"], ["LIMIT", 1]]
11528
+  (0.0ms) begin transaction
11529
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lorine.veum@willward.info"], ["LIMIT", 1]]
11530
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "lorine.veum@willward.info"], ["remember_token", "339e15b3ec5980c120bf7f05b765a088bad88060"]]
11531
+  (0.5ms) commit transaction
11532
+  (0.1ms) begin transaction
11533
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND ("users"."id" != ?) LIMIT ? [["email", "lorine.veum@willward.info"], ["id", 1], ["LIMIT", 1]]
11534
+ SQL (0.2ms) UPDATE "users" SET "logged_in_count" = ?, "last_logged_in_at" = ?, "accepted_at" = ? WHERE "users"."id" = ? [["logged_in_count", 1], ["last_logged_in_at", "2017-07-24 15:27:54.659197"], ["accepted_at", "2017-07-24 15:27:54.659521"], ["id", 1]]
11535
+  (0.5ms) commit transaction
11536
+ Redirected to http://test.host/
11537
+ Completed 302 Found in 6ms (ActiveRecord: 1.8ms)
11538
+  (0.1ms) PRAGMA foreign_keys
11539
+  (0.0ms) PRAGMA foreign_keys = OFF
11540
+  (0.6ms) DELETE FROM "users";
11541
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11542
+  (0.7ms) DELETE FROM sqlite_sequence where name = 'users';
11543
+  (0.6ms) DELETE FROM "ar_internal_metadata";
11544
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11545
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11546
+  (0.1ms) PRAGMA foreign_keys = 1
11547
+ Processing by Genkan::SessionsController#create as HTML
11548
+ Parameters: {"provider"=>"google"}
11549
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "layla_schamberger@binsfisher.io"], ["LIMIT", 1]]
11550
+  (0.1ms) begin transaction
11551
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "layla_schamberger@binsfisher.io"], ["LIMIT", 1]]
11552
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "layla_schamberger@binsfisher.io"], ["remember_token", "962688c071e522a02f75519df995191fe327a154"]]
11553
+  (0.5ms) commit transaction
11554
+  (0.0ms) begin transaction
11555
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND ("users"."id" != ?) LIMIT ? [["email", "layla_schamberger@binsfisher.io"], ["id", 1], ["LIMIT", 1]]
11556
+ SQL (0.2ms) UPDATE "users" SET "logged_in_count" = ?, "last_logged_in_at" = ?, "accepted_at" = ? WHERE "users"."id" = ? [["logged_in_count", 1], ["last_logged_in_at", "2017-07-24 15:27:54.674359"], ["accepted_at", "2017-07-24 15:27:54.674793"], ["id", 1]]
11557
+  (0.4ms) commit transaction
11558
+ Redirected to http://test.host/
11559
+ Completed 302 Found in 9ms (ActiveRecord: 2.0ms)
11560
+  (0.1ms) PRAGMA foreign_keys
11561
+  (0.1ms) PRAGMA foreign_keys = OFF
11562
+  (0.8ms) DELETE FROM "users";
11563
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11564
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'users';
11565
+  (0.4ms) DELETE FROM "ar_internal_metadata";
11566
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11567
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11568
+  (0.0ms) PRAGMA foreign_keys = 1
11569
+ Processing by Genkan::SessionsController#new as HTML
11570
+ Rendering genkan/sessions/new.html.erb within layouts/application
11571
+ Rendered genkan/sessions/new.html.erb within layouts/application (0.3ms)
11572
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
11573
+ Completed 200 OK in 11ms (Views: 8.3ms | ActiveRecord: 0.0ms)
11574
+  (0.1ms) PRAGMA foreign_keys
11575
+  (0.1ms) PRAGMA foreign_keys = OFF
11576
+  (0.8ms) DELETE FROM "users";
11577
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11578
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11579
+  (0.7ms) DELETE FROM "ar_internal_metadata";
11580
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11581
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11582
+  (0.1ms) PRAGMA foreign_keys = 1
11583
+ Started GET "/login" for 127.0.0.1 at 2017-07-25 00:27:54 +0900
11584
+ Processing by Genkan::SessionsController#new as HTML
11585
+ Rendering genkan/sessions/new.html.erb within layouts/application
11586
+ Rendered genkan/sessions/new.html.erb within layouts/application (1.7ms)
11587
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::Authentication::Logout:Class ["/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/streaming.rb:217:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:52:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/renderers.rb:141:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:36:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `block in ms'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `ms'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:29:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:43:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/implicit_render.rb:33:in `default_render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:131:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rescue.rb:20:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/params_wrapper.rb:252:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:22:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:189:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:253:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:49:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:31:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:46:in `block in serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:832:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:407:in `call_app!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:265:in `mock_call!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:184:in `call!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:167:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/builder.rb:63:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/engine.rb:522:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/railtie.rb:185:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/railtie.rb:185:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/mapper.rb:46:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:46:in `block in serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:832:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/etag.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/conditional_get.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/head.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:232:in `context'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:226:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/cookies.rb:613:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:26:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:36:in `call_app'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `block in tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:26:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/remote_ip.rb:79:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/request_id.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/method_override.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/runtime.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/executor.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/static.rb:125:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/sendfile.rb:111:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/engine.rb:522:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:68:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:58:in `get'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/forwardable.rb:189:in `get'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:64:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:36:in `process_and_follow_redirects'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:22:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/driver.rb:44:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/session.rb:269:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/dsl.rb:50:in `block (2 levels) in <module:DSL>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/example/feature_example_group.rb:29:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/spec/features/authentication_spec.rb:7:in `block (2 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:350:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:507:in `block in run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:593:in `block in run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `reverse_each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:462:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:494:in `run_before_example'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:253:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:365:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:22:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:13:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:30:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `<main>'"]
11588
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL AND "users"."remember_token" IS NULL LIMIT ? [["LIMIT", 1]]
11589
+ Completed 200 OK in 178ms (Views: 175.2ms | ActiveRecord: 0.2ms)
11590
+ Started GET "/auth/google" for 127.0.0.1 at 2017-07-25 00:27:54 +0900
11591
+ Started GET "/auth/google/callback" for 127.0.0.1 at 2017-07-25 00:27:54 +0900
11592
+ Processing by Genkan::SessionsController#create as HTML
11593
+ Parameters: {"provider"=>"google"}
11594
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "clyde.goodwin@lemke.co"], ["LIMIT", 1]]
11595
+  (0.0ms) begin transaction
11596
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "clyde.goodwin@lemke.co"], ["LIMIT", 1]]
11597
+ SQL (0.4ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "clyde.goodwin@lemke.co"], ["remember_token", "91bcf4425d0037df3b5bcd9e0fb6baa9db6d5e6f"]]
11598
+  (0.5ms) commit transaction
11599
+  (0.0ms) begin transaction
11600
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND ("users"."id" != ?) LIMIT ? [["email", "clyde.goodwin@lemke.co"], ["id", 1], ["LIMIT", 1]]
11601
+ SQL (0.2ms) UPDATE "users" SET "logged_in_count" = ?, "last_logged_in_at" = ?, "accepted_at" = ? WHERE "users"."id" = ? [["logged_in_count", 1], ["last_logged_in_at", "2017-07-24 15:27:54.898031"], ["accepted_at", "2017-07-24 15:27:54.898350"], ["id", 1]]
11602
+  (0.4ms) commit transaction
11603
+ Redirected to http://www.example.com/
11604
+ Completed 302 Found in 7ms (ActiveRecord: 1.9ms)
11605
+ Started GET "/" for 127.0.0.1 at 2017-07-25 00:27:54 +0900
11606
+ Processing by WelcomeController#index as HTML
11607
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL AND "users"."remember_token" = ? LIMIT ? [["remember_token", "91bcf4425d0037df3b5bcd9e0fb6baa9db6d5e6f"], ["LIMIT", 1]]
11608
+ Rendering welcome/index.html.erb within layouts/application
11609
+ Rendered welcome/index.html.erb within layouts/application (0.3ms)
11610
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::Authentication::Logout:Class ["/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/streaming.rb:217:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:52:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/renderers.rb:141:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:36:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `block in ms'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `ms'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:29:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:43:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/implicit_render.rb:33:in `default_render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:131:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rescue.rb:20:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/params_wrapper.rb:252:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:22:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:189:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:253:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:49:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:31:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:46:in `block in serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:832:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/etag.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/conditional_get.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/head.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:232:in `context'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:226:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/cookies.rb:613:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:26:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:36:in `call_app'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `block in tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:26:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/remote_ip.rb:79:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/request_id.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/method_override.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/runtime.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/executor.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/static.rb:125:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/sendfile.rb:111:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/engine.rb:522:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:68:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:58:in `get'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/forwardable.rb:189:in `get'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:64:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:39:in `block in process_and_follow_redirects'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:38:in `times'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:38:in `process_and_follow_redirects'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:32:in `follow'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/node.rb:60:in `click'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/element.rb:143:in `block in click'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/base.rb:85:in `synchronize'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/element.rb:143:in `click'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/actions.rb:43:in `click_link'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/session.rb:784:in `block (2 levels) in <class:Session>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/dsl.rb:50:in `block (2 levels) in <module:DSL>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/spec/features/authentication_spec.rb:8:in `block (2 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:350:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:507:in `block in run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:593:in `block in run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `reverse_each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:462:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:494:in `run_before_example'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:253:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:365:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:22:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:13:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:30:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `<main>'"]
11611
+ Completed 200 OK in 11ms (Views: 8.8ms | ActiveRecord: 0.2ms)
11612
+ Started GET "/logout" for 127.0.0.1 at 2017-07-25 00:27:54 +0900
11613
+ Processing by Genkan::SessionsController#destroy as HTML
11614
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL AND "users"."remember_token" = ? LIMIT ? [["remember_token", "91bcf4425d0037df3b5bcd9e0fb6baa9db6d5e6f"], ["LIMIT", 1]]
11615
+ Redirected to http://www.example.com/login
11616
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
11617
+ Started GET "/login" for 127.0.0.1 at 2017-07-25 00:27:54 +0900
11618
+ Processing by Genkan::SessionsController#new as HTML
11619
+ Rendering genkan/sessions/new.html.erb within layouts/application
11620
+ Rendered genkan/sessions/new.html.erb within layouts/application (0.1ms)
11621
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::Authentication::Logout:Class ["/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/streaming.rb:217:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:52:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/renderers.rb:141:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:36:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `block in ms'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `ms'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:29:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:43:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/implicit_render.rb:33:in `default_render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:131:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rescue.rb:20:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/params_wrapper.rb:252:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:22:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:189:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:253:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:49:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:31:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:46:in `block in serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:832:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:407:in `call_app!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:265:in `mock_call!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:184:in `call!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:167:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/builder.rb:63:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/engine.rb:522:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/railtie.rb:185:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/railtie.rb:185:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/mapper.rb:46:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:46:in `block in serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:832:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/etag.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/conditional_get.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/head.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:232:in `context'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:226:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/cookies.rb:613:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:26:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:36:in `call_app'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `block in tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:26:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/remote_ip.rb:79:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/request_id.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/method_override.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/runtime.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/executor.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/static.rb:125:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/sendfile.rb:111:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/engine.rb:522:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:68:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:58:in `get'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/forwardable.rb:189:in `get'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:64:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:39:in `block in process_and_follow_redirects'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:38:in `times'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:38:in `process_and_follow_redirects'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:32:in `follow'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/node.rb:60:in `click'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/element.rb:143:in `block in click'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/base.rb:85:in `synchronize'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/element.rb:143:in `click'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/actions.rb:43:in `click_link'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/session.rb:784:in `block (2 levels) in <class:Session>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/dsl.rb:50:in `block (2 levels) in <module:DSL>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/spec/features/authentication_spec.rb:43:in `block (3 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:254:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:365:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:22:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:13:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:30:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `<main>'"]
11622
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL AND "users"."remember_token" IS NULL LIMIT ? [["LIMIT", 1]]
11623
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.1ms)
11624
+  (0.1ms) PRAGMA foreign_keys
11625
+  (0.0ms) PRAGMA foreign_keys = OFF
11626
+  (0.8ms) DELETE FROM "users";
11627
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11628
+  (0.6ms) DELETE FROM sqlite_sequence where name = 'users';
11629
+  (0.6ms) DELETE FROM "ar_internal_metadata";
11630
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11631
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11632
+  (0.0ms) PRAGMA foreign_keys = 1
11633
+  (0.0ms) begin transaction
11634
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gustave@jacobshansen.io"], ["LIMIT", 1]]
11635
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "gustave@jacobshansen.io"], ["remember_token", "ed644302a613b6f01ac96771ed4a438b5b8aaca1"], ["accepted_at", "2017-07-24 15:27:54.935737"]]
11636
+  (0.7ms) commit transaction
11637
+ Started GET "/login" for 127.0.0.1 at 2017-07-25 00:27:54 +0900
11638
+ Processing by Genkan::SessionsController#new as HTML
11639
+ Rendering genkan/sessions/new.html.erb within layouts/application
11640
+ Rendered genkan/sessions/new.html.erb within layouts/application (0.1ms)
11641
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::Authentication::Login::WhenUserIsAccepted:Class ["/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/streaming.rb:217:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:52:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/renderers.rb:141:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:36:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `block in ms'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `ms'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:29:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:43:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/implicit_render.rb:33:in `default_render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:131:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rescue.rb:20:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/params_wrapper.rb:252:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:22:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:189:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:253:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:49:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:31:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:46:in `block in serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:832:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:407:in `call_app!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:265:in `mock_call!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:184:in `call!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:167:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/builder.rb:63:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/engine.rb:522:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/railtie.rb:185:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/railtie.rb:185:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/mapper.rb:46:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:46:in `block in serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:832:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/etag.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/conditional_get.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/head.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:232:in `context'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:226:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/cookies.rb:613:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:26:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:36:in `call_app'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `block in tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:26:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/remote_ip.rb:79:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/request_id.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/method_override.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/runtime.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/executor.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/static.rb:125:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/sendfile.rb:111:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/engine.rb:522:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:68:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:58:in `get'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/forwardable.rb:189:in `get'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:64:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:36:in `process_and_follow_redirects'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:22:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/driver.rb:44:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/session.rb:269:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/dsl.rb:50:in `block (2 levels) in <module:DSL>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/example/feature_example_group.rb:29:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/spec/features/authentication_spec.rb:7:in `block (2 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:350:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:507:in `block in run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:593:in `block in run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `reverse_each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:462:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:494:in `run_before_example'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:253:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:365:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:22:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:13:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:30:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `<main>'"]
11642
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL AND "users"."remember_token" IS NULL LIMIT ? [["LIMIT", 1]]
11643
+ Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.2ms)
11644
+ Started GET "/auth/google" for 127.0.0.1 at 2017-07-25 00:27:54 +0900
11645
+ Started GET "/auth/google/callback" for 127.0.0.1 at 2017-07-25 00:27:54 +0900
11646
+ Processing by Genkan::SessionsController#create as HTML
11647
+ Parameters: {"provider"=>"google"}
11648
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gustave@jacobshansen.io"], ["LIMIT", 1]]
11649
+  (0.0ms) begin transaction
11650
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND ("users"."id" != ?) LIMIT ? [["email", "gustave@jacobshansen.io"], ["id", 1], ["LIMIT", 1]]
11651
+ SQL (0.2ms) UPDATE "users" SET "last_logged_in_at" = ?, "logged_in_count" = ?, "accepted_at" = ? WHERE "users"."id" = ? [["last_logged_in_at", "2017-07-24 15:27:54.952656"], ["logged_in_count", 1], ["accepted_at", "2017-07-24 15:27:54.952978"], ["id", 1]]
11652
+  (0.5ms) commit transaction
11653
+ Redirected to http://www.example.com/
11654
+ Completed 302 Found in 4ms (ActiveRecord: 1.0ms)
11655
+ Started GET "/" for 127.0.0.1 at 2017-07-25 00:27:54 +0900
11656
+ Processing by WelcomeController#index as HTML
11657
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL AND "users"."remember_token" = ? LIMIT ? [["remember_token", "ed644302a613b6f01ac96771ed4a438b5b8aaca1"], ["LIMIT", 1]]
11658
+ Rendering welcome/index.html.erb within layouts/application
11659
+ Rendered welcome/index.html.erb within layouts/application (0.0ms)
11660
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::Authentication::Login::WhenUserIsAccepted:Class ["/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/streaming.rb:217:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:52:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/renderers.rb:141:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:36:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `block in ms'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `ms'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:29:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:43:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/implicit_render.rb:33:in `default_render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:131:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rescue.rb:20:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/params_wrapper.rb:252:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:22:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:189:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:253:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:49:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:31:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:46:in `block in serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:832:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/etag.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/conditional_get.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/head.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:232:in `context'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:226:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/cookies.rb:613:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:26:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:36:in `call_app'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `block in tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:26:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/remote_ip.rb:79:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/request_id.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/method_override.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/runtime.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/executor.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/static.rb:125:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/sendfile.rb:111:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/engine.rb:522:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:68:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:58:in `get'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/forwardable.rb:189:in `get'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:64:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:39:in `block in process_and_follow_redirects'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:38:in `times'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:38:in `process_and_follow_redirects'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:32:in `follow'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/node.rb:60:in `click'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/element.rb:143:in `block in click'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/base.rb:85:in `synchronize'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/element.rb:143:in `click'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/actions.rb:43:in `click_link'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/session.rb:784:in `block (2 levels) in <class:Session>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/dsl.rb:50:in `block (2 levels) in <module:DSL>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/spec/features/authentication_spec.rb:8:in `block (2 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:350:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:507:in `block in run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:593:in `block in run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `reverse_each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:462:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:494:in `run_before_example'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:253:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:365:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:22:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:13:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:30:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `<main>'"]
11661
+ Completed 200 OK in 9ms (Views: 7.2ms | ActiveRecord: 0.2ms)
11662
+  (0.1ms) PRAGMA foreign_keys
11663
+  (0.1ms) PRAGMA foreign_keys = OFF
11664
+  (0.8ms) DELETE FROM "users";
11665
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11666
+  (0.6ms) DELETE FROM sqlite_sequence where name = 'users';
11667
+  (0.6ms) DELETE FROM "ar_internal_metadata";
11668
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11669
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11670
+  (0.0ms) PRAGMA foreign_keys = 1
11671
+  (0.0ms) begin transaction
11672
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "uriah@parisianleuschke.biz"], ["LIMIT", 1]]
11673
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token", "banned_at") VALUES (?, ?, ?) [["email", "uriah@parisianleuschke.biz"], ["remember_token", "8a0325384b59db827581df986dce23ac228df2ab"], ["banned_at", "2017-07-24 15:27:54.973064"]]
11674
+  (0.5ms) commit transaction
11675
+ Started GET "/login" for 127.0.0.1 at 2017-07-25 00:27:54 +0900
11676
+ Processing by Genkan::SessionsController#new as HTML
11677
+ Rendering genkan/sessions/new.html.erb within layouts/application
11678
+ Rendered genkan/sessions/new.html.erb within layouts/application (0.1ms)
11679
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::Authentication::Login::WhenUserIsBanned:Class ["/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/streaming.rb:217:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:52:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/renderers.rb:141:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:36:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `block in ms'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `ms'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:29:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:43:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/implicit_render.rb:33:in `default_render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:131:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rescue.rb:20:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/params_wrapper.rb:252:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:22:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:189:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:253:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:49:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:31:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:46:in `block in serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:832:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:407:in `call_app!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:265:in `mock_call!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:184:in `call!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:167:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/builder.rb:63:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/engine.rb:522:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/railtie.rb:185:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/railtie.rb:185:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/mapper.rb:46:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:46:in `block in serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:832:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/etag.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/conditional_get.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/head.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:232:in `context'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:226:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/cookies.rb:613:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:26:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:36:in `call_app'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `block in tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:26:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/remote_ip.rb:79:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/request_id.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/method_override.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/runtime.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/executor.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/static.rb:125:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/sendfile.rb:111:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/engine.rb:522:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:68:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:58:in `get'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/forwardable.rb:189:in `get'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:64:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:36:in `process_and_follow_redirects'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:22:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/driver.rb:44:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/session.rb:269:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/dsl.rb:50:in `block (2 levels) in <module:DSL>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/example/feature_example_group.rb:29:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/spec/features/authentication_spec.rb:7:in `block (2 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:350:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:507:in `block in run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:593:in `block in run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `reverse_each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:462:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:494:in `run_before_example'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:253:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:365:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:22:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:13:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:30:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `<main>'"]
11680
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL AND "users"."remember_token" IS NULL LIMIT ? [["LIMIT", 1]]
11681
+ Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.2ms)
11682
+ Started GET "/auth/google" for 127.0.0.1 at 2017-07-25 00:27:54 +0900
11683
+ Started GET "/auth/google/callback" for 127.0.0.1 at 2017-07-25 00:27:54 +0900
11684
+ Processing by Genkan::SessionsController#create as HTML
11685
+ Parameters: {"provider"=>"google"}
11686
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "uriah@parisianleuschke.biz"], ["LIMIT", 1]]
11687
+  (0.0ms) begin transaction
11688
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND ("users"."id" != ?) LIMIT ? [["email", "uriah@parisianleuschke.biz"], ["id", 1], ["LIMIT", 1]]
11689
+  (0.0ms) rollback transaction
11690
+ Redirected to http://www.example.com/login
11691
+ Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
11692
+ Started GET "/login" for 127.0.0.1 at 2017-07-25 00:27:54 +0900
11693
+ Processing by Genkan::SessionsController#new as HTML
11694
+ Rendering genkan/sessions/new.html.erb within layouts/application
11695
+ Rendered genkan/sessions/new.html.erb within layouts/application (0.1ms)
11696
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::Authentication::Login::WhenUserIsBanned:Class ["/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/streaming.rb:217:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:52:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/renderers.rb:141:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:36:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `block in ms'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `ms'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:29:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:43:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/implicit_render.rb:33:in `default_render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:131:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rescue.rb:20:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/params_wrapper.rb:252:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:22:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:189:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:253:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:49:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:31:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:46:in `block in serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:832:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:407:in `call_app!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:265:in `mock_call!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:184:in `call!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:167:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/builder.rb:63:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/engine.rb:522:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/railtie.rb:185:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/railtie.rb:185:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/mapper.rb:46:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:46:in `block in serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:832:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/etag.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/conditional_get.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/head.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:232:in `context'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:226:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/cookies.rb:613:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:26:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:36:in `call_app'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `block in tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:26:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/remote_ip.rb:79:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/request_id.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/method_override.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/runtime.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/executor.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/static.rb:125:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/sendfile.rb:111:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/engine.rb:522:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:68:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:58:in `get'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/forwardable.rb:189:in `get'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:64:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:39:in `block in process_and_follow_redirects'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:38:in `times'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:38:in `process_and_follow_redirects'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:32:in `follow'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/node.rb:60:in `click'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/element.rb:143:in `block in click'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/base.rb:85:in `synchronize'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/element.rb:143:in `click'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/actions.rb:43:in `click_link'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/session.rb:784:in `block (2 levels) in <class:Session>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/dsl.rb:50:in `block (2 levels) in <module:DSL>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/spec/features/authentication_spec.rb:8:in `block (2 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:350:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:507:in `block in run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:593:in `block in run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `reverse_each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:462:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:494:in `run_before_example'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:253:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:365:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:22:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:13:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:30:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `<main>'"]
11697
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL AND "users"."remember_token" IS NULL LIMIT ? [["LIMIT", 1]]
11698
+ Completed 200 OK in 12ms (Views: 12.0ms | ActiveRecord: 0.2ms)
11699
+  (0.1ms) PRAGMA foreign_keys
11700
+  (0.1ms) PRAGMA foreign_keys = OFF
11701
+  (1.0ms) DELETE FROM "users";
11702
+  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11703
+  (1.4ms) DELETE FROM sqlite_sequence where name = 'users';
11704
+  (1.5ms) DELETE FROM "ar_internal_metadata";
11705
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11706
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11707
+  (0.1ms) PRAGMA foreign_keys = 1
11708
+ Started GET "/login" for 127.0.0.1 at 2017-07-25 00:27:55 +0900
11709
+ Processing by Genkan::SessionsController#new as HTML
11710
+ Rendering genkan/sessions/new.html.erb within layouts/application
11711
+ Rendered genkan/sessions/new.html.erb within layouts/application (0.1ms)
11712
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::Authentication::SignUp:Class ["/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/streaming.rb:217:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:52:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/renderers.rb:141:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:36:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `block in ms'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `ms'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:29:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:43:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/implicit_render.rb:33:in `default_render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:131:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rescue.rb:20:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/params_wrapper.rb:252:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:22:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:189:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:253:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:49:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:31:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:46:in `block in serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:832:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:407:in `call_app!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:265:in `mock_call!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:184:in `call!'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/strategy.rb:167:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/omniauth-1.6.1/lib/omniauth/builder.rb:63:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/engine.rb:522:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/railtie.rb:185:in `public_send'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/railtie.rb:185:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/mapper.rb:46:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:46:in `block in serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:832:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/etag.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/conditional_get.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/head.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:232:in `context'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:226:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/cookies.rb:613:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:26:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:36:in `call_app'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `block in tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:26:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/remote_ip.rb:79:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/request_id.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/method_override.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/runtime.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/executor.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/static.rb:125:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/sendfile.rb:111:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/engine.rb:522:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:68:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:58:in `get'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/forwardable.rb:189:in `get'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:64:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:36:in `process_and_follow_redirects'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:22:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/driver.rb:44:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/session.rb:269:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/dsl.rb:50:in `block (2 levels) in <module:DSL>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/example/feature_example_group.rb:29:in `visit'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/spec/features/authentication_spec.rb:7:in `block (2 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:350:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:507:in `block in run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:593:in `block in run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `reverse_each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:462:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:494:in `run_before_example'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:253:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:365:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:22:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:13:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:30:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `<main>'"]
11713
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL AND "users"."remember_token" IS NULL LIMIT ? [["LIMIT", 1]]
11714
+ Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.2ms)
11715
+ Started GET "/auth/google" for 127.0.0.1 at 2017-07-25 00:27:55 +0900
11716
+ Started GET "/auth/google/callback" for 127.0.0.1 at 2017-07-25 00:27:55 +0900
11717
+ Processing by Genkan::SessionsController#create as HTML
11718
+ Parameters: {"provider"=>"google"}
11719
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lavon.harber@ratke.co"], ["LIMIT", 1]]
11720
+  (0.1ms) begin transaction
11721
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lavon.harber@ratke.co"], ["LIMIT", 1]]
11722
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "lavon.harber@ratke.co"], ["remember_token", "71389f0bc485e6428eab1eda36af2d5284e8dd2a"]]
11723
+  (0.6ms) commit transaction
11724
+  (0.0ms) begin transaction
11725
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? AND ("users"."id" != ?) LIMIT ? [["email", "lavon.harber@ratke.co"], ["id", 1], ["LIMIT", 1]]
11726
+ SQL (0.2ms) UPDATE "users" SET "logged_in_count" = ?, "last_logged_in_at" = ?, "accepted_at" = ? WHERE "users"."id" = ? [["logged_in_count", 1], ["last_logged_in_at", "2017-07-24 15:27:55.045071"], ["accepted_at", "2017-07-24 15:27:55.045371"], ["id", 1]]
11727
+  (0.5ms) commit transaction
11728
+ Redirected to http://www.example.com/
11729
+ Completed 302 Found in 6ms (ActiveRecord: 2.0ms)
11730
+ Started GET "/" for 127.0.0.1 at 2017-07-25 00:27:55 +0900
11731
+ Processing by WelcomeController#index as HTML
11732
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL AND "users"."remember_token" = ? LIMIT ? [["remember_token", "71389f0bc485e6428eab1eda36af2d5284e8dd2a"], ["LIMIT", 1]]
11733
+ Rendering welcome/index.html.erb within layouts/application
11734
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
11735
+ Could not log "render_template.action_view" event. NoMethodError: undefined method `render_views?' for RSpec::ExampleGroups::Authentication::SignUp:Class ["/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:732:in `method_missing'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/view_rendering.rb:71:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/subscriber.rb:99:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/log_subscriber.rb:83:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:102:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `block in finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/fanout.rb:46:in `finish'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:42:in `finish_with_state'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:27:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:51:in `block in render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:50:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/template_renderer.rb:14:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:42:in `render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/renderer/renderer.rb:23:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:103:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/streaming.rb:217:in `_render_template'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:83:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:52:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/renderers.rb:141:in `render_to_body'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/rendering.rb:24:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:36:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `block in ms'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/core_ext/benchmark.rb:12:in `ms'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:44:in `block in render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:29:in `cleanup_view_runtime'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:43:in `render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/implicit_render.rb:33:in `default_render'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:186:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rendering.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:131:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/rescue.rb:20:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `block in instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications/instrumenter.rb:21:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/notifications.rb:166:in `instrument'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/instrumentation.rb:30:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal/params_wrapper.rb:252:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activerecord-5.1.2/lib/active_record/railties/controller_runtime.rb:22:in `process_action'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/abstract_controller/base.rb:124:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionview-5.1.2/lib/action_view/rendering.rb:30:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:189:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_controller/metal.rb:253:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:49:in `dispatch'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:31:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:46:in `block in serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/journey/router.rb:33:in `serve'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/routing/route_set.rb:832:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/etag.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/conditional_get.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/head.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:232:in `context'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/session/abstract/id.rb:226:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/cookies.rb:613:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:26:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/callbacks.rb:97:in `run_callbacks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/callbacks.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:36:in `call_app'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `block in tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:26:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/tagged_logging.rb:69:in `tagged'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/rack/logger.rb:24:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/remote_ip.rb:79:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/request_id.rb:25:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/method_override.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/runtime.rb:22:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/activesupport-5.1.2/lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/executor.rb:12:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/actionpack-5.1.2/lib/action_dispatch/middleware/static.rb:125:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/sendfile.rb:111:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/railties-5.1.2/lib/rails/engine.rb:522:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:68:in `block in call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-2.0.3/lib/rack/urlmap.rb:53:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rack-test-0.6.3/lib/rack/test.rb:58:in `get'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/2.3.0/forwardable.rb:189:in `get'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:64:in `process'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:39:in `block in process_and_follow_redirects'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:38:in `times'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:38:in `process_and_follow_redirects'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/browser.rb:32:in `follow'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/rack_test/node.rb:60:in `click'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/element.rb:143:in `block in click'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/base.rb:85:in `synchronize'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/element.rb:143:in `click'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/node/actions.rb:43:in `click_link'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/session.rb:784:in `block (2 levels) in <class:Session>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/capybara-2.14.4/lib/capybara/dsl.rb:50:in `block (2 levels) in <module:DSL>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/spec/features/authentication_spec.rb:8:in `block (2 levels) in <top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:350:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:507:in `block in run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `run_owned_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:593:in `block in run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `reverse_each'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:592:in `run_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:462:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:494:in `run_before_example'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:253:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `block in with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `block in with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-rails-3.6.0/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:447:in `instance_exec'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:375:in `execute_with'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:342:in `call'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:464:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:457:in `with_around_example_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:500:in `with_around_and_singleton_context_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example.rb:251:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:627:in `block in run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:623:in `run_examples'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:589:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/gems/rspec-core-3.6.0/exe/rspec:4:in `<top (required)>'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `load'", "/Users/yhirano/dev/src/github.com/yhirano55/genkan/vendor/bundle/bin/rspec:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli/exec.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:365:in `exec'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor.rb:369:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:22:in `dispatch'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/vendor/thor/lib/thor/base.rb:444:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/cli.rb:13:in `start'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:30:in `block in <top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'", "/Users/yhirano/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.15.3/exe/bundle:22:in `<top (required)>'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `load'", "/Users/yhirano/.rbenv/versions/2.3.3/bin/bundle:22:in `<main>'"]
11736
+ Completed 200 OK in 15ms (Views: 11.4ms | ActiveRecord: 0.4ms)
11737
+  (0.1ms) PRAGMA foreign_keys
11738
+  (0.1ms) PRAGMA foreign_keys = OFF
11739
+  (1.0ms) DELETE FROM "users";
11740
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11741
+  (0.7ms) DELETE FROM sqlite_sequence where name = 'users';
11742
+  (0.7ms) DELETE FROM "ar_internal_metadata";
11743
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11744
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11745
+  (0.1ms) PRAGMA foreign_keys = 1
11746
+  (0.1ms) PRAGMA foreign_keys
11747
+  (0.1ms) PRAGMA foreign_keys = OFF
11748
+  (0.6ms) DELETE FROM "users";
11749
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11750
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11751
+  (0.6ms) DELETE FROM "ar_internal_metadata";
11752
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11753
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11754
+  (0.1ms) PRAGMA foreign_keys = 1
11755
+  (0.1ms) PRAGMA foreign_keys
11756
+  (0.1ms) PRAGMA foreign_keys = OFF
11757
+  (0.7ms) DELETE FROM "users";
11758
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11759
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11760
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11761
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11762
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11763
+  (0.1ms) PRAGMA foreign_keys = 1
11764
+  (0.1ms) PRAGMA foreign_keys
11765
+  (0.0ms) PRAGMA foreign_keys = OFF
11766
+  (0.5ms) DELETE FROM "users";
11767
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11768
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11769
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11770
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11771
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11772
+  (0.1ms) PRAGMA foreign_keys = 1
11773
+  (0.1ms) PRAGMA foreign_keys
11774
+  (0.1ms) PRAGMA foreign_keys = OFF
11775
+  (0.6ms) DELETE FROM "users";
11776
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11777
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11778
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11779
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11780
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11781
+  (0.1ms) PRAGMA foreign_keys = 1
11782
+  (0.1ms) PRAGMA foreign_keys
11783
+  (0.1ms) PRAGMA foreign_keys = OFF
11784
+  (0.6ms) DELETE FROM "users";
11785
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11786
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11787
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11788
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11789
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11790
+  (0.0ms) PRAGMA foreign_keys = 1
11791
+  (0.1ms) PRAGMA foreign_keys
11792
+  (0.1ms) PRAGMA foreign_keys = OFF
11793
+  (0.6ms) DELETE FROM "users";
11794
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11795
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11796
+  (0.8ms) DELETE FROM "ar_internal_metadata";
11797
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11798
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11799
+  (0.1ms) PRAGMA foreign_keys = 1
11800
+  (0.1ms) PRAGMA foreign_keys
11801
+  (0.1ms) PRAGMA foreign_keys = OFF
11802
+  (1.3ms) DELETE FROM "users";
11803
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11804
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'users';
11805
+  (1.1ms) DELETE FROM "ar_internal_metadata";
11806
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11807
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11808
+  (0.0ms) PRAGMA foreign_keys = 1
11809
+  (0.1ms) PRAGMA foreign_keys
11810
+  (0.1ms) PRAGMA foreign_keys = OFF
11811
+  (0.7ms) DELETE FROM "users";
11812
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11813
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11814
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11815
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11816
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11817
+  (0.1ms) PRAGMA foreign_keys = 1
11818
+  (0.3ms) PRAGMA foreign_keys
11819
+  (0.2ms) PRAGMA foreign_keys = OFF
11820
+  (1.5ms) DELETE FROM "users";
11821
+  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11822
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'users';
11823
+  (0.9ms) DELETE FROM "ar_internal_metadata";
11824
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11825
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11826
+  (0.0ms) PRAGMA foreign_keys = 1
11827
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "enola_schaden@spinkashields.io"], ["LIMIT", 1]]
11828
+  (0.1ms) PRAGMA foreign_keys
11829
+  (0.0ms) PRAGMA foreign_keys = OFF
11830
+  (0.6ms) DELETE FROM "users";
11831
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11832
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11833
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11834
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11835
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11836
+  (0.0ms) PRAGMA foreign_keys = 1
11837
+  (0.0ms) begin transaction
11838
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "juvenal@gibson.info"], ["LIMIT", 1]]
11839
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "juvenal@gibson.info"], ["remember_token", "90f127c5cd3c20aed48c2ef2e8726fea796f052c"]]
11840
+  (0.4ms) commit transaction
11841
+  (0.0ms) PRAGMA foreign_keys
11842
+  (0.1ms) PRAGMA foreign_keys = OFF
11843
+  (0.6ms) DELETE FROM "users";
11844
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11845
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'users';
11846
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11847
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11848
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11849
+  (0.0ms) PRAGMA foreign_keys = 1
11850
+  (0.1ms) begin transaction
11851
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marietta.nitzsche@predovic.com"], ["LIMIT", 1]]
11852
+  (0.1ms) rollback transaction
11853
+  (0.0ms) PRAGMA foreign_keys
11854
+  (0.0ms) PRAGMA foreign_keys = OFF
11855
+  (0.6ms) DELETE FROM "users";
11856
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11857
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11858
+  (0.6ms) DELETE FROM "ar_internal_metadata";
11859
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11860
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11861
+  (0.0ms) PRAGMA foreign_keys = 1
11862
+  (0.0ms) begin transaction
11863
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jane@farrellhand.io"], ["LIMIT", 1]]
11864
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "logged_in_count", "last_logged_in_at", "accepted_at") VALUES (?, ?, ?, ?, ?) [["email", "jane@farrellhand.io"], ["remember_token", "2b9ee655900583175370a4195ed5f5ea2046f377"], ["logged_in_count", 14], ["last_logged_in_at", "2017-07-24 15:27:55.141820"], ["accepted_at", "2017-07-24 15:27:55.141936"]]
11865
+  (0.5ms) commit transaction
11866
+  (0.1ms) PRAGMA foreign_keys
11867
+  (0.0ms) PRAGMA foreign_keys = OFF
11868
+  (0.6ms) DELETE FROM "users";
11869
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11870
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'users';
11871
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11872
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11873
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11874
+  (0.0ms) PRAGMA foreign_keys = 1
11875
+  (0.1ms) begin transaction
11876
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lola_runolfon@gottliebwunsch.com"], ["LIMIT", 1]]
11877
+ SQL (0.4ms) INSERT INTO "users" ("email", "remember_token", "logged_in_count", "last_logged_in_at", "accepted_at") VALUES (?, ?, ?, ?, ?) [["email", "lola_runolfon@gottliebwunsch.com"], ["remember_token", "060c68a1c6da4ad79d88dbf22d87e96d6373d3df"], ["logged_in_count", 5], ["last_logged_in_at", "2017-07-24 15:27:55.147855"], ["accepted_at", "2017-07-24 15:27:55.148005"]]
11878
+  (0.8ms) commit transaction
11879
+  (0.1ms) PRAGMA foreign_keys
11880
+  (0.1ms) PRAGMA foreign_keys = OFF
11881
+  (0.8ms) DELETE FROM "users";
11882
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11883
+  (0.6ms) DELETE FROM sqlite_sequence where name = 'users';
11884
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11885
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11886
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11887
+  (0.1ms) PRAGMA foreign_keys = 1
11888
+  (0.1ms) PRAGMA foreign_keys
11889
+  (0.1ms) PRAGMA foreign_keys = OFF
11890
+  (0.6ms) DELETE FROM "users";
11891
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11892
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11893
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11894
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11895
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11896
+  (0.1ms) PRAGMA foreign_keys = 1
11897
+  (0.2ms) PRAGMA foreign_keys
11898
+  (0.2ms) PRAGMA foreign_keys = OFF
11899
+  (1.2ms) DELETE FROM "users";
11900
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11901
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11902
+  (0.8ms) DELETE FROM "ar_internal_metadata";
11903
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11904
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11905
+  (0.0ms) PRAGMA foreign_keys = 1
11906
+  (0.1ms) PRAGMA foreign_keys
11907
+  (0.0ms) PRAGMA foreign_keys = OFF
11908
+  (0.6ms) DELETE FROM "users";
11909
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11910
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11911
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11912
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11913
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11914
+  (0.0ms) PRAGMA foreign_keys = 1
11915
+  (0.0ms) begin transaction
11916
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "stan@borerbeahan.name"], ["LIMIT", 1]]
11917
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "stan@borerbeahan.name"], ["remember_token", "219f50a3993e719fd5bfea8b04d667d2bf853f1a"], ["accepted_at", "2017-07-24 15:27:55.172229"]]
11918
+  (0.4ms) commit transaction
11919
+  (0.0ms) PRAGMA foreign_keys
11920
+  (0.0ms) PRAGMA foreign_keys = OFF
11921
+  (0.5ms) DELETE FROM "users";
11922
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11923
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'users';
11924
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11925
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11926
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11927
+  (0.0ms) PRAGMA foreign_keys = 1
11928
+  (0.0ms) begin transaction
11929
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "cleve_reynolds@yundt.io"], ["LIMIT", 1]]
11930
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "cleve_reynolds@yundt.io"], ["remember_token", "bc751eb715454c0e66f42516b1bd8b969474c46f"], ["accepted_at", "2017-07-24 15:27:55.177751"]]
11931
+  (0.4ms) commit transaction
11932
+  (0.0ms) PRAGMA foreign_keys
11933
+  (0.0ms) PRAGMA foreign_keys = OFF
11934
+  (0.5ms) DELETE FROM "users";
11935
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11936
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'users';
11937
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11938
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11939
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11940
+  (0.0ms) PRAGMA foreign_keys = 1
11941
+  (0.0ms) begin transaction
11942
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "titus_lehner@kshlerin.biz"], ["LIMIT", 1]]
11943
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "banned_at") VALUES (?, ?, ?) [["email", "titus_lehner@kshlerin.biz"], ["remember_token", "2604f1e1a85f26861c6461f87a66b8fba605ddef"], ["banned_at", "2017-07-24 15:27:55.183262"]]
11944
+  (0.5ms) commit transaction
11945
+  (0.1ms) PRAGMA foreign_keys
11946
+  (0.0ms) PRAGMA foreign_keys = OFF
11947
+  (0.5ms) DELETE FROM "users";
11948
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11949
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'users';
11950
+  (0.4ms) DELETE FROM "ar_internal_metadata";
11951
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11952
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11953
+  (0.0ms) PRAGMA foreign_keys = 1
11954
+  (0.0ms) begin transaction
11955
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "darron@strosin.io"], ["LIMIT", 1]]
11956
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "banned_at") VALUES (?, ?, ?) [["email", "darron@strosin.io"], ["remember_token", "debf4a64061993e6ca1fb60c0e916b01aee20fce"], ["banned_at", "2017-07-24 15:27:55.190741"]]
11957
+  (0.4ms) commit transaction
11958
+  (0.0ms) PRAGMA foreign_keys
11959
+  (0.0ms) PRAGMA foreign_keys = OFF
11960
+  (0.5ms) DELETE FROM "users";
11961
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11962
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'users';
11963
+  (0.5ms) DELETE FROM "ar_internal_metadata";
11964
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11965
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11966
+  (0.0ms) PRAGMA foreign_keys = 1
11967
+  (0.1ms) PRAGMA foreign_keys
11968
+  (0.0ms) PRAGMA foreign_keys = OFF
11969
+  (0.5ms) DELETE FROM "users";
11970
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11971
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
11972
+  (0.6ms) DELETE FROM "ar_internal_metadata";
11973
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
11974
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
11975
+  (0.0ms) PRAGMA foreign_keys = 1
11976
+  (0.1ms) begin transaction
11977
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dario@olson.name"], ["LIMIT", 1]]
11978
+ SQL (0.5ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "dario@olson.name"], ["remember_token", "ba9554c70bc2193fb213fbbf7af9e50c8effd9e9"], ["accepted_at", "2017-07-24 15:27:55.200714"]]
11979
+  (0.6ms) commit transaction
11980
+  (0.0ms) begin transaction
11981
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ena@ohara.net"], ["LIMIT", 1]]
11982
+ SQL (0.4ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "ena@ohara.net"], ["remember_token", "c1d73111538d9ba60c323845cd261cae295a92bc"]]
11983
+  (0.5ms) commit transaction
11984
+  (0.0ms) begin transaction
11985
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "esteban_bradtke@davis.net"], ["LIMIT", 1]]
11986
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token", "banned_at") VALUES (?, ?, ?) [["email", "esteban_bradtke@davis.net"], ["remember_token", "f314fa4c3821f2015e810b96f72de3f4b897c23d"], ["banned_at", "2017-07-24 15:27:55.209367"]]
11987
+  (0.5ms) commit transaction
11988
+  (0.1ms) begin transaction
11989
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "triston_dare@hudsonkulas.net"], ["LIMIT", 1]]
11990
+ SQL (0.6ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "triston_dare@hudsonkulas.net"], ["remember_token", "beed66de5d14c7eeb81c707b5f5269c61e6b468b"]]
11991
+  (0.9ms) commit transaction
11992
+  (0.0ms) begin transaction
11993
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gage@graham.io"], ["LIMIT", 1]]
11994
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "gage@graham.io"], ["remember_token", "71160f17176f559bf5a8b83e4481767f187b8cf1"], ["accepted_at", "2017-07-24 15:27:55.218566"]]
11995
+  (0.5ms) commit transaction
11996
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL)
11997
+  (0.1ms) PRAGMA foreign_keys
11998
+  (0.1ms) PRAGMA foreign_keys = OFF
11999
+  (0.7ms) DELETE FROM "users";
12000
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12001
+  (0.6ms) DELETE FROM sqlite_sequence where name = 'users';
12002
+  (0.5ms) DELETE FROM "ar_internal_metadata";
12003
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12004
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12005
+  (0.0ms) PRAGMA foreign_keys = 1
12006
+  (0.0ms) begin transaction
12007
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "norval@schultz.biz"], ["LIMIT", 1]]
12008
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "norval@schultz.biz"], ["remember_token", "925676462c838dbb801cba02127ad4d2ac9e6728"], ["accepted_at", "2017-07-24 15:27:55.227588"]]
12009
+  (0.5ms) commit transaction
12010
+  (0.0ms) begin transaction
12011
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "brayan_erdman@schmitthuel.biz"], ["LIMIT", 1]]
12012
+ SQL (2.3ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "brayan_erdman@schmitthuel.biz"], ["remember_token", "1cd56f2ab2b2929c8df0fbe6802d0146e544e6a3"]]
12013
+  (0.5ms) commit transaction
12014
+  (0.0ms) begin transaction
12015
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "presley@hegmannlueilwitz.co"], ["LIMIT", 1]]
12016
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "banned_at") VALUES (?, ?, ?) [["email", "presley@hegmannlueilwitz.co"], ["remember_token", "41944e60ff3fd81d83b41a213b86cb025757da91"], ["banned_at", "2017-07-24 15:27:55.235216"]]
12017
+  (0.4ms) commit transaction
12018
+  (0.0ms) begin transaction
12019
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jewell@stromankiehn.io"], ["LIMIT", 1]]
12020
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "jewell@stromankiehn.io"], ["remember_token", "3b6a23211bf396ff4555fca916754bfba03f6619"]]
12021
+  (0.4ms) commit transaction
12022
+  (0.0ms) begin transaction
12023
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "dasia@gleichner.net"], ["LIMIT", 1]]
12024
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "dasia@gleichner.net"], ["remember_token", "416fdc4f1d223aa21d8954304befd96e83c5b84f"], ["accepted_at", "2017-07-24 15:27:55.239606"]]
12025
+  (0.4ms) commit transaction
12026
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL)
12027
+  (0.0ms) PRAGMA foreign_keys
12028
+  (0.0ms) PRAGMA foreign_keys = OFF
12029
+  (0.5ms) DELETE FROM "users";
12030
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12031
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'users';
12032
+  (0.6ms) DELETE FROM "ar_internal_metadata";
12033
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12034
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12035
+  (0.1ms) PRAGMA foreign_keys = 1
12036
+  (0.0ms) begin transaction
12037
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jayde@aufderhar.net"], ["LIMIT", 1]]
12038
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "jayde@aufderhar.net"], ["remember_token", "2f08de6aa30120fd9fd03d686b238eae443455ac"], ["accepted_at", "2017-07-24 15:27:55.246199"]]
12039
+  (0.7ms) commit transaction
12040
+  (0.1ms) begin transaction
12041
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "gladys.wolff@auer.name"], ["LIMIT", 1]]
12042
+ SQL (0.4ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "gladys.wolff@auer.name"], ["remember_token", "a430359213ff2bd5153893c379fb0defcca10bec"]]
12043
+  (0.7ms) commit transaction
12044
+  (0.1ms) begin transaction
12045
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sterling.feeney@herzog.io"], ["LIMIT", 1]]
12046
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token", "banned_at") VALUES (?, ?, ?) [["email", "sterling.feeney@herzog.io"], ["remember_token", "8db46441f8f2fb0d35b8ad78d5f63c4df45f9833"], ["banned_at", "2017-07-24 15:27:55.256285"]]
12047
+  (0.6ms) commit transaction
12048
+  (0.0ms) begin transaction
12049
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "braden.denesik@harbermclaughlin.name"], ["LIMIT", 1]]
12050
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "braden.denesik@harbermclaughlin.name"], ["remember_token", "cafe7fc01253ef70b207f507607bedc76ad8f5ff"]]
12051
+  (0.5ms) commit transaction
12052
+  (0.2ms) begin transaction
12053
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mark_price@johnson.name"], ["LIMIT", 1]]
12054
+ SQL (0.8ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "mark_price@johnson.name"], ["remember_token", "b0b67a3bc7ffd96c54a110f87c400851ce55703b"], ["accepted_at", "2017-07-24 15:27:55.263224"]]
12055
+  (0.9ms) commit transaction
12056
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL)
12057
+  (0.1ms) PRAGMA foreign_keys
12058
+  (0.1ms) PRAGMA foreign_keys = OFF
12059
+  (0.7ms) DELETE FROM "users";
12060
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12061
+  (0.6ms) DELETE FROM sqlite_sequence where name = 'users';
12062
+  (0.6ms) DELETE FROM "ar_internal_metadata";
12063
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12064
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12065
+  (0.0ms) PRAGMA foreign_keys = 1
12066
+  (0.0ms) begin transaction
12067
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "josephine@kunze.org"], ["LIMIT", 1]]
12068
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "josephine@kunze.org"], ["remember_token", "0b003c3006be877081d91bde9367f858b43e5deb"], ["accepted_at", "2017-07-24 15:27:55.274171"]]
12069
+  (0.5ms) commit transaction
12070
+  (0.0ms) begin transaction
12071
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "wayne_ziemann@kaulkegraham.net"], ["LIMIT", 1]]
12072
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "wayne_ziemann@kaulkegraham.net"], ["remember_token", "48e98a63ebdaa4f49264246d670aeaa849833fde"]]
12073
+  (0.5ms) commit transaction
12074
+  (0.0ms) begin transaction
12075
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "merle_williamson@rennerparker.info"], ["LIMIT", 1]]
12076
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "banned_at") VALUES (?, ?, ?) [["email", "merle_williamson@rennerparker.info"], ["remember_token", "d48b53a1b5fa452a19c640a04e046bd9d2d62fd2"], ["banned_at", "2017-07-24 15:27:55.280100"]]
12077
+  (0.4ms) commit transaction
12078
+  (0.1ms) begin transaction
12079
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jefferey.schuppe@aufderhar.co"], ["LIMIT", 1]]
12080
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "jefferey.schuppe@aufderhar.co"], ["remember_token", "92f1e85ec8d2b13dd02d11b8dbff41847d770c30"]]
12081
+  (0.5ms) commit transaction
12082
+  (0.0ms) begin transaction
12083
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "cleta@swaniawski.org"], ["LIMIT", 1]]
12084
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "cleta@swaniawski.org"], ["remember_token", "9ab2ae2e705ea327bdf10b2ece79c41910422672"], ["accepted_at", "2017-07-24 15:27:55.288699"]]
12085
+  (0.4ms) commit transaction
12086
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL
12087
+  (0.0ms) PRAGMA foreign_keys
12088
+  (0.0ms) PRAGMA foreign_keys = OFF
12089
+  (0.5ms) DELETE FROM "users";
12090
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12091
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'users';
12092
+  (0.5ms) DELETE FROM "ar_internal_metadata";
12093
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12094
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12095
+  (0.0ms) PRAGMA foreign_keys = 1
12096
+  (0.0ms) begin transaction
12097
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "marcella@dareschumm.biz"], ["LIMIT", 1]]
12098
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "marcella@dareschumm.biz"], ["remember_token", "ee9cb5021f6811cf316daf69a4348ff3314a14ed"], ["accepted_at", "2017-07-24 15:27:55.294991"]]
12099
+  (0.5ms) commit transaction
12100
+  (0.0ms) begin transaction
12101
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "adelbert.cronin@robertchmeler.com"], ["LIMIT", 1]]
12102
+ SQL (0.4ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "adelbert.cronin@robertchmeler.com"], ["remember_token", "03d38beac96aba376362330b55a269c566aa8806"]]
12103
+  (0.9ms) commit transaction
12104
+  (0.1ms) begin transaction
12105
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "astrid@pacocha.info"], ["LIMIT", 1]]
12106
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token", "banned_at") VALUES (?, ?, ?) [["email", "astrid@pacocha.info"], ["remember_token", "98d559e625cbe0ad205570badf805d41f9cd422e"], ["banned_at", "2017-07-24 15:27:55.301733"]]
12107
+  (0.6ms) commit transaction
12108
+  (0.0ms) begin transaction
12109
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "tad@schultzgleason.com"], ["LIMIT", 1]]
12110
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "tad@schultzgleason.com"], ["remember_token", "5d2f46ed26aed15bb4988ca0bac17a807fbe72b2"]]
12111
+  (0.6ms) commit transaction
12112
+  (0.1ms) begin transaction
12113
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jamaal@gulgowski.com"], ["LIMIT", 1]]
12114
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "jamaal@gulgowski.com"], ["remember_token", "9c47353f0f7281d028b4417f1431401546c17b45"], ["accepted_at", "2017-07-24 15:27:55.308943"]]
12115
+  (0.6ms) commit transaction
12116
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL
12117
+  (0.2ms) PRAGMA foreign_keys
12118
+  (0.1ms) PRAGMA foreign_keys = OFF
12119
+  (1.1ms) DELETE FROM "users";
12120
+  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12121
+  (1.0ms) DELETE FROM sqlite_sequence where name = 'users';
12122
+  (0.5ms) DELETE FROM "ar_internal_metadata";
12123
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12124
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12125
+  (0.0ms) PRAGMA foreign_keys = 1
12126
+  (0.0ms) begin transaction
12127
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "vincent_witting@padberghaley.net"], ["LIMIT", 1]]
12128
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "vincent_witting@padberghaley.net"], ["remember_token", "737c4676156a24eac923e10872201a2455c16a6f"], ["accepted_at", "2017-07-24 15:27:55.319515"]]
12129
+  (0.4ms) commit transaction
12130
+  (0.0ms) begin transaction
12131
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "otis@rippin.biz"], ["LIMIT", 1]]
12132
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "otis@rippin.biz"], ["remember_token", "eeb97fe121487a382447e1806f499773bd5795c0"]]
12133
+  (0.4ms) commit transaction
12134
+  (0.0ms) begin transaction
12135
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "lilian@hayes.biz"], ["LIMIT", 1]]
12136
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "banned_at") VALUES (?, ?, ?) [["email", "lilian@hayes.biz"], ["remember_token", "5d1e2d282e64654e911dd7c71a6ea73ff3c6d322"], ["banned_at", "2017-07-24 15:27:55.324929"]]
12137
+  (0.4ms) commit transaction
12138
+  (0.0ms) begin transaction
12139
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "annabell.pfeffer@lowe.name"], ["LIMIT", 1]]
12140
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "annabell.pfeffer@lowe.name"], ["remember_token", "7b75ac29e7eaa3200dd431adc468c0045a886dc7"]]
12141
+  (0.4ms) commit transaction
12142
+  (0.0ms) begin transaction
12143
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "brandy.marquardt@trantowlesch.org"], ["LIMIT", 1]]
12144
+ SQL (2.3ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "brandy.marquardt@trantowlesch.org"], ["remember_token", "4dc0dd44c0a43df7b350331e323e0bc1b20a7af7"], ["accepted_at", "2017-07-24 15:27:55.329915"]]
12145
+  (0.5ms) commit transaction
12146
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL
12147
+  (0.0ms) PRAGMA foreign_keys
12148
+  (0.0ms) PRAGMA foreign_keys = OFF
12149
+  (0.6ms) DELETE FROM "users";
12150
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12151
+  (0.7ms) DELETE FROM sqlite_sequence where name = 'users';
12152
+  (0.6ms) DELETE FROM "ar_internal_metadata";
12153
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12154
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12155
+  (0.1ms) PRAGMA foreign_keys = 1
12156
+  (0.0ms) begin transaction
12157
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ismael@witting.io"], ["LIMIT", 1]]
12158
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "ismael@witting.io"], ["remember_token", "9cedd671a630b2b22ff46f5be5db1b703d0e23e9"], ["accepted_at", "2017-07-24 15:27:55.339641"]]
12159
+  (0.5ms) commit transaction
12160
+  (0.0ms) begin transaction
12161
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "eileen@dietrich.net"], ["LIMIT", 1]]
12162
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "eileen@dietrich.net"], ["remember_token", "ea9f61fb70e021807e4fd95635d4e4aaa17614e9"]]
12163
+  (0.5ms) commit transaction
12164
+  (0.0ms) begin transaction
12165
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "selena@feeney.org"], ["LIMIT", 1]]
12166
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token", "banned_at") VALUES (?, ?, ?) [["email", "selena@feeney.org"], ["remember_token", "1973ab889197f484a290cf6ce35159487e5a50ee"], ["banned_at", "2017-07-24 15:27:55.345967"]]
12167
+  (0.9ms) commit transaction
12168
+  (0.1ms) begin transaction
12169
+ User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "werner.olson@barton.biz"], ["LIMIT", 1]]
12170
+ SQL (0.5ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "werner.olson@barton.biz"], ["remember_token", "c780880cba19b2afe3b7e3992fa4c23ee6e34fe7"]]
12171
+  (0.7ms) commit transaction
12172
+  (0.1ms) begin transaction
12173
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "edwardo_bahringer@romaguera.biz"], ["LIMIT", 1]]
12174
+ SQL (0.4ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "edwardo_bahringer@romaguera.biz"], ["remember_token", "c661bd58ea97046d5a898e9feaa71b214005c5f8"], ["accepted_at", "2017-07-24 15:27:55.356378"]]
12175
+  (0.6ms) commit transaction
12176
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."banned_at" IS NULL
12177
+  (0.1ms) PRAGMA foreign_keys
12178
+  (0.1ms) PRAGMA foreign_keys = OFF
12179
+  (1.8ms) DELETE FROM "users";
12180
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12181
+  (1.4ms) DELETE FROM sqlite_sequence where name = 'users';
12182
+  (1.2ms) DELETE FROM "ar_internal_metadata";
12183
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12184
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12185
+  (0.0ms) PRAGMA foreign_keys = 1
12186
+  (0.1ms) begin transaction
12187
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shyanne_mcglynn@jacobsdenesik.name"], ["LIMIT", 1]]
12188
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "shyanne_mcglynn@jacobsdenesik.name"], ["remember_token", "0be75ca57c6050fd61cb9903588e59b7a0a480fd"], ["accepted_at", "2017-07-24 15:27:55.370044"]]
12189
+  (0.5ms) commit transaction
12190
+  (0.1ms) begin transaction
12191
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "israel_mills@connelly.co"], ["LIMIT", 1]]
12192
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "israel_mills@connelly.co"], ["remember_token", "a1913df17bcad7699aa6d770d3d92028aeef235e"]]
12193
+  (0.5ms) commit transaction
12194
+  (0.1ms) begin transaction
12195
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kitty@greenschaden.name"], ["LIMIT", 1]]
12196
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "banned_at") VALUES (?, ?, ?) [["email", "kitty@greenschaden.name"], ["remember_token", "1975fc6da655ab852b459df964322158365b4bc9"], ["banned_at", "2017-07-24 15:27:55.376481"]]
12197
+  (0.5ms) commit transaction
12198
+  (0.0ms) begin transaction
12199
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "emma.shields@mcdermott.com"], ["LIMIT", 1]]
12200
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "emma.shields@mcdermott.com"], ["remember_token", "029bc5b3bdc7f5177a2a450545750b2100ce953e"]]
12201
+  (0.5ms) commit transaction
12202
+  (0.1ms) begin transaction
12203
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "felix.orn@brakus.name"], ["LIMIT", 1]]
12204
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "felix.orn@brakus.name"], ["remember_token", "3b866ce759162ed6f7e2bf5fcaed97fa4dc332ce"], ["accepted_at", "2017-07-24 15:27:55.382153"]]
12205
+  (0.5ms) commit transaction
12206
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."banned_at" IS NULL
12207
+  (0.0ms) PRAGMA foreign_keys
12208
+  (0.0ms) PRAGMA foreign_keys = OFF
12209
+  (0.6ms) DELETE FROM "users";
12210
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12211
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'users';
12212
+  (0.5ms) DELETE FROM "ar_internal_metadata";
12213
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12214
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12215
+  (0.0ms) PRAGMA foreign_keys = 1
12216
+  (0.0ms) begin transaction
12217
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jamie@okeefe.biz"], ["LIMIT", 1]]
12218
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "jamie@okeefe.biz"], ["remember_token", "e3f80d1c6baffb8dadc5a16a6ad18c1ea8d5d29a"], ["accepted_at", "2017-07-24 15:27:55.391336"]]
12219
+  (0.4ms) commit transaction
12220
+  (0.0ms) begin transaction
12221
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "maymie_roob@reichel.io"], ["LIMIT", 1]]
12222
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "maymie_roob@reichel.io"], ["remember_token", "5606e509b3af916350b4456e650c951cdde57563"]]
12223
+  (0.4ms) commit transaction
12224
+  (0.0ms) begin transaction
12225
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ken@ondricka.org"], ["LIMIT", 1]]
12226
+ SQL (0.2ms) INSERT INTO "users" ("email", "remember_token", "banned_at") VALUES (?, ?, ?) [["email", "ken@ondricka.org"], ["remember_token", "d5db4d9d3c7c69c9c9ad082ca8aae38350d5b7bb"], ["banned_at", "2017-07-24 15:27:55.396072"]]
12227
+  (0.4ms) commit transaction
12228
+  (0.1ms) begin transaction
12229
+ User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "king.hansen@donnelly.io"], ["LIMIT", 1]]
12230
+ SQL (0.5ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "king.hansen@donnelly.io"], ["remember_token", "13b6b88b0fcf82681858fc19c37c5b814004cfb1"]]
12231
+  (1.0ms) commit transaction
12232
+  (0.0ms) begin transaction
12233
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "myrtice@bogisichschaden.org"], ["LIMIT", 1]]
12234
+ SQL (0.4ms) INSERT INTO "users" ("email", "remember_token", "accepted_at") VALUES (?, ?, ?) [["email", "myrtice@bogisichschaden.org"], ["remember_token", "bec6bc3234569422f75b7149f1c355de931b7255"], ["accepted_at", "2017-07-24 15:27:55.404769"]]
12235
+  (0.7ms) commit transaction
12236
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."banned_at" IS NULL
12237
+  (0.1ms) PRAGMA foreign_keys
12238
+  (0.1ms) PRAGMA foreign_keys = OFF
12239
+  (0.8ms) DELETE FROM "users";
12240
+  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12241
+  (0.8ms) DELETE FROM sqlite_sequence where name = 'users';
12242
+  (0.9ms) DELETE FROM "ar_internal_metadata";
12243
+  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12244
+  (0.3ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12245
+  (0.2ms) PRAGMA foreign_keys = 1
12246
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "jee.mante@kaulke.org"], ["LIMIT", 1]]
12247
+  (0.1ms) PRAGMA foreign_keys
12248
+  (0.1ms) PRAGMA foreign_keys = OFF
12249
+  (0.8ms) DELETE FROM "users";
12250
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12251
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
12252
+  (0.7ms) DELETE FROM "ar_internal_metadata";
12253
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12254
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12255
+  (0.0ms) PRAGMA foreign_keys = 1
12256
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "richard.kulas@kovacek.name"], ["LIMIT", 1]]
12257
+  (0.0ms) PRAGMA foreign_keys
12258
+  (0.0ms) PRAGMA foreign_keys = OFF
12259
+  (0.6ms) DELETE FROM "users";
12260
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12261
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
12262
+  (0.6ms) DELETE FROM "ar_internal_metadata";
12263
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12264
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12265
+  (0.0ms) PRAGMA foreign_keys = 1
12266
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "kaci_schulist@collierbecker.net"], ["LIMIT", 1]]
12267
+  (0.0ms) PRAGMA foreign_keys
12268
+  (0.0ms) PRAGMA foreign_keys = OFF
12269
+  (0.5ms) DELETE FROM "users";
12270
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12271
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
12272
+  (2.5ms) DELETE FROM "ar_internal_metadata";
12273
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12274
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12275
+  (0.1ms) PRAGMA foreign_keys = 1
12276
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "brad@prohaska.org"], ["LIMIT", 1]]
12277
+  (0.1ms) PRAGMA foreign_keys
12278
+  (0.1ms) PRAGMA foreign_keys = OFF
12279
+  (0.7ms) DELETE FROM "users";
12280
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12281
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
12282
+  (0.6ms) DELETE FROM "ar_internal_metadata";
12283
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12284
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12285
+  (0.0ms) PRAGMA foreign_keys = 1
12286
+  (0.0ms) begin transaction
12287
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "oceane_rutherford@eichmanncrona.biz"], ["LIMIT", 1]]
12288
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "oceane_rutherford@eichmanncrona.biz"], ["remember_token", "0b1f56b2cbc9e082cb4fbf598c218a07d14867b2"]]
12289
+  (0.5ms) commit transaction
12290
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]]
12291
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "oceane_rutherford@eichmanncrona.biz"], ["LIMIT", 1]]
12292
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "OCEANE_RUTHERFORD@EICHMANNCRONA.BIZ"], ["LIMIT", 1]]
12293
+  (0.1ms) PRAGMA foreign_keys
12294
+  (0.1ms) PRAGMA foreign_keys = OFF
12295
+  (1.5ms) DELETE FROM "users";
12296
+  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12297
+  (0.9ms) DELETE FROM sqlite_sequence where name = 'users';
12298
+  (0.9ms) DELETE FROM "ar_internal_metadata";
12299
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12300
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12301
+  (0.1ms) PRAGMA foreign_keys = 1
12302
+  (0.1ms) begin transaction
12303
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "ocie.yundt@goodwin.co"], ["LIMIT", 1]]
12304
+ SQL (0.5ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "ocie.yundt@goodwin.co"], ["remember_token", "3f4f5473b28f901ecbbdbf2bd711aa5ab9f2498d"]]
12305
+  (0.8ms) commit transaction
12306
+ User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]]
12307
+  (0.2ms) PRAGMA foreign_keys
12308
+  (0.3ms) PRAGMA foreign_keys = OFF
12309
+  (0.9ms) DELETE FROM "users";
12310
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12311
+  (0.6ms) DELETE FROM sqlite_sequence where name = 'users';
12312
+  (0.5ms) DELETE FROM "ar_internal_metadata";
12313
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12314
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12315
+  (0.0ms) PRAGMA foreign_keys = 1
12316
+  (0.1ms) PRAGMA foreign_keys
12317
+  (0.0ms) PRAGMA foreign_keys = OFF
12318
+  (0.6ms) DELETE FROM "users";
12319
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12320
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
12321
+  (0.6ms) DELETE FROM "ar_internal_metadata";
12322
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12323
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12324
+  (0.1ms) PRAGMA foreign_keys = 1
12325
+  (0.1ms) PRAGMA foreign_keys
12326
+  (0.1ms) PRAGMA foreign_keys = OFF
12327
+  (0.8ms) DELETE FROM "users";
12328
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12329
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
12330
+  (0.7ms) DELETE FROM "ar_internal_metadata";
12331
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12332
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12333
+  (0.0ms) PRAGMA foreign_keys = 1
12334
+ Processing by WelcomeController#index as HTML
12335
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL AND "users"."remember_token" IS NULL LIMIT ? [["LIMIT", 1]]
12336
+ Redirected to http://test.host/login
12337
+ Filter chain halted as :authenticate rendered or redirected
12338
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
12339
+  (0.1ms) PRAGMA foreign_keys
12340
+  (0.0ms) PRAGMA foreign_keys = OFF
12341
+  (0.7ms) DELETE FROM "users";
12342
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12343
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
12344
+  (0.6ms) DELETE FROM "ar_internal_metadata";
12345
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12346
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12347
+  (0.1ms) PRAGMA foreign_keys = 1
12348
+ Processing by WelcomeController#index as HTML
12349
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."accepted_at" IS NOT NULL) AND "users"."banned_at" IS NULL AND "users"."remember_token" IS NULL LIMIT ? [["LIMIT", 1]]
12350
+ Redirected to http://test.host/login
12351
+ Filter chain halted as :authenticate rendered or redirected
12352
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
12353
+  (0.1ms) PRAGMA foreign_keys
12354
+  (0.1ms) PRAGMA foreign_keys = OFF
12355
+  (0.6ms) DELETE FROM "users";
12356
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12357
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
12358
+  (0.6ms) DELETE FROM "ar_internal_metadata";
12359
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12360
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12361
+  (0.1ms) PRAGMA foreign_keys = 1
12362
+  (0.2ms) begin transaction
12363
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "pearline.nienow@langosh.org"], ["LIMIT", 1]]
12364
+ SQL (0.6ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "pearline.nienow@langosh.org"], ["remember_token", "8064a13de996c5d9c4b551b642819e28d82262d8"]]
12365
+  (0.9ms) commit transaction
12366
+ Processing by WelcomeController#index as HTML
12367
+ Rendering welcome/index.html.erb within layouts/application
12368
+ Rendered welcome/index.html.erb within layouts/application (0.5ms)
12369
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
12370
+ Completed 200 OK in 9ms (Views: 6.0ms | ActiveRecord: 0.0ms)
12371
+  (0.2ms) PRAGMA foreign_keys
12372
+  (0.1ms) PRAGMA foreign_keys = OFF
12373
+  (1.3ms) DELETE FROM "users";
12374
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12375
+  (0.7ms) DELETE FROM sqlite_sequence where name = 'users';
12376
+  (0.6ms) DELETE FROM "ar_internal_metadata";
12377
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12378
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12379
+  (0.1ms) PRAGMA foreign_keys = 1
12380
+  (0.1ms) begin transaction
12381
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "norris_prosacco@legros.net"], ["LIMIT", 1]]
12382
+ SQL (0.3ms) INSERT INTO "users" ("email", "remember_token") VALUES (?, ?) [["email", "norris_prosacco@legros.net"], ["remember_token", "4409f7ec96fa557b9e7e77c13a5f980b4754ed47"]]
12383
+  (0.5ms) commit transaction
12384
+ Processing by WelcomeController#index as HTML
12385
+ Rendering welcome/index.html.erb within layouts/application
12386
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
12387
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
12388
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
12389
+  (0.1ms) PRAGMA foreign_keys
12390
+  (0.0ms) PRAGMA foreign_keys = OFF
12391
+  (0.6ms) DELETE FROM "users";
12392
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12393
+  (0.6ms) DELETE FROM sqlite_sequence where name = 'users';
12394
+  (0.5ms) DELETE FROM "ar_internal_metadata";
12395
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
12396
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';
12397
+  (0.0ms) PRAGMA foreign_keys = 1