guts 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5f4d210a1b8fbd62d9e5e085548efe59e3d3c4de
4
- data.tar.gz: c501425cb1c3031ce85294c9081bc3c1b1a3120a
3
+ metadata.gz: 34d46c3d97056b1bee408ce793f45e78acf693b8
4
+ data.tar.gz: d7415148174a435debc83d398728322ed404e4b1
5
5
  SHA512:
6
- metadata.gz: b1626876cdcdd5eb325cf55a303740fb0f0f217fdb134a7624487beb1865ef83db941214021632e1dd7a6d179fd5bcbd6c023302425d0fb78081a956ad3d0ff9
7
- data.tar.gz: fef3ccc11ed816ef432f70e3fb2b90e53784b3e2c10950ae0ad388c9e911701dc2cc157e8e247ae042ceed7c20aeb1b32f78c783fde2977ac2b2900d36fe904d
6
+ metadata.gz: 92ded402bb0efb34e43fe33185257eaca7906e8039996b7994ac33d68625ca10822eb3e79b017da05f7d22f47b468de50ff6c7fdaac4a2e3654a0dc6b2916ad2
7
+ data.tar.gz: d4229644375eb907f72f217180245903ec2fe2a0778c27bbf7787d5343e8e9679eaeda7c784d9f699650155d72eee019e9293b42b29af4423ae84dd14073551b
@@ -1,3 +1,7 @@
1
+ # Version 2.0.2
2
+
3
+ + Logging in a fresh user with no permissions set, will no longer say access denied... it will now display the welcome screen for all
4
+
1
5
  # Version 2.0.1
2
6
 
3
7
  + Fix to bug on add permissions page to use object permissions not current user's permissions
@@ -16,7 +16,7 @@ module Guts
16
16
 
17
17
  if user && user.authenticate(params[:session][:password])
18
18
  log_in user
19
- redirect_to users_path
19
+ redirect_to home_path
20
20
  else
21
21
  flash.now[:alert] = 'Invalid login credentials'
22
22
  render :new
@@ -8,6 +8,9 @@ module Guts
8
8
  def initialize(user)
9
9
  user ||= Guts::User.new
10
10
 
11
+ # Allow anyone logged in to see the index page
12
+ can(:read, :index) unless user.new_record?
13
+
11
14
  # Loop over group permissions first
12
15
  user.groups.each do |group|
13
16
  group.permissions.each do |permission|
@@ -8,7 +8,7 @@
8
8
 
9
9
  <% if flash[:notice] %>
10
10
  <div class="small-12 columns">
11
- <div class="callout info">
11
+ <div class="callout success">
12
12
  <%= flash[:notice] %>
13
13
  </div>
14
14
  </div>
@@ -1,5 +1,5 @@
1
1
  # Guts' module namespace
2
2
  module Guts
3
3
  # Current Guts version
4
- VERSION = '2.0.1'.freeze
4
+ VERSION = '2.0.2'.freeze
5
5
  end
@@ -29,7 +29,7 @@ module Guts
29
29
  }
30
30
  }
31
31
 
32
- assert_redirected_to users_path
32
+ assert_redirected_to home_path
33
33
  end
34
34
 
35
35
  test 'should log the user out' do
Binary file
@@ -11024,3 +11024,1543 @@ Started GET "/assets/guts/media.self-243b7f0ede15390ebb86e655d29b004593461c31067
11024
11024
  Started GET "/assets/ubuntu/ubuntu-regular-90543ac04e319b31c4d00aa8929581eb50dfce7e82027b699803d3d3d7d82577.woff" for ::1 at 2016-12-14 10:25:55 -0330
11025
11025
  Started GET "/assets/ubuntu/ubuntu-medium-1873061e69487db5ffe3cd313bf7915706ef69a7060ead47180cc6cd276455e3.woff" for ::1 at 2016-12-14 10:25:55 -0330
11026
11026
  Started GET "/assets/fontawesome/fontawesome-webfont-ff82aeed6b9bb6701696c84d1b223d2e682eb78c89117a438ce6cfea8c498995.woff2" for ::1 at 2016-12-14 10:25:55 -0330
11027
+ Started GET "/guts" for ::1 at 2016-12-15 18:08:57 -0400
11028
+ Processing by Guts::IndexController#index as HTML
11029
+ Guts::Site Load (0.6ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11030
+ Guts::User Load (0.5ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11031
+ CACHE (0.0ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11032
+ Redirected to http://localhost:3000/guts/session/login
11033
+ Completed 302 Found in 166ms (ActiveRecord: 7.0ms)
11034
+
11035
+
11036
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:08:57 -0400
11037
+ Processing by Guts::SessionsController#new as HTML
11038
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11039
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11040
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
11041
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (19.8ms)
11042
+ Rendered guts/application/_layout_hook.html.erb (0.5ms)
11043
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (703.1ms)
11044
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (1.3ms)
11045
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.4ms)
11046
+ Completed 200 OK in 859ms (Views: 854.8ms | ActiveRecord: 0.2ms)
11047
+
11048
+
11049
+ Started GET "/assets/guts/vendor/font-awesome.self-a68eb5c14ddaafce1013286885bab40a1ff29285f097cea7b333b34a85b6a4ee.css?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11050
+ Started GET "/assets/guts/vendor/sweetalert.self-93ae81483be2e9705db4cd911fa410bc2cf6c24f355dc5ac899de49fab854e63.css?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11051
+ Started GET "/assets/guts/fonts.self-0da06d35b62d315601e7fb7fedef1f1934927be994475fdca6688624c7c18826.css?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11052
+ Started GET "/assets/guts/application.self-824368c255f7d2582069a6f7a264f3e99fe17f0df87452937fa3d1e2028fe56c.css?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11053
+ Started GET "/assets/guts/vendor/foundation.self-c32902b7f65cb1bd7707442ee620bf9a0a030130c9867e98df01ef3811f569ff.css?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11054
+ Started GET "/assets/tinymce/tinymce.self-526527aa5e646820f9f6661370872c86d41c57daf0bbc9cddd7bf8554c747dbb.js?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11055
+ Started GET "/assets/tinymce/preinit.self-84328a53e798df12f891eb49871773fd9f925439c8630e9e22423a82ef9e6f89.js?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11056
+ Started GET "/assets/tinymce.self-75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070.js?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11057
+ Started GET "/assets/guts/vendor/jquery.self-ad66c584c2469d2bb527ba7aef5893549f1554ccc8ab3ccb43bd09ce8c3bf7a1.js?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11058
+ Started GET "/assets/guts/vendor/foundation.self-649f426f98e4a6db36a77a6984aac07629daff00d65297af03439ba00e7fb99b.js?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11059
+ Started GET "/assets/guts/vendor/sweetalert.self-07a2b387624bb896641ca2f2f0fcb42793009484b2fff20af03d7ce92a894be8.js?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11060
+ Started GET "/assets/guts/vendor/handlebars.self-f34dc7344cb4b7ef71749fc1095378a12419c079a2d058bf69e4a6de17d780eb.js?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11061
+ Started GET "/assets/ubuntu/ubuntu-regular-90543ac04e319b31c4d00aa8929581eb50dfce7e82027b699803d3d3d7d82577.woff" for ::1 at 2016-12-15 18:08:58 -0400
11062
+ Started GET "/assets/guts/vendor/sortable.self-18564bbd5cbc6049b2a7404b36efff38a45e41c004daf49be4317f07a036fb4e.js?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11063
+ Started GET "/assets/fontawesome/fontawesome-webfont-ff82aeed6b9bb6701696c84d1b223d2e682eb78c89117a438ce6cfea8c498995.woff2" for ::1 at 2016-12-15 18:08:58 -0400
11064
+ Started GET "/assets/tinymce-jquery.self-6a3cf5192354f71615ac51034b3e97c20eda99643fcaf5bbe6d41ad59bd12167.js?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11065
+ Started GET "/assets/tinymce/jquery.tinymce.self-d878a911a5016d22c370c5664e84624652229d49dedf2dd83e8ad2de87e32fb6.js?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11066
+ Started GET "/assets/guts/media.self-243b7f0ede15390ebb86e655d29b004593461c3106794146a473672b5b07b8de.js?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11067
+ Started GET "/assets/guts/navigation.self-c8876c71c4b285cf990cf86e930bddd3227dd9fd9f9b0b3c6eb7ea5b61d60f15.js?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11068
+ Started GET "/assets/guts/application.self-db42514109cad7c09b3c218818b4fafbf614183310eab7a50adf12a8c2046e4a.js?body=1" for ::1 at 2016-12-15 18:08:58 -0400
11069
+ Started POST "/guts/session/login" for ::1 at 2016-12-15 18:09:20 -0400
11070
+ Processing by Guts::SessionsController#create as HTML
11071
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"katcMAkbmCseo08psIPEi0W0caUumP4nVpIjyud5P8bUrbAhW20tmVQUfuQ2aT7mnePD+RGLwy43skSDDSwhiA==", "commit"=>"Login", "session"=>{"email"=>"tyler.n.king@outlook.com", "password"=>"[FILTERED]"}}
11072
+ Guts::Site Load (0.7ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11073
+ Guts::User Load (0.4ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11074
+ Guts::User Load (0.3ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."email" = ? LIMIT ? [["email", "tyler.n.king@outlook.com"], ["LIMIT", 1]]
11075
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
11076
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (2.2ms)
11077
+ Rendered guts/application/_layout_hook.html.erb (0.4ms)
11078
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (16.9ms)
11079
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (1.1ms)
11080
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.5ms)
11081
+ Completed 200 OK in 160ms (Views: 63.2ms | ActiveRecord: 1.4ms)
11082
+
11083
+
11084
+ Started POST "/guts/session/login" for ::1 at 2016-12-15 18:09:23 -0400
11085
+ Processing by Guts::SessionsController#create as HTML
11086
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Dv3QYBLjiM9fdUKY7tFYJKC35D7rPa34WnXdHShLyIVL+zxxQJU9fRXCc1VoO6JJeOBWYtQukPE7VbpUwh7Wyw==", "commit"=>"Login", "session"=>{"email"=>"tyler.n.king@outlook.com", "password"=>"[FILTERED]"}}
11087
+ Guts::Site Load (0.5ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11088
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11089
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."email" = ? LIMIT ? [["email", "tyler.n.king@outlook.com"], ["LIMIT", 1]]
11090
+ Redirected to http://localhost:3000/guts/users
11091
+ Completed 302 Found in 85ms (ActiveRecord: 0.8ms)
11092
+
11093
+
11094
+ Started GET "/guts/users" for ::1 at 2016-12-15 18:09:24 -0400
11095
+ Processing by Guts::UsersController#index as HTML
11096
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11097
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
11098
+ Guts::Group Load (0.5ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 1]]
11099
+ Guts::Permission Load (1.3ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 1], ["permissionable_type", "Guts::User"]]
11100
+ Guts::Authorization Load (0.7ms) SELECT "guts_authorizations".* FROM "guts_authorizations" WHERE "guts_authorizations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
11101
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/users/index.html.erb within layouts/guts/application
11102
+  (0.3ms) SELECT COUNT(*) FROM "guts_users"
11103
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users"
11104
+ CACHE (0.0ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 1]]
11105
+ Guts::Group Load (0.1ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 2]]
11106
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/users/index.html.erb within layouts/guts/application (15.8ms)
11107
+ Rendered guts/application/_layout_hook.html.erb (0.4ms)
11108
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (18.8ms)
11109
+ Guts::Type Load (0.7ms) SELECT "guts_types".* FROM "guts_types" WHERE "guts_types"."site_id" IS NULL
11110
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (60.4ms)
11111
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.5ms)
11112
+ Completed 200 OK in 181ms (Views: 125.8ms | ActiveRecord: 5.3ms)
11113
+
11114
+
11115
+ Started DELETE "/guts/users/2" for ::1 at 2016-12-15 18:09:32 -0400
11116
+ Processing by Guts::UsersController#destroy as HTML
11117
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"SbDBVzl4zZmUvEr5VXyQW8E3annyakq99UprGnDeiNgMti1Gaw54K94LezTTlmo2GWDYJc15d7SUagxTmouWlg==", "id"=>"2"}
11118
+ Guts::Site Load (1.3ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11119
+ Guts::User Load (0.3ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
11120
+ Guts::User Load (0.5ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
11121
+ Guts::Group Load (0.3ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 1]]
11122
+ Guts::Permission Load (0.4ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 1], ["permissionable_type", "Guts::User"]]
11123
+ Guts::Authorization Load (0.8ms) SELECT "guts_authorizations".* FROM "guts_authorizations" WHERE "guts_authorizations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
11124
+ CACHE (0.0ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
11125
+  (0.1ms) begin transaction
11126
+ Guts::Medium Load (1.4ms) SELECT "guts_media".* FROM "guts_media" WHERE "guts_media"."site_id" IS NULL AND "guts_media"."filable_id" = ? AND "guts_media"."filable_type" = ? [["filable_id", 2], ["filable_type", "Guts::User"]]
11127
+ Guts::Metafield Load (0.5ms) SELECT "guts_metafields".* FROM "guts_metafields" WHERE "guts_metafields"."site_id" IS NULL AND "guts_metafields"."fieldable_id" = ? AND "guts_metafields"."fieldable_type" = ? [["fieldable_id", 2], ["fieldable_type", "Guts::User"]]
11128
+ Guts::Permission Load (1.9ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 2], ["permissionable_type", "Guts::User"]]
11129
+ SQL (1.4ms) DELETE FROM "guts_users" WHERE "guts_users"."id" = ? [["id", 2]]
11130
+  (2.1ms) commit transaction
11131
+ Redirected to http://localhost:3000/guts/users
11132
+ Completed 302 Found in 107ms (ActiveRecord: 14.1ms)
11133
+
11134
+
11135
+ Started GET "/guts/users" for ::1 at 2016-12-15 18:09:32 -0400
11136
+ Processing by Guts::UsersController#index as HTML
11137
+ Guts::Site Load (1.0ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11138
+ Guts::User Load (0.4ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
11139
+ Guts::Group Load (1.2ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 1]]
11140
+ Guts::Permission Load (0.4ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 1], ["permissionable_type", "Guts::User"]]
11141
+ Guts::Authorization Load (0.5ms) SELECT "guts_authorizations".* FROM "guts_authorizations" WHERE "guts_authorizations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
11142
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/users/index.html.erb within layouts/guts/application
11143
+  (0.2ms) SELECT COUNT(*) FROM "guts_users"
11144
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users"
11145
+ CACHE (0.0ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 1]]
11146
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/users/index.html.erb within layouts/guts/application (5.2ms)
11147
+ Rendered guts/application/_layout_hook.html.erb (0.5ms)
11148
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (25.9ms)
11149
+ Guts::Type Load (0.2ms) SELECT "guts_types".* FROM "guts_types" WHERE "guts_types"."site_id" IS NULL
11150
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (4.9ms)
11151
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.4ms)
11152
+ Completed 200 OK in 105ms (Views: 72.1ms | ActiveRecord: 4.0ms)
11153
+
11154
+
11155
+ Started GET "/guts/users/new" for ::1 at 2016-12-15 18:10:12 -0400
11156
+ Processing by Guts::UsersController#new as HTML
11157
+ Guts::Site Load (0.2ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11158
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
11159
+ Guts::Group Load (0.2ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 1]]
11160
+ Guts::Permission Load (0.1ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 1], ["permissionable_type", "Guts::User"]]
11161
+ Guts::Authorization Load (0.1ms) SELECT "guts_authorizations".* FROM "guts_authorizations" WHERE "guts_authorizations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
11162
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/users/new.html.erb within layouts/guts/application
11163
+ Guts::Group Load (0.5ms) SELECT "guts_groups".* FROM "guts_groups"
11164
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/users/_form.html.erb (11.1ms)
11165
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/users/new.html.erb within layouts/guts/application (14.2ms)
11166
+ Rendered guts/application/_layout_hook.html.erb (0.4ms)
11167
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (16.1ms)
11168
+ Guts::Type Load (0.2ms) SELECT "guts_types".* FROM "guts_types" WHERE "guts_types"."site_id" IS NULL
11169
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (4.4ms)
11170
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.4ms)
11171
+ Completed 200 OK in 86ms (Views: 66.7ms | ActiveRecord: 1.7ms)
11172
+
11173
+
11174
+ Started POST "/guts/users" for ::1 at 2016-12-15 18:10:21 -0400
11175
+ Processing by Guts::UsersController#create as HTML
11176
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"PouzxbKQ269wD8TynZdc3UFBSEdtHBdUGRgfjwfNGIp7jV/U4OZuHTq49T8bfaawmRb6G1IPKl14OHjG7ZgGxA==", "commit"=>"Save", "user"=>{"name"=>"Test User", "email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "group_ids"=>[""]}}
11177
+ Guts::Site Load (0.3ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11178
+ Guts::User Load (0.3ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
11179
+ Guts::Group Load (0.6ms) SELECT "guts_groups".* FROM "guts_groups" WHERE 1=0
11180
+ Guts::Group Load (0.2ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 1]]
11181
+ Guts::Permission Load (0.2ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 1], ["permissionable_type", "Guts::User"]]
11182
+ Guts::Authorization Load (0.2ms) SELECT "guts_authorizations".* FROM "guts_authorizations" WHERE "guts_authorizations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
11183
+ CACHE (0.0ms) SELECT "guts_groups".* FROM "guts_groups" WHERE 1=0
11184
+  (0.1ms) begin transaction
11185
+ Guts::User Exists (0.2ms) SELECT 1 AS one FROM "guts_users" WHERE LOWER("guts_users"."email") = LOWER(?) LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
11186
+ SQL (1.1ms) INSERT INTO "guts_users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Test User"], ["email", "test@test.com"], ["password_digest", "$2a$10$.0JbuUcI9hq2mM11lhugruyi7zhGbIM3L/mbyP9Bgfaq65zBucngq"], ["created_at", 2016-12-15 22:10:21 UTC], ["updated_at", 2016-12-15 22:10:21 UTC]]
11187
+  (0.9ms) commit transaction
11188
+ Redirected to http://localhost:3000/guts/users/3/edit
11189
+ Completed 302 Found in 225ms (ActiveRecord: 4.1ms)
11190
+
11191
+
11192
+ Started GET "/guts/users/3/edit" for ::1 at 2016-12-15 18:10:21 -0400
11193
+ Processing by Guts::UsersController#edit as HTML
11194
+ Parameters: {"id"=>"3"}
11195
+ Guts::Site Load (0.2ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11196
+ Guts::User Load (0.3ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
11197
+ Guts::User Load (0.3ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11198
+ Guts::Group Load (0.3ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 1]]
11199
+ Guts::Permission Load (0.2ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 1], ["permissionable_type", "Guts::User"]]
11200
+ Guts::Authorization Load (0.2ms) SELECT "guts_authorizations".* FROM "guts_authorizations" WHERE "guts_authorizations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
11201
+ CACHE (0.0ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11202
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/users/edit.html.erb within layouts/guts/application
11203
+  (0.2ms) SELECT COUNT(*) FROM "guts_metafields" WHERE "guts_metafields"."site_id" IS NULL AND "guts_metafields"."fieldable_id" = ? AND "guts_metafields"."fieldable_type" = ? [["fieldable_id", 3], ["fieldable_type", "Guts::User"]]
11204
+  (0.2ms) SELECT COUNT(*) FROM "guts_media" WHERE "guts_media"."site_id" IS NULL AND "guts_media"."filable_id" = ? AND "guts_media"."filable_type" = ? [["filable_id", 3], ["filable_type", "Guts::User"]]
11205
+  (0.3ms) SELECT COUNT(*) FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
11206
+  (0.2ms) SELECT "guts_groups".id FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
11207
+ Guts::Group Load (0.2ms) SELECT "guts_groups".* FROM "guts_groups"
11208
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/users/_form.html.erb (17.4ms)
11209
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/users/edit.html.erb within layouts/guts/application (19.6ms)
11210
+ Rendered guts/application/_layout_hook.html.erb (0.7ms)
11211
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (23.0ms)
11212
+ Guts::Type Load (0.2ms) SELECT "guts_types".* FROM "guts_types" WHERE "guts_types"."site_id" IS NULL
11213
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (4.3ms)
11214
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.5ms)
11215
+ Completed 200 OK in 136ms (Views: 102.5ms | ActiveRecord: 2.7ms)
11216
+
11217
+
11218
+ Started GET "/guts/session/logout" for ::1 at 2016-12-15 18:10:32 -0400
11219
+ Processing by Guts::SessionsController#destroy as HTML
11220
+ Guts::Site Load (0.2ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11221
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
11222
+ Redirected to http://localhost:3000/guts/session/login
11223
+ Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
11224
+
11225
+
11226
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:10:32 -0400
11227
+ Processing by Guts::SessionsController#new as HTML
11228
+ Guts::Site Load (0.6ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11229
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11230
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
11231
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (1.4ms)
11232
+ Rendered guts/application/_layout_hook.html.erb (0.4ms)
11233
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (14.7ms)
11234
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (1.1ms)
11235
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.4ms)
11236
+ Completed 200 OK in 54ms (Views: 48.4ms | ActiveRecord: 0.8ms)
11237
+
11238
+
11239
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:11:27 -0400
11240
+ Processing by Guts::SessionsController#new as HTML
11241
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11242
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11243
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
11244
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (1.7ms)
11245
+ Rendered guts/application/_layout_hook.html.erb (0.3ms)
11246
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (28.5ms)
11247
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (1.1ms)
11248
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.3ms)
11249
+ Completed 200 OK in 70ms (Views: 67.1ms | ActiveRecord: 0.2ms)
11250
+
11251
+
11252
+ Started GET "/assets/guts/vendor/foundation.self-c32902b7f65cb1bd7707442ee620bf9a0a030130c9867e98df01ef3811f569ff.css?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11253
+ Started GET "/assets/guts/vendor/sweetalert.self-93ae81483be2e9705db4cd911fa410bc2cf6c24f355dc5ac899de49fab854e63.css?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11254
+ Started GET "/assets/guts/vendor/font-awesome.self-a68eb5c14ddaafce1013286885bab40a1ff29285f097cea7b333b34a85b6a4ee.css?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11255
+ Started GET "/assets/tinymce/tinymce.self-526527aa5e646820f9f6661370872c86d41c57daf0bbc9cddd7bf8554c747dbb.js?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11256
+ Started GET "/assets/guts/fonts.self-0da06d35b62d315601e7fb7fedef1f1934927be994475fdca6688624c7c18826.css?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11257
+ Started GET "/assets/guts/application.self-824368c255f7d2582069a6f7a264f3e99fe17f0df87452937fa3d1e2028fe56c.css?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11258
+ Started GET "/assets/tinymce/preinit.self-84328a53e798df12f891eb49871773fd9f925439c8630e9e22423a82ef9e6f89.js?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11259
+ Started GET "/assets/tinymce.self-75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070.js?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11260
+ Started GET "/assets/guts/vendor/jquery.self-ad66c584c2469d2bb527ba7aef5893549f1554ccc8ab3ccb43bd09ce8c3bf7a1.js?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11261
+ Started GET "/assets/guts/vendor/handlebars.self-f34dc7344cb4b7ef71749fc1095378a12419c079a2d058bf69e4a6de17d780eb.js?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11262
+ Started GET "/assets/guts/vendor/foundation.self-649f426f98e4a6db36a77a6984aac07629daff00d65297af03439ba00e7fb99b.js?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11263
+ Started GET "/assets/guts/vendor/sweetalert.self-07a2b387624bb896641ca2f2f0fcb42793009484b2fff20af03d7ce92a894be8.js?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11264
+ Started GET "/assets/guts/vendor/sortable.self-18564bbd5cbc6049b2a7404b36efff38a45e41c004daf49be4317f07a036fb4e.js?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11265
+ Started GET "/assets/tinymce-jquery.self-6a3cf5192354f71615ac51034b3e97c20eda99643fcaf5bbe6d41ad59bd12167.js?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11266
+ Started GET "/assets/guts/application.self-db42514109cad7c09b3c218818b4fafbf614183310eab7a50adf12a8c2046e4a.js?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11267
+ Started GET "/assets/guts/media.self-243b7f0ede15390ebb86e655d29b004593461c3106794146a473672b5b07b8de.js?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11268
+ Started GET "/assets/tinymce/jquery.tinymce.self-d878a911a5016d22c370c5664e84624652229d49dedf2dd83e8ad2de87e32fb6.js?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11269
+ Started GET "/assets/guts/navigation.self-c8876c71c4b285cf990cf86e930bddd3227dd9fd9f9b0b3c6eb7ea5b61d60f15.js?body=1" for ::1 at 2016-12-15 18:11:28 -0400
11270
+ Started POST "/guts/session/login" for ::1 at 2016-12-15 18:11:48 -0400
11271
+ Processing by Guts::SessionsController#create as HTML
11272
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"t5sdEvSwMwsgQkPznx0/kJdBKTkXSswCVKm59+UqCCLynfEDpsaGuWr1cj4Z98X9TxabZShZ8Qs1id6+D38WbA==", "commit"=>"Login", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
11273
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11274
+ Guts::User Load (0.3ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11275
+ Guts::User Load (0.3ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
11276
+ Redirected to http://localhost:3000/guts/users
11277
+ Completed 302 Found in 81ms (ActiveRecord: 0.7ms)
11278
+
11279
+
11280
+ Started GET "/guts/users" for ::1 at 2016-12-15 18:11:48 -0400
11281
+ Processing by Guts::UsersController#index as HTML
11282
+ Guts::Site Load (0.2ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11283
+ Guts::User Load (1.5ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11284
+ Guts::Group Load (0.1ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
11285
+ Guts::Permission Load (0.1ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
11286
+ Redirected to http://localhost:3000/guts/session/login
11287
+ Completed 302 Found in 31ms (ActiveRecord: 1.9ms)
11288
+
11289
+
11290
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:11:48 -0400
11291
+ Processing by Guts::SessionsController#new as HTML
11292
+ Guts::Site Load (0.2ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11293
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11294
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
11295
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (4.0ms)
11296
+ Rendered guts/application/_layout_hook.html.erb (0.8ms)
11297
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (25.5ms)
11298
+ Guts::Group Load (0.3ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
11299
+ Guts::Permission Load (0.2ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
11300
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (6.8ms)
11301
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.4ms)
11302
+ Completed 200 OK in 97ms (Views: 90.6ms | ActiveRecord: 0.9ms)
11303
+
11304
+
11305
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:12:03 -0400
11306
+ Processing by Guts::SessionsController#new as HTML
11307
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11308
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11309
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
11310
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (2.1ms)
11311
+ Rendered guts/application/_layout_hook.html.erb (0.3ms)
11312
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (15.8ms)
11313
+ Guts::Group Load (0.1ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
11314
+ Guts::Permission Load (0.3ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
11315
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (57.2ms)
11316
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.4ms)
11317
+ Completed 200 OK in 136ms (Views: 107.3ms | ActiveRecord: 2.7ms)
11318
+
11319
+
11320
+ Started GET "/assets/guts/vendor/foundation.self-c32902b7f65cb1bd7707442ee620bf9a0a030130c9867e98df01ef3811f569ff.css?body=1" for ::1 at 2016-12-15 18:12:03 -0400
11321
+ Started GET "/assets/guts/vendor/sweetalert.self-93ae81483be2e9705db4cd911fa410bc2cf6c24f355dc5ac899de49fab854e63.css?body=1" for ::1 at 2016-12-15 18:12:03 -0400
11322
+ Started GET "/assets/guts/fonts.self-0da06d35b62d315601e7fb7fedef1f1934927be994475fdca6688624c7c18826.css?body=1" for ::1 at 2016-12-15 18:12:03 -0400
11323
+ Started GET "/assets/guts/application.self-824368c255f7d2582069a6f7a264f3e99fe17f0df87452937fa3d1e2028fe56c.css?body=1" for ::1 at 2016-12-15 18:12:03 -0400
11324
+ Started GET "/assets/guts/vendor/font-awesome.self-a68eb5c14ddaafce1013286885bab40a1ff29285f097cea7b333b34a85b6a4ee.css?body=1" for ::1 at 2016-12-15 18:12:03 -0400
11325
+ Started GET "/assets/tinymce/preinit.self-84328a53e798df12f891eb49871773fd9f925439c8630e9e22423a82ef9e6f89.js?body=1" for ::1 at 2016-12-15 18:12:03 -0400
11326
+ Started GET "/assets/tinymce/tinymce.self-526527aa5e646820f9f6661370872c86d41c57daf0bbc9cddd7bf8554c747dbb.js?body=1" for ::1 at 2016-12-15 18:12:03 -0400
11327
+ Started GET "/assets/guts/vendor/sweetalert.self-07a2b387624bb896641ca2f2f0fcb42793009484b2fff20af03d7ce92a894be8.js?body=1" for ::1 at 2016-12-15 18:12:03 -0400
11328
+ Started GET "/assets/guts/vendor/jquery.self-ad66c584c2469d2bb527ba7aef5893549f1554ccc8ab3ccb43bd09ce8c3bf7a1.js?body=1" for ::1 at 2016-12-15 18:12:03 -0400
11329
+ Started GET "/assets/guts/vendor/handlebars.self-f34dc7344cb4b7ef71749fc1095378a12419c079a2d058bf69e4a6de17d780eb.js?body=1" for ::1 at 2016-12-15 18:12:03 -0400
11330
+ Started GET "/assets/guts/vendor/sortable.self-18564bbd5cbc6049b2a7404b36efff38a45e41c004daf49be4317f07a036fb4e.js?body=1" for ::1 at 2016-12-15 18:12:03 -0400
11331
+ Started GET "/assets/guts/media.self-243b7f0ede15390ebb86e655d29b004593461c3106794146a473672b5b07b8de.js?body=1" for ::1 at 2016-12-15 18:12:03 -0400
11332
+ Started GET "/assets/guts/navigation.self-c8876c71c4b285cf990cf86e930bddd3227dd9fd9f9b0b3c6eb7ea5b61d60f15.js?body=1" for ::1 at 2016-12-15 18:12:04 -0400
11333
+ Started GET "/assets/tinymce.self-75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070.js?body=1" for ::1 at 2016-12-15 18:12:04 -0400
11334
+ Started GET "/assets/tinymce-jquery.self-6a3cf5192354f71615ac51034b3e97c20eda99643fcaf5bbe6d41ad59bd12167.js?body=1" for ::1 at 2016-12-15 18:12:04 -0400
11335
+ Started GET "/assets/guts/vendor/foundation.self-649f426f98e4a6db36a77a6984aac07629daff00d65297af03439ba00e7fb99b.js?body=1" for ::1 at 2016-12-15 18:12:04 -0400
11336
+ Started GET "/assets/tinymce/jquery.tinymce.self-d878a911a5016d22c370c5664e84624652229d49dedf2dd83e8ad2de87e32fb6.js?body=1" for ::1 at 2016-12-15 18:12:04 -0400
11337
+ Started GET "/assets/guts/application.self-db42514109cad7c09b3c218818b4fafbf614183310eab7a50adf12a8c2046e4a.js?body=1" for ::1 at 2016-12-15 18:12:04 -0400
11338
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:12:05 -0400
11339
+ Processing by Guts::SessionsController#new as HTML
11340
+ Guts::Site Load (0.5ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11341
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11342
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
11343
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (3.0ms)
11344
+ Rendered guts/application/_layout_hook.html.erb (0.3ms)
11345
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (12.5ms)
11346
+ Guts::Group Load (0.2ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
11347
+ Guts::Permission Load (0.1ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
11348
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (3.9ms)
11349
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.6ms)
11350
+ Completed 200 OK in 60ms (Views: 56.3ms | ActiveRecord: 0.9ms)
11351
+
11352
+
11353
+ Started GET "/assets/guts/vendor/foundation.self-c32902b7f65cb1bd7707442ee620bf9a0a030130c9867e98df01ef3811f569ff.css?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11354
+ Started GET "/assets/guts/vendor/font-awesome.self-a68eb5c14ddaafce1013286885bab40a1ff29285f097cea7b333b34a85b6a4ee.css?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11355
+ Started GET "/assets/guts/fonts.self-0da06d35b62d315601e7fb7fedef1f1934927be994475fdca6688624c7c18826.css?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11356
+ Started GET "/assets/tinymce/tinymce.self-526527aa5e646820f9f6661370872c86d41c57daf0bbc9cddd7bf8554c747dbb.js?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11357
+ Started GET "/assets/guts/application.self-824368c255f7d2582069a6f7a264f3e99fe17f0df87452937fa3d1e2028fe56c.css?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11358
+ Started GET "/assets/tinymce/preinit.self-84328a53e798df12f891eb49871773fd9f925439c8630e9e22423a82ef9e6f89.js?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11359
+ Started GET "/assets/guts/vendor/sweetalert.self-93ae81483be2e9705db4cd911fa410bc2cf6c24f355dc5ac899de49fab854e63.css?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11360
+ Started GET "/assets/tinymce.self-75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070.js?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11361
+ Started GET "/assets/guts/vendor/jquery.self-ad66c584c2469d2bb527ba7aef5893549f1554ccc8ab3ccb43bd09ce8c3bf7a1.js?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11362
+ Started GET "/assets/guts/vendor/foundation.self-649f426f98e4a6db36a77a6984aac07629daff00d65297af03439ba00e7fb99b.js?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11363
+ Started GET "/assets/guts/vendor/sweetalert.self-07a2b387624bb896641ca2f2f0fcb42793009484b2fff20af03d7ce92a894be8.js?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11364
+ Started GET "/assets/guts/vendor/handlebars.self-f34dc7344cb4b7ef71749fc1095378a12419c079a2d058bf69e4a6de17d780eb.js?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11365
+ Started GET "/assets/tinymce/jquery.tinymce.self-d878a911a5016d22c370c5664e84624652229d49dedf2dd83e8ad2de87e32fb6.js?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11366
+ Started GET "/assets/guts/vendor/sortable.self-18564bbd5cbc6049b2a7404b36efff38a45e41c004daf49be4317f07a036fb4e.js?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11367
+ Started GET "/assets/tinymce-jquery.self-6a3cf5192354f71615ac51034b3e97c20eda99643fcaf5bbe6d41ad59bd12167.js?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11368
+ Started GET "/assets/guts/media.self-243b7f0ede15390ebb86e655d29b004593461c3106794146a473672b5b07b8de.js?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11369
+ Started GET "/assets/guts/navigation.self-c8876c71c4b285cf990cf86e930bddd3227dd9fd9f9b0b3c6eb7ea5b61d60f15.js?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11370
+ Started GET "/assets/guts/application.self-db42514109cad7c09b3c218818b4fafbf614183310eab7a50adf12a8c2046e4a.js?body=1" for ::1 at 2016-12-15 18:12:05 -0400
11371
+ Started GET "/guts" for ::1 at 2016-12-15 18:12:08 -0400
11372
+ Processing by Guts::IndexController#index as HTML
11373
+ Guts::Site Load (0.3ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11374
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11375
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application
11376
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application (0.5ms)
11377
+ Rendered guts/application/_layout_hook.html.erb (0.6ms)
11378
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (16.0ms)
11379
+ Guts::Group Load (0.2ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
11380
+ Guts::Permission Load (0.1ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
11381
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (5.8ms)
11382
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.4ms)
11383
+ Completed 200 OK in 66ms (Views: 58.6ms | ActiveRecord: 0.8ms)
11384
+
11385
+
11386
+ Started GET "/guts" for ::1 at 2016-12-15 18:12:11 -0400
11387
+
11388
+ ArgumentError (Invalid route name, already in use: 'guts_types_explode'
11389
+ You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here:
11390
+ http://guides.rubyonrails.org/routing.html#restricting-the-routes-created):
11391
+
11392
+ config/routes.rb:2:in `block in <top (required)>'
11393
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
11394
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
11395
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.4ms)
11396
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
11397
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
11398
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
11399
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
11400
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (67.3ms)
11401
+ Started GET "/guts" for ::1 at 2016-12-15 18:12:13 -0400
11402
+
11403
+ ActionController::RoutingError (No route matches [GET] "/guts"):
11404
+
11405
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
11406
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
11407
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
11408
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
11409
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
11410
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
11411
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
11412
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
11413
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
11414
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
11415
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
11416
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
11417
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
11418
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
11419
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
11420
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
11421
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
11422
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
11423
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
11424
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
11425
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
11426
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
11427
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
11428
+ Rendered collection of /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [1 times] (4.6ms)
11429
+ Rendered collection of /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [1 times] (0.4ms)
11430
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms)
11431
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
11432
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
11433
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.9ms)
11434
+ Started GET "/guts" for ::1 at 2016-12-15 18:12:21 -0400
11435
+ Processing by Guts::IndexController#index as HTML
11436
+ Guts::Site Load (0.2ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11437
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11438
+ Guts::Group Load (0.2ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
11439
+ Guts::Permission Load (0.1ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
11440
+ Redirected to http://localhost:3000/guts/session/login
11441
+ Completed 302 Found in 140ms (ActiveRecord: 3.9ms)
11442
+
11443
+
11444
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:12:21 -0400
11445
+ Processing by Guts::SessionsController#new as HTML
11446
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11447
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11448
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
11449
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (10.6ms)
11450
+ Rendered guts/application/_layout_hook.html.erb (0.4ms)
11451
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (579.4ms)
11452
+ Guts::Group Load (0.1ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
11453
+ Guts::Permission Load (0.1ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
11454
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (51.6ms)
11455
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.4ms)
11456
+ Completed 200 OK in 752ms (Views: 747.5ms | ActiveRecord: 0.4ms)
11457
+
11458
+
11459
+ Started GET "/assets/guts/vendor/foundation.self-c32902b7f65cb1bd7707442ee620bf9a0a030130c9867e98df01ef3811f569ff.css?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11460
+ Started GET "/assets/guts/vendor/sweetalert.self-93ae81483be2e9705db4cd911fa410bc2cf6c24f355dc5ac899de49fab854e63.css?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11461
+ Started GET "/assets/tinymce/tinymce.self-526527aa5e646820f9f6661370872c86d41c57daf0bbc9cddd7bf8554c747dbb.js?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11462
+ Started GET "/assets/tinymce.self-75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070.js?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11463
+ Started GET "/assets/guts/fonts.self-0da06d35b62d315601e7fb7fedef1f1934927be994475fdca6688624c7c18826.css?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11464
+ Started GET "/assets/guts/vendor/font-awesome.self-a68eb5c14ddaafce1013286885bab40a1ff29285f097cea7b333b34a85b6a4ee.css?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11465
+ Started GET "/assets/guts/vendor/foundation.self-649f426f98e4a6db36a77a6984aac07629daff00d65297af03439ba00e7fb99b.js?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11466
+ Started GET "/assets/guts/application.self-824368c255f7d2582069a6f7a264f3e99fe17f0df87452937fa3d1e2028fe56c.css?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11467
+ Started GET "/assets/tinymce/preinit.self-84328a53e798df12f891eb49871773fd9f925439c8630e9e22423a82ef9e6f89.js?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11468
+ Started GET "/assets/guts/vendor/jquery.self-ad66c584c2469d2bb527ba7aef5893549f1554ccc8ab3ccb43bd09ce8c3bf7a1.js?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11469
+ Started GET "/assets/guts/vendor/handlebars.self-f34dc7344cb4b7ef71749fc1095378a12419c079a2d058bf69e4a6de17d780eb.js?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11470
+ Started GET "/assets/tinymce/jquery.tinymce.self-d878a911a5016d22c370c5664e84624652229d49dedf2dd83e8ad2de87e32fb6.js?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11471
+ Started GET "/assets/guts/vendor/sweetalert.self-07a2b387624bb896641ca2f2f0fcb42793009484b2fff20af03d7ce92a894be8.js?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11472
+ Started GET "/assets/tinymce-jquery.self-6a3cf5192354f71615ac51034b3e97c20eda99643fcaf5bbe6d41ad59bd12167.js?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11473
+ Started GET "/assets/guts/application.self-db42514109cad7c09b3c218818b4fafbf614183310eab7a50adf12a8c2046e4a.js?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11474
+ Started GET "/assets/guts/media.self-243b7f0ede15390ebb86e655d29b004593461c3106794146a473672b5b07b8de.js?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11475
+ Started GET "/assets/guts/vendor/sortable.self-18564bbd5cbc6049b2a7404b36efff38a45e41c004daf49be4317f07a036fb4e.js?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11476
+ Started GET "/assets/guts/navigation.self-c8876c71c4b285cf990cf86e930bddd3227dd9fd9f9b0b3c6eb7ea5b61d60f15.js?body=1" for ::1 at 2016-12-15 18:12:22 -0400
11477
+ Started GET "/guts" for ::1 at 2016-12-15 18:12:25 -0400
11478
+ Processing by Guts::IndexController#index as HTML
11479
+ Guts::Site Load (0.7ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11480
+ Guts::User Load (0.4ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11481
+ Guts::Group Load (0.2ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
11482
+ Guts::Permission Load (0.1ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
11483
+ Redirected to http://localhost:3000/guts/session/login
11484
+ Completed 302 Found in 16ms (ActiveRecord: 1.4ms)
11485
+
11486
+
11487
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:12:25 -0400
11488
+ Processing by Guts::SessionsController#new as HTML
11489
+ Guts::Site Load (0.6ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11490
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11491
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
11492
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (2.7ms)
11493
+ Rendered guts/application/_layout_hook.html.erb (0.3ms)
11494
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (15.2ms)
11495
+ Guts::Group Load (0.5ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
11496
+ Guts::Permission Load (0.2ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
11497
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (4.9ms)
11498
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.5ms)
11499
+ Completed 200 OK in 62ms (Views: 57.7ms | ActiveRecord: 1.3ms)
11500
+
11501
+
11502
+ Started GET "/guts/session/logout" for ::1 at 2016-12-15 18:12:40 -0400
11503
+ Processing by Guts::SessionsController#destroy as HTML
11504
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11505
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11506
+ Redirected to http://localhost:3000/guts/session/login
11507
+ Completed 302 Found in 30ms (ActiveRecord: 1.7ms)
11508
+
11509
+
11510
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:12:40 -0400
11511
+ Processing by Guts::SessionsController#new as HTML
11512
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11513
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11514
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
11515
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (1.9ms)
11516
+ Rendered guts/application/_layout_hook.html.erb (0.4ms)
11517
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (15.8ms)
11518
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (1.9ms)
11519
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.5ms)
11520
+ Completed 200 OK in 65ms (Views: 59.7ms | ActiveRecord: 0.2ms)
11521
+
11522
+
11523
+ Started GET "/guts" for ::1 at 2016-12-15 18:12:43 -0400
11524
+ Processing by Guts::IndexController#index as HTML
11525
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11526
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11527
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application
11528
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application (3.4ms)
11529
+ Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.3ms)
11530
+
11531
+
11532
+
11533
+ ActionView::Template::Error (undefined method `name' for nil:NilClass):
11534
+ 2: <div class="small-12 columns">
11535
+ 3: <h1>Welcome</h1>
11536
+ 4:
11537
+ 5: <p>Hello <%= current_user.name %>! Please use the navigation on the left to administer.</p>
11538
+ 6: </div>
11539
+ 7: </div>
11540
+
11541
+ /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb:5:in `___sers_tyler__evelopment__it_ub_guts_app_views_guts_index_index_html_erb___1486032885231174614_70345562063900'
11542
+ actionview (5.0.0.1) lib/action_view/template.rb:158:in `block in render'
11543
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:166:in `instrument'
11544
+ actionview (5.0.0.1) lib/action_view/template.rb:348:in `instrument'
11545
+ actionview (5.0.0.1) lib/action_view/template.rb:156:in `render'
11546
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
11547
+ actionview (5.0.0.1) lib/action_view/renderer/abstract_renderer.rb:42:in `block in instrument'
11548
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
11549
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
11550
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
11551
+ actionview (5.0.0.1) lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'
11552
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
11553
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
11554
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
11555
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:14:in `render'
11556
+ actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
11557
+ actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:23:in `render'
11558
+ actionview (5.0.0.1) lib/action_view/rendering.rb:103:in `_render_template'
11559
+ actionpack (5.0.0.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
11560
+ actionview (5.0.0.1) lib/action_view/rendering.rb:83:in `render_to_body'
11561
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
11562
+ actionpack (5.0.0.1) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
11563
+ actionpack (5.0.0.1) lib/abstract_controller/rendering.rb:26:in `render'
11564
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:36:in `render'
11565
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
11566
+ activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
11567
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
11568
+ activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
11569
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
11570
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
11571
+ activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
11572
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:43:in `render'
11573
+ actionpack (5.0.0.1) lib/action_controller/metal/implicit_render.rb:36:in `default_render'
11574
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
11575
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'
11576
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
11577
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
11578
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
11579
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
11580
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
11581
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
11582
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
11583
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:448:in `block (2 levels) in around'
11584
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:286:in `block (2 levels) in halting'
11585
+ /Users/tyler/Development/GitHub/guts/app/concerns/guts/multisite_concern.rb:23:in `with_current_site'
11586
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:382:in `block in make_lambda'
11587
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:285:in `block in halting'
11588
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:447:in `block in around'
11589
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
11590
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
11591
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
11592
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
11593
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
11594
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
11595
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
11596
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
11597
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
11598
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
11599
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
11600
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
11601
+ activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
11602
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
11603
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
11604
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
11605
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
11606
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
11607
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
11608
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
11609
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
11610
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
11611
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
11612
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
11613
+ railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
11614
+ railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
11615
+ actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
11616
+ actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
11617
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
11618
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
11619
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
11620
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
11621
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
11622
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
11623
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
11624
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
11625
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
11626
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
11627
+ activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
11628
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
11629
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
11630
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
11631
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
11632
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
11633
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
11634
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
11635
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
11636
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
11637
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
11638
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
11639
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
11640
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
11641
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
11642
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
11643
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
11644
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
11645
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
11646
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
11647
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
11648
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
11649
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
11650
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
11651
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
11652
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
11653
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
11654
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
11655
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
11656
+ Started GET "/guts" for ::1 at 2016-12-15 18:12:43 -0400
11657
+ Processing by Guts::IndexController#index as HTML
11658
+ Guts::Site Load (0.8ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11659
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11660
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
11661
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application
11662
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.3ms)
11663
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application (2.4ms)
11664
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
11665
+ Completed 500 Internal Server Error in 39ms (ActiveRecord: 1.0ms)
11666
+
11667
+
11668
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
11669
+
11670
+ ActionView::Template::Error (undefined method `name' for nil:NilClass):
11671
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
11672
+ 2: <div class="small-12 columns">
11673
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
11674
+ 3: <h1>Welcome</h1>
11675
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (105.5ms)
11676
+ 4:
11677
+ 5: <p>Hello <%= current_user.name %>! Please use the navigation on the left to administer.</p>
11678
+ 6: </div>
11679
+ 7: </div>
11680
+
11681
+ /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb:5:in `___sers_tyler__evelopment__it_ub_guts_app_views_guts_index_index_html_erb___1486032885231174614_70345583024760'
11682
+ actionview (5.0.0.1) lib/action_view/template.rb:158:in `block in render'
11683
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:166:in `instrument'
11684
+ actionview (5.0.0.1) lib/action_view/template.rb:348:in `instrument'
11685
+ actionview (5.0.0.1) lib/action_view/template.rb:156:in `render'
11686
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
11687
+ actionview (5.0.0.1) lib/action_view/renderer/abstract_renderer.rb:42:in `block in instrument'
11688
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
11689
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
11690
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
11691
+ actionview (5.0.0.1) lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'
11692
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
11693
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
11694
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
11695
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:14:in `render'
11696
+ actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
11697
+ actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:23:in `render'
11698
+ actionview (5.0.0.1) lib/action_view/rendering.rb:103:in `_render_template'
11699
+ actionpack (5.0.0.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
11700
+ actionview (5.0.0.1) lib/action_view/rendering.rb:83:in `render_to_body'
11701
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
11702
+ actionpack (5.0.0.1) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
11703
+ actionpack (5.0.0.1) lib/abstract_controller/rendering.rb:26:in `render'
11704
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:36:in `render'
11705
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
11706
+ activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
11707
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
11708
+ activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
11709
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
11710
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
11711
+ activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
11712
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:43:in `render'
11713
+ actionpack (5.0.0.1) lib/action_controller/metal/implicit_render.rb:36:in `default_render'
11714
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
11715
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'
11716
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
11717
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
11718
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
11719
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
11720
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
11721
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
11722
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
11723
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:448:in `block (2 levels) in around'
11724
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:286:in `block (2 levels) in halting'
11725
+ /Users/tyler/Development/GitHub/guts/app/concerns/guts/multisite_concern.rb:23:in `with_current_site'
11726
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:382:in `block in make_lambda'
11727
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:285:in `block in halting'
11728
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:447:in `block in around'
11729
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
11730
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
11731
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
11732
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
11733
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
11734
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
11735
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
11736
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
11737
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
11738
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
11739
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
11740
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
11741
+ activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
11742
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
11743
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
11744
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
11745
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
11746
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
11747
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
11748
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
11749
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
11750
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
11751
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
11752
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
11753
+ railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
11754
+ railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
11755
+ actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
11756
+ actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
11757
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
11758
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
11759
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
11760
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
11761
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
11762
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
11763
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
11764
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
11765
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
11766
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
11767
+ activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
11768
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
11769
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
11770
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
11771
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
11772
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
11773
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
11774
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
11775
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
11776
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
11777
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
11778
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
11779
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
11780
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
11781
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
11782
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
11783
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
11784
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
11785
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
11786
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
11787
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
11788
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
11789
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
11790
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
11791
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
11792
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
11793
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
11794
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
11795
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
11796
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
11797
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.7ms)
11798
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
11799
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
11800
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
11801
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
11802
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (65.8ms)
11803
+ Started POST "/guts/session/login" for ::1 at 2016-12-15 18:13:13 -0400
11804
+
11805
+ ArgumentError (Invalid route name, already in use: 'guts_types_explode'
11806
+ You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here:
11807
+ http://guides.rubyonrails.org/routing.html#restricting-the-routes-created):
11808
+
11809
+ config/routes.rb:2:in `block in <top (required)>'
11810
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
11811
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
11812
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.6ms)
11813
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
11814
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
11815
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
11816
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms)
11817
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (99.9ms)
11818
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:13:21 -0400
11819
+ Processing by Guts::SessionsController#new as HTML
11820
+ Guts::Site Load (0.2ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11821
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11822
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
11823
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (19.9ms)
11824
+ Rendered guts/application/_layout_hook.html.erb (0.3ms)
11825
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (574.2ms)
11826
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (1.6ms)
11827
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.8ms)
11828
+ Completed 200 OK in 765ms (Views: 701.1ms | ActiveRecord: 2.4ms)
11829
+
11830
+
11831
+ Started GET "/assets/guts/fonts.self-0da06d35b62d315601e7fb7fedef1f1934927be994475fdca6688624c7c18826.css?body=1" for ::1 at 2016-12-15 18:13:21 -0400
11832
+ Started GET "/assets/guts/application.self-824368c255f7d2582069a6f7a264f3e99fe17f0df87452937fa3d1e2028fe56c.css?body=1" for ::1 at 2016-12-15 18:13:21 -0400
11833
+ Started GET "/assets/tinymce/preinit.self-84328a53e798df12f891eb49871773fd9f925439c8630e9e22423a82ef9e6f89.js?body=1" for ::1 at 2016-12-15 18:13:21 -0400
11834
+ Started GET "/assets/guts/vendor/sweetalert.self-93ae81483be2e9705db4cd911fa410bc2cf6c24f355dc5ac899de49fab854e63.css?body=1" for ::1 at 2016-12-15 18:13:22 -0400
11835
+ Started GET "/assets/guts/vendor/font-awesome.self-a68eb5c14ddaafce1013286885bab40a1ff29285f097cea7b333b34a85b6a4ee.css?body=1" for ::1 at 2016-12-15 18:13:22 -0400
11836
+ Started GET "/assets/guts/vendor/jquery.self-ad66c584c2469d2bb527ba7aef5893549f1554ccc8ab3ccb43bd09ce8c3bf7a1.js?body=1" for ::1 at 2016-12-15 18:13:22 -0400
11837
+ Started GET "/assets/tinymce/tinymce.self-526527aa5e646820f9f6661370872c86d41c57daf0bbc9cddd7bf8554c747dbb.js?body=1" for ::1 at 2016-12-15 18:13:22 -0400
11838
+ Started GET "/assets/guts/vendor/foundation.self-649f426f98e4a6db36a77a6984aac07629daff00d65297af03439ba00e7fb99b.js?body=1" for ::1 at 2016-12-15 18:13:22 -0400
11839
+ Started GET "/assets/guts/vendor/handlebars.self-f34dc7344cb4b7ef71749fc1095378a12419c079a2d058bf69e4a6de17d780eb.js?body=1" for ::1 at 2016-12-15 18:13:22 -0400
11840
+ Started GET "/assets/tinymce.self-75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070.js?body=1" for ::1 at 2016-12-15 18:13:22 -0400
11841
+ Started GET "/assets/guts/vendor/foundation.self-c32902b7f65cb1bd7707442ee620bf9a0a030130c9867e98df01ef3811f569ff.css?body=1" for ::1 at 2016-12-15 18:13:22 -0400
11842
+ Started GET "/assets/guts/vendor/sweetalert.self-07a2b387624bb896641ca2f2f0fcb42793009484b2fff20af03d7ce92a894be8.js?body=1" for ::1 at 2016-12-15 18:13:22 -0400
11843
+ Started GET "/assets/guts/vendor/sortable.self-18564bbd5cbc6049b2a7404b36efff38a45e41c004daf49be4317f07a036fb4e.js?body=1" for ::1 at 2016-12-15 18:13:22 -0400
11844
+ Started GET "/assets/tinymce-jquery.self-6a3cf5192354f71615ac51034b3e97c20eda99643fcaf5bbe6d41ad59bd12167.js?body=1" for ::1 at 2016-12-15 18:13:22 -0400
11845
+ Started GET "/assets/tinymce/jquery.tinymce.self-d878a911a5016d22c370c5664e84624652229d49dedf2dd83e8ad2de87e32fb6.js?body=1" for ::1 at 2016-12-15 18:13:22 -0400
11846
+ Started GET "/assets/guts/media.self-243b7f0ede15390ebb86e655d29b004593461c3106794146a473672b5b07b8de.js?body=1" for ::1 at 2016-12-15 18:13:22 -0400
11847
+ Started GET "/assets/guts/navigation.self-c8876c71c4b285cf990cf86e930bddd3227dd9fd9f9b0b3c6eb7ea5b61d60f15.js?body=1" for ::1 at 2016-12-15 18:13:22 -0400
11848
+ Started GET "/assets/guts/application.self-db42514109cad7c09b3c218818b4fafbf614183310eab7a50adf12a8c2046e4a.js?body=1" for ::1 at 2016-12-15 18:13:22 -0400
11849
+ Started POST "/guts/session/login" for ::1 at 2016-12-15 18:13:26 -0400
11850
+ Processing by Guts::SessionsController#create as HTML
11851
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"4ww/yGyLW1loY4GK8O/Mt/ZylSy+GSZWTp/JnVOc+XqmCtPZPv3u6yLUsEd2BTbaLiUncIEKG18vv67UucnnNA==", "commit"=>"Login", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
11852
+ Guts::Site Load (0.5ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11853
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11854
+ Guts::User Load (0.3ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
11855
+ Redirected to http://localhost:3000/guts/users
11856
+ Completed 302 Found in 92ms (ActiveRecord: 1.6ms)
11857
+
11858
+
11859
+ Started GET "/guts/users" for ::1 at 2016-12-15 18:13:27 -0400
11860
+ Processing by Guts::UsersController#index as HTML
11861
+ Guts::Site Load (2.0ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11862
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11863
+ Guts::Group Load (0.3ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
11864
+ Guts::Permission Load (0.3ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
11865
+ Redirected to http://localhost:3000/guts/session/login
11866
+ Completed 302 Found in 92ms (ActiveRecord: 4.0ms)
11867
+
11868
+
11869
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:13:27 -0400
11870
+ Processing by Guts::SessionsController#new as HTML
11871
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11872
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11873
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
11874
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (1.8ms)
11875
+ Rendered guts/application/_layout_hook.html.erb (0.7ms)
11876
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (17.2ms)
11877
+ Guts::Group Load (0.2ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
11878
+ Guts::Permission Load (0.2ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
11879
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (44.7ms)
11880
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.4ms)
11881
+ Completed 200 OK in 114ms (Views: 109.9ms | ActiveRecord: 0.6ms)
11882
+
11883
+
11884
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:18:33 -0400
11885
+ Processing by Guts::SessionsController#new as HTML
11886
+ Guts::Site Load (0.2ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11887
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11888
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
11889
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (1.9ms)
11890
+ Rendered guts/application/_layout_hook.html.erb (0.4ms)
11891
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (18.6ms)
11892
+ Guts::Group Load (0.1ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
11893
+ Guts::Permission Load (0.2ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
11894
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (57.0ms)
11895
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.5ms)
11896
+ Completed 200 OK in 146ms (Views: 117.3ms | ActiveRecord: 2.8ms)
11897
+
11898
+
11899
+ Started GET "/assets/guts/vendor/sweetalert.self-93ae81483be2e9705db4cd911fa410bc2cf6c24f355dc5ac899de49fab854e63.css?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11900
+ Started GET "/assets/guts/fonts.self-0da06d35b62d315601e7fb7fedef1f1934927be994475fdca6688624c7c18826.css?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11901
+ Started GET "/assets/guts/application.self-824368c255f7d2582069a6f7a264f3e99fe17f0df87452937fa3d1e2028fe56c.css?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11902
+ Started GET "/assets/tinymce/tinymce.self-526527aa5e646820f9f6661370872c86d41c57daf0bbc9cddd7bf8554c747dbb.js?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11903
+ Started GET "/assets/tinymce/preinit.self-84328a53e798df12f891eb49871773fd9f925439c8630e9e22423a82ef9e6f89.js?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11904
+ Started GET "/assets/guts/vendor/jquery.self-ad66c584c2469d2bb527ba7aef5893549f1554ccc8ab3ccb43bd09ce8c3bf7a1.js?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11905
+ Started GET "/assets/guts/vendor/foundation.self-649f426f98e4a6db36a77a6984aac07629daff00d65297af03439ba00e7fb99b.js?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11906
+ Started GET "/assets/guts/vendor/font-awesome.self-a68eb5c14ddaafce1013286885bab40a1ff29285f097cea7b333b34a85b6a4ee.css?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11907
+ Started GET "/assets/guts/vendor/foundation.self-c32902b7f65cb1bd7707442ee620bf9a0a030130c9867e98df01ef3811f569ff.css?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11908
+ Started GET "/assets/tinymce.self-75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070.js?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11909
+ Started GET "/assets/guts/vendor/sweetalert.self-07a2b387624bb896641ca2f2f0fcb42793009484b2fff20af03d7ce92a894be8.js?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11910
+ Started GET "/assets/guts/vendor/sortable.self-18564bbd5cbc6049b2a7404b36efff38a45e41c004daf49be4317f07a036fb4e.js?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11911
+ Started GET "/assets/guts/media.self-243b7f0ede15390ebb86e655d29b004593461c3106794146a473672b5b07b8de.js?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11912
+ Started GET "/assets/guts/vendor/handlebars.self-f34dc7344cb4b7ef71749fc1095378a12419c079a2d058bf69e4a6de17d780eb.js?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11913
+ Started GET "/assets/guts/navigation.self-c8876c71c4b285cf990cf86e930bddd3227dd9fd9f9b0b3c6eb7ea5b61d60f15.js?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11914
+ Started GET "/assets/tinymce-jquery.self-6a3cf5192354f71615ac51034b3e97c20eda99643fcaf5bbe6d41ad59bd12167.js?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11915
+ Started GET "/assets/tinymce/jquery.tinymce.self-d878a911a5016d22c370c5664e84624652229d49dedf2dd83e8ad2de87e32fb6.js?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11916
+ Started GET "/assets/guts/application.self-db42514109cad7c09b3c218818b4fafbf614183310eab7a50adf12a8c2046e4a.js?body=1" for ::1 at 2016-12-15 18:18:33 -0400
11917
+ Started GET "/guts" for ::1 at 2016-12-15 18:18:38 -0400
11918
+ Processing by Guts::IndexController#index as HTML
11919
+ Guts::Site Load (0.5ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11920
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11921
+ Guts::Group Load (0.2ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
11922
+ Guts::Permission Load (0.1ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
11923
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application
11924
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application (0.5ms)
11925
+ Rendered guts/application/_layout_hook.html.erb (0.3ms)
11926
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (12.9ms)
11927
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (2.1ms)
11928
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.5ms)
11929
+ Completed 200 OK in 62ms (Views: 48.0ms | ActiveRecord: 1.0ms)
11930
+
11931
+
11932
+ Started GET "/guts/session/logout" for ::1 at 2016-12-15 18:18:46 -0400
11933
+ Processing by Guts::SessionsController#destroy as HTML
11934
+ Guts::Site Load (0.5ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11935
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
11936
+ Redirected to http://localhost:3000/guts/session/login
11937
+ Completed 302 Found in 2ms (ActiveRecord: 0.7ms)
11938
+
11939
+
11940
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:18:46 -0400
11941
+ Processing by Guts::SessionsController#new as HTML
11942
+ Guts::Site Load (0.6ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11943
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11944
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
11945
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (2.8ms)
11946
+ Rendered guts/application/_layout_hook.html.erb (0.4ms)
11947
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (15.8ms)
11948
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (1.6ms)
11949
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.4ms)
11950
+ Completed 200 OK in 58ms (Views: 53.7ms | ActiveRecord: 0.8ms)
11951
+
11952
+
11953
+ Started GET "/guts" for ::1 at 2016-12-15 18:18:52 -0400
11954
+ Processing by Guts::IndexController#index as HTML
11955
+ Guts::Site Load (0.3ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
11956
+ Guts::User Load (0.9ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11957
+ CACHE (0.0ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
11958
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application
11959
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application (4.9ms)
11960
+ Completed 500 Internal Server Error in 34ms (ActiveRecord: 1.5ms)
11961
+
11962
+
11963
+
11964
+ ActionView::Template::Error (undefined method `name' for nil:NilClass):
11965
+ 2: <div class="small-12 columns">
11966
+ 3: <h1>Welcome</h1>
11967
+ 4:
11968
+ 5: <p>Hello <%= current_user.name %>! Please use the navigation on the left to administer.</p>
11969
+ 6: </div>
11970
+ 7: </div>
11971
+
11972
+ /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb:5:in `___sers_tyler__evelopment__it_ub_guts_app_views_guts_index_index_html_erb__3826161561572220481_70093883668500'
11973
+ actionview (5.0.0.1) lib/action_view/template.rb:158:in `block in render'
11974
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:166:in `instrument'
11975
+ actionview (5.0.0.1) lib/action_view/template.rb:348:in `instrument'
11976
+ actionview (5.0.0.1) lib/action_view/template.rb:156:in `render'
11977
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
11978
+ actionview (5.0.0.1) lib/action_view/renderer/abstract_renderer.rb:42:in `block in instrument'
11979
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
11980
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
11981
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
11982
+ actionview (5.0.0.1) lib/action_view/renderer/abstract_renderer.rb:41:in `instrument'
11983
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
11984
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
11985
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
11986
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:14:in `render'
11987
+ actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
11988
+ actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:23:in `render'
11989
+ actionview (5.0.0.1) lib/action_view/rendering.rb:103:in `_render_template'
11990
+ actionpack (5.0.0.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
11991
+ actionview (5.0.0.1) lib/action_view/rendering.rb:83:in `render_to_body'
11992
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
11993
+ actionpack (5.0.0.1) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
11994
+ actionpack (5.0.0.1) lib/abstract_controller/rendering.rb:26:in `render'
11995
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:36:in `render'
11996
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
11997
+ activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
11998
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
11999
+ activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
12000
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
12001
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
12002
+ activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
12003
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:43:in `render'
12004
+ actionpack (5.0.0.1) lib/action_controller/metal/implicit_render.rb:36:in `default_render'
12005
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
12006
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'
12007
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
12008
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
12009
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
12010
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
12011
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
12012
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
12013
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
12014
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:448:in `block (2 levels) in around'
12015
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:286:in `block (2 levels) in halting'
12016
+ /Users/tyler/Development/GitHub/guts/app/concerns/guts/multisite_concern.rb:23:in `with_current_site'
12017
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:382:in `block in make_lambda'
12018
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:285:in `block in halting'
12019
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:447:in `block in around'
12020
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
12021
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
12022
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
12023
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
12024
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
12025
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
12026
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
12027
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
12028
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
12029
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
12030
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
12031
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
12032
+ activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
12033
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
12034
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
12035
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
12036
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
12037
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
12038
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
12039
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
12040
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
12041
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
12042
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
12043
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
12044
+ railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
12045
+ railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
12046
+ actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
12047
+ actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
12048
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
12049
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
12050
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
12051
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
12052
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
12053
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
12054
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
12055
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
12056
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
12057
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
12058
+ activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
12059
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
12060
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
12061
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
12062
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
12063
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
12064
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
12065
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
12066
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
12067
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
12068
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
12069
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
12070
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
12071
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
12072
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
12073
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
12074
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
12075
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
12076
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
12077
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
12078
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
12079
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
12080
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
12081
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
12082
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
12083
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
12084
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
12085
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
12086
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
12087
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
12088
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.8ms)
12089
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
12090
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms)
12091
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
12092
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
12093
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (74.7ms)
12094
+ Started GET "/guts" for ::1 at 2016-12-15 18:19:43 -0400
12095
+
12096
+ ArgumentError (Invalid route name, already in use: 'guts_types_explode'
12097
+ You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here:
12098
+ http://guides.rubyonrails.org/routing.html#restricting-the-routes-created):
12099
+
12100
+ config/routes.rb:2:in `block in <top (required)>'
12101
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
12102
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
12103
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.8ms)
12104
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
12105
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
12106
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
12107
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
12108
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (64.2ms)
12109
+ Started GET "/guts" for ::1 at 2016-12-15 18:20:01 -0400
12110
+ Processing by Guts::IndexController#index as HTML
12111
+ Guts::Site Load (0.2ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12112
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12113
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12114
+ Redirected to http://localhost:3000/guts/session/login
12115
+ Completed 302 Found in 144ms (ActiveRecord: 4.2ms)
12116
+
12117
+
12118
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:20:02 -0400
12119
+ Processing by Guts::SessionsController#new as HTML
12120
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12121
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12122
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
12123
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (16.0ms)
12124
+ Rendered guts/application/_layout_hook.html.erb (0.3ms)
12125
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (665.6ms)
12126
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (2.1ms)
12127
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.6ms)
12128
+ Completed 200 OK in 804ms (Views: 799.2ms | ActiveRecord: 0.3ms)
12129
+
12130
+
12131
+ Started GET "/assets/guts/vendor/foundation.self-c32902b7f65cb1bd7707442ee620bf9a0a030130c9867e98df01ef3811f569ff.css?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12132
+ Started GET "/assets/guts/vendor/sweetalert.self-93ae81483be2e9705db4cd911fa410bc2cf6c24f355dc5ac899de49fab854e63.css?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12133
+ Started GET "/assets/guts/application.self-824368c255f7d2582069a6f7a264f3e99fe17f0df87452937fa3d1e2028fe56c.css?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12134
+ Started GET "/assets/guts/vendor/font-awesome.self-a68eb5c14ddaafce1013286885bab40a1ff29285f097cea7b333b34a85b6a4ee.css?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12135
+ Started GET "/assets/tinymce/tinymce.self-526527aa5e646820f9f6661370872c86d41c57daf0bbc9cddd7bf8554c747dbb.js?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12136
+ Started GET "/assets/tinymce.self-75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070.js?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12137
+ Started GET "/assets/tinymce/preinit.self-84328a53e798df12f891eb49871773fd9f925439c8630e9e22423a82ef9e6f89.js?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12138
+ Started GET "/assets/guts/vendor/handlebars.self-f34dc7344cb4b7ef71749fc1095378a12419c079a2d058bf69e4a6de17d780eb.js?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12139
+ Started GET "/assets/guts/vendor/foundation.self-649f426f98e4a6db36a77a6984aac07629daff00d65297af03439ba00e7fb99b.js?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12140
+ Started GET "/assets/guts/fonts.self-0da06d35b62d315601e7fb7fedef1f1934927be994475fdca6688624c7c18826.css?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12141
+ Started GET "/assets/guts/vendor/jquery.self-ad66c584c2469d2bb527ba7aef5893549f1554ccc8ab3ccb43bd09ce8c3bf7a1.js?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12142
+ Started GET "/assets/guts/vendor/sortable.self-18564bbd5cbc6049b2a7404b36efff38a45e41c004daf49be4317f07a036fb4e.js?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12143
+ Started GET "/assets/tinymce/jquery.tinymce.self-d878a911a5016d22c370c5664e84624652229d49dedf2dd83e8ad2de87e32fb6.js?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12144
+ Started GET "/assets/guts/vendor/sweetalert.self-07a2b387624bb896641ca2f2f0fcb42793009484b2fff20af03d7ce92a894be8.js?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12145
+ Started GET "/assets/tinymce-jquery.self-6a3cf5192354f71615ac51034b3e97c20eda99643fcaf5bbe6d41ad59bd12167.js?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12146
+ Started GET "/assets/guts/navigation.self-c8876c71c4b285cf990cf86e930bddd3227dd9fd9f9b0b3c6eb7ea5b61d60f15.js?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12147
+ Started GET "/assets/guts/media.self-243b7f0ede15390ebb86e655d29b004593461c3106794146a473672b5b07b8de.js?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12148
+ Started GET "/assets/guts/application.self-db42514109cad7c09b3c218818b4fafbf614183310eab7a50adf12a8c2046e4a.js?body=1" for ::1 at 2016-12-15 18:20:03 -0400
12149
+ Started POST "/guts/session/login" for ::1 at 2016-12-15 18:20:12 -0400
12150
+ Processing by Guts::SessionsController#create as HTML
12151
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"BFF+6vsO+Hpx/FZUvQDLP9Wtpc6ygExtM7CK4IRHTStBV5L7qXhNyDtLZ5k76jFSDfoXko2TcWRSkO2pbhJTZQ==", "commit"=>"Login", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
12152
+ Guts::Site Load (1.7ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12153
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12154
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
12155
+ Redirected to http://localhost:3000/guts/users
12156
+ Completed 302 Found in 88ms (ActiveRecord: 2.1ms)
12157
+
12158
+
12159
+ Started GET "/guts/users" for ::1 at 2016-12-15 18:20:13 -0400
12160
+ Processing by Guts::UsersController#index as HTML
12161
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12162
+ Guts::User Load (0.3ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
12163
+ Guts::Group Load (0.4ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
12164
+ Guts::Permission Load (0.8ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
12165
+ Redirected to http://localhost:3000/guts/session/login
12166
+ Completed 302 Found in 50ms (ActiveRecord: 2.1ms)
12167
+
12168
+
12169
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:20:13 -0400
12170
+ Processing by Guts::SessionsController#new as HTML
12171
+ Guts::Site Load (0.8ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12172
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
12173
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
12174
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (1.9ms)
12175
+ Rendered guts/application/_layout_hook.html.erb (0.4ms)
12176
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (24.8ms)
12177
+ Guts::Group Load (0.2ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
12178
+ Guts::Permission Load (0.2ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
12179
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (58.5ms)
12180
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.5ms)
12181
+ Completed 200 OK in 133ms (Views: 126.4ms | ActiveRecord: 1.4ms)
12182
+
12183
+
12184
+ Started GET "/guts" for ::1 at 2016-12-15 18:25:59 -0400
12185
+ Processing by Guts::IndexController#index as HTML
12186
+ Guts::Site Load (0.7ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12187
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
12188
+ Guts::Group Load (0.2ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
12189
+ Guts::Permission Load (0.2ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
12190
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application
12191
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application (0.5ms)
12192
+ Rendered guts/application/_layout_hook.html.erb (0.5ms)
12193
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (20.9ms)
12194
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (2.3ms)
12195
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.5ms)
12196
+ Completed 200 OK in 90ms (Views: 69.8ms | ActiveRecord: 1.3ms)
12197
+
12198
+
12199
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:26:04 -0400
12200
+ Processing by Guts::SessionsController#new as HTML
12201
+ Guts::Site Load (0.5ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12202
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
12203
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
12204
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (4.2ms)
12205
+ Rendered guts/application/_layout_hook.html.erb (0.3ms)
12206
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (13.8ms)
12207
+ Guts::Group Load (0.2ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
12208
+ Guts::Permission Load (0.2ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
12209
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (6.4ms)
12210
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.7ms)
12211
+ Completed 200 OK in 63ms (Views: 58.6ms | ActiveRecord: 1.0ms)
12212
+
12213
+
12214
+ Started GET "/guts/session/logout" for ::1 at 2016-12-15 18:26:11 -0400
12215
+ Processing by Guts::SessionsController#destroy as HTML
12216
+ Guts::Site Load (0.4ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12217
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
12218
+ Redirected to http://localhost:3000/guts/session/login
12219
+ Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
12220
+
12221
+
12222
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:26:11 -0400
12223
+ Processing by Guts::SessionsController#new as HTML
12224
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12225
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12226
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
12227
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (1.6ms)
12228
+ Rendered guts/application/_layout_hook.html.erb (1.1ms)
12229
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (15.9ms)
12230
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (1.2ms)
12231
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.4ms)
12232
+ Completed 200 OK in 58ms (Views: 54.0ms | ActiveRecord: 0.2ms)
12233
+
12234
+
12235
+ Started POST "/guts/session/login" for ::1 at 2016-12-15 18:26:18 -0400
12236
+ Processing by Guts::SessionsController#create as HTML
12237
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"bXxnh7PNmSXuEJYuzKhCX1U+tdjnFpcbLfqsFyBGEZ8oeouW4bssl6Snp+NKQrgyjWkHhNgFqhJM2steyhMP0Q==", "commit"=>"Login", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
12238
+ Guts::Site Load (0.2ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12239
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12240
+ Guts::User Load (0.7ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
12241
+ Redirected to http://localhost:3000/guts/users
12242
+ Completed 302 Found in 82ms (ActiveRecord: 1.0ms)
12243
+
12244
+
12245
+ Started GET "/guts/users" for ::1 at 2016-12-15 18:26:18 -0400
12246
+ Processing by Guts::UsersController#index as HTML
12247
+ Guts::Site Load (0.3ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12248
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
12249
+ Guts::Group Load (0.9ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
12250
+ Guts::Permission Load (1.0ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
12251
+ Redirected to http://localhost:3000/guts/session/login
12252
+ Completed 302 Found in 33ms (ActiveRecord: 2.4ms)
12253
+
12254
+
12255
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:26:18 -0400
12256
+ Processing by Guts::SessionsController#new as HTML
12257
+ Guts::Site Load (0.3ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12258
+ Guts::User Load (0.3ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
12259
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
12260
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (1.8ms)
12261
+ Rendered guts/application/_layout_hook.html.erb (2.0ms)
12262
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (24.3ms)
12263
+ Guts::Group Load (0.3ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
12264
+ Guts::Permission Load (0.2ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
12265
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (9.7ms)
12266
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.8ms)
12267
+ Completed 200 OK in 100ms (Views: 88.8ms | ActiveRecord: 1.0ms)
12268
+
12269
+
12270
+ Started GET "/guts/session/logout" for ::1 at 2016-12-15 18:26:53 -0400
12271
+
12272
+ ArgumentError (Invalid route name, already in use: 'guts_types_explode'
12273
+ You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here:
12274
+ http://guides.rubyonrails.org/routing.html#restricting-the-routes-created):
12275
+
12276
+ config/routes.rb:2:in `block in <top (required)>'
12277
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
12278
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
12279
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.1ms)
12280
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
12281
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
12282
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
12283
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
12284
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (66.0ms)
12285
+ Started GET "/guts/session/logout" for ::1 at 2016-12-15 18:27:05 -0400
12286
+ Processing by Guts::SessionsController#destroy as HTML
12287
+ Guts::Site Load (0.2ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12288
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
12289
+ Redirected to http://localhost:3000/guts/session/login
12290
+ Completed 302 Found in 79ms (ActiveRecord: 3.8ms)
12291
+
12292
+
12293
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:27:06 -0400
12294
+ Processing by Guts::SessionsController#new as HTML
12295
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12296
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12297
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
12298
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (28.4ms)
12299
+ Rendered guts/application/_layout_hook.html.erb (0.3ms)
12300
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (637.9ms)
12301
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (1.1ms)
12302
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.3ms)
12303
+ Completed 200 OK in 781ms (Views: 775.2ms | ActiveRecord: 0.2ms)
12304
+
12305
+
12306
+ Started POST "/guts/session/login" for ::1 at 2016-12-15 18:27:16 -0400
12307
+ Processing by Guts::SessionsController#create as HTML
12308
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"GgIhJ4+RMohVbXLvFH2VqU7PTwVwFq/TmK7pCTt+cu9fBM023eeHOh/aQyKSl2/Elpj9WU8Fktr5jo5A0StsoQ==", "commit"=>"Login", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
12309
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12310
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12311
+ Guts::User Load (0.4ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
12312
+ Completed 500 Internal Server Error in 88ms (ActiveRecord: 0.6ms)
12313
+
12314
+
12315
+
12316
+ NameError (undefined local variable or method `index_path' for #<Guts::SessionsController:0x007fd8dd569768>):
12317
+
12318
+ /Users/tyler/Development/GitHub/guts/app/controllers/guts/sessions_controller.rb:19:in `create'
12319
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
12320
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
12321
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
12322
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
12323
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
12324
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
12325
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
12326
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:448:in `block (2 levels) in around'
12327
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:286:in `block (2 levels) in halting'
12328
+ /Users/tyler/Development/GitHub/guts/app/concerns/guts/multisite_concern.rb:23:in `with_current_site'
12329
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:382:in `block in make_lambda'
12330
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:285:in `block in halting'
12331
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:447:in `block in around'
12332
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
12333
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
12334
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
12335
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
12336
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
12337
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
12338
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
12339
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
12340
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
12341
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
12342
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
12343
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
12344
+ activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
12345
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
12346
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
12347
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
12348
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
12349
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
12350
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
12351
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
12352
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
12353
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
12354
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
12355
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
12356
+ railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
12357
+ railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
12358
+ actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
12359
+ actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
12360
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
12361
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
12362
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
12363
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
12364
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
12365
+ rack (2.0.1) lib/rack/conditional_get.rb:38:in `call'
12366
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
12367
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
12368
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
12369
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
12370
+ activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
12371
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
12372
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
12373
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
12374
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
12375
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
12376
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
12377
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
12378
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
12379
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
12380
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
12381
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
12382
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
12383
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
12384
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
12385
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
12386
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
12387
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
12388
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
12389
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
12390
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
12391
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
12392
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
12393
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
12394
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
12395
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
12396
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
12397
+ /Users/tyler/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
12398
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
12399
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
12400
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.0ms)
12401
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
12402
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
12403
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
12404
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
12405
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (82.3ms)
12406
+ Started GET "/rails/info/routes" for ::1 at 2016-12-15 18:27:30 -0400
12407
+ Processing by Rails::InfoController#routes as HTML
12408
+ Parameters: {"internal"=>true}
12409
+ Rendering /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application
12410
+ Rendered collection of /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [1 times] (1.7ms)
12411
+ Rendered collection of /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [242 times] (54.3ms)
12412
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms)
12413
+ Rendered /Users/tyler/Development/GitHub/guts/vendor/bundle/ruby/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/info/routes.html.erb within layouts/application (80.2ms)
12414
+ Completed 200 OK in 91ms (Views: 87.3ms | ActiveRecord: 0.0ms)
12415
+
12416
+
12417
+ Started POST "/guts/session/login" for ::1 at 2016-12-15 18:27:52 -0400
12418
+ Processing by Guts::SessionsController#create as HTML
12419
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"GgIhJ4+RMohVbXLvFH2VqU7PTwVwFq/TmK7pCTt+cu9fBM023eeHOh/aQyKSl2/Elpj9WU8Fktr5jo5A0StsoQ==", "commit"=>"Login", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
12420
+ Guts::Site Load (0.2ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12421
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12422
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."email" = ? LIMIT ? [["email", "test@test.com"], ["LIMIT", 1]]
12423
+ Redirected to http://localhost:3000/guts/home
12424
+ Completed 302 Found in 101ms (ActiveRecord: 1.7ms)
12425
+
12426
+
12427
+ Started GET "/guts/home" for ::1 at 2016-12-15 18:27:53 -0400
12428
+ Processing by Guts::IndexController#index as HTML
12429
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12430
+ Guts::User Load (0.2ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
12431
+ Guts::Group Load (0.3ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 3]]
12432
+ Guts::Permission Load (0.2ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 3], ["permissionable_type", "Guts::User"]]
12433
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application
12434
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application (0.4ms)
12435
+ Rendered guts/application/_layout_hook.html.erb (0.3ms)
12436
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (14.2ms)
12437
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (55.4ms)
12438
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.5ms)
12439
+ Completed 200 OK in 169ms (Views: 101.5ms | ActiveRecord: 1.6ms)
12440
+
12441
+
12442
+ Started GET "/assets/guts/vendor/foundation.self-c32902b7f65cb1bd7707442ee620bf9a0a030130c9867e98df01ef3811f569ff.css?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12443
+ Started GET "/assets/guts/fonts.self-0da06d35b62d315601e7fb7fedef1f1934927be994475fdca6688624c7c18826.css?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12444
+ Started GET "/assets/guts/vendor/font-awesome.self-a68eb5c14ddaafce1013286885bab40a1ff29285f097cea7b333b34a85b6a4ee.css?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12445
+ Started GET "/assets/tinymce/tinymce.self-526527aa5e646820f9f6661370872c86d41c57daf0bbc9cddd7bf8554c747dbb.js?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12446
+ Started GET "/assets/tinymce.self-75a11da44c802486bc6f65640aa48a730f0f684c5c07a42ba3cd1735eb3fb070.js?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12447
+ Started GET "/assets/tinymce/preinit.self-84328a53e798df12f891eb49871773fd9f925439c8630e9e22423a82ef9e6f89.js?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12448
+ Started GET "/assets/guts/vendor/sweetalert.self-93ae81483be2e9705db4cd911fa410bc2cf6c24f355dc5ac899de49fab854e63.css?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12449
+ Started GET "/assets/guts/vendor/jquery.self-ad66c584c2469d2bb527ba7aef5893549f1554ccc8ab3ccb43bd09ce8c3bf7a1.js?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12450
+ Started GET "/assets/guts/application.self-824368c255f7d2582069a6f7a264f3e99fe17f0df87452937fa3d1e2028fe56c.css?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12451
+ Started GET "/assets/guts/vendor/handlebars.self-f34dc7344cb4b7ef71749fc1095378a12419c079a2d058bf69e4a6de17d780eb.js?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12452
+ Started GET "/assets/guts/vendor/foundation.self-649f426f98e4a6db36a77a6984aac07629daff00d65297af03439ba00e7fb99b.js?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12453
+ Started GET "/assets/guts/vendor/sweetalert.self-07a2b387624bb896641ca2f2f0fcb42793009484b2fff20af03d7ce92a894be8.js?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12454
+ Started GET "/assets/guts/vendor/sortable.self-18564bbd5cbc6049b2a7404b36efff38a45e41c004daf49be4317f07a036fb4e.js?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12455
+ Started GET "/assets/tinymce/jquery.tinymce.self-d878a911a5016d22c370c5664e84624652229d49dedf2dd83e8ad2de87e32fb6.js?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12456
+ Started GET "/assets/tinymce-jquery.self-6a3cf5192354f71615ac51034b3e97c20eda99643fcaf5bbe6d41ad59bd12167.js?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12457
+ Started GET "/assets/guts/media.self-243b7f0ede15390ebb86e655d29b004593461c3106794146a473672b5b07b8de.js?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12458
+ Started GET "/assets/guts/navigation.self-c8876c71c4b285cf990cf86e930bddd3227dd9fd9f9b0b3c6eb7ea5b61d60f15.js?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12459
+ Started GET "/assets/guts/application.self-db42514109cad7c09b3c218818b4fafbf614183310eab7a50adf12a8c2046e4a.js?body=1" for ::1 at 2016-12-15 18:27:53 -0400
12460
+ Started GET "/guts/session/logout" for ::1 at 2016-12-15 18:27:57 -0400
12461
+ Processing by Guts::SessionsController#destroy as HTML
12462
+ Guts::Site Load (0.5ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12463
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]]
12464
+ Redirected to http://localhost:3000/guts/session/login
12465
+ Completed 302 Found in 2ms (ActiveRecord: 0.6ms)
12466
+
12467
+
12468
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:27:57 -0400
12469
+ Processing by Guts::SessionsController#new as HTML
12470
+ Guts::Site Load (0.8ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12471
+ Guts::User Load (0.3ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12472
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
12473
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (2.0ms)
12474
+ Rendered guts/application/_layout_hook.html.erb (0.4ms)
12475
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (15.6ms)
12476
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (1.2ms)
12477
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.4ms)
12478
+ Completed 200 OK in 57ms (Views: 50.7ms | ActiveRecord: 1.0ms)
12479
+
12480
+
12481
+ Started GET "/guts" for ::1 at 2016-12-15 18:28:01 -0400
12482
+ Processing by Guts::IndexController#index as HTML
12483
+ Guts::Site Load (0.8ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12484
+ Guts::User Load (0.3ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12485
+ CACHE (0.0ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12486
+ Redirected to http://localhost:3000/guts/session/login
12487
+ Completed 302 Found in 16ms (ActiveRecord: 1.5ms)
12488
+
12489
+
12490
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:28:01 -0400
12491
+ Processing by Guts::SessionsController#new as HTML
12492
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12493
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12494
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
12495
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (1.8ms)
12496
+ Rendered guts/application/_layout_hook.html.erb (0.4ms)
12497
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (16.1ms)
12498
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (1.1ms)
12499
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.3ms)
12500
+ Completed 200 OK in 59ms (Views: 54.8ms | ActiveRecord: 0.2ms)
12501
+
12502
+
12503
+ Started GET "/guts/home" for ::1 at 2016-12-15 18:28:03 -0400
12504
+ Processing by Guts::IndexController#index as HTML
12505
+ Guts::Site Load (0.6ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12506
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12507
+ CACHE (0.0ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12508
+ Redirected to http://localhost:3000/guts/session/login
12509
+ Completed 302 Found in 17ms (ActiveRecord: 0.7ms)
12510
+
12511
+
12512
+ Started GET "/guts/session/login" for ::1 at 2016-12-15 18:28:03 -0400
12513
+ Processing by Guts::SessionsController#new as HTML
12514
+ Guts::Site Load (0.2ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12515
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12516
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
12517
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (2.7ms)
12518
+ Rendered guts/application/_layout_hook.html.erb (0.3ms)
12519
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (14.1ms)
12520
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (1.2ms)
12521
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.3ms)
12522
+ Completed 200 OK in 69ms (Views: 65.4ms | ActiveRecord: 0.3ms)
12523
+
12524
+
12525
+ Started POST "/guts/session/login" for ::1 at 2016-12-15 18:28:08 -0400
12526
+ Processing by Guts::SessionsController#create as HTML
12527
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"IBExJUaht4+DC50VB02rgzfxlF+YrJ7WgMDnTgMT65plF900FNcCPcm8rNiBp1Hu76YmA6e/o9/h4IAH6Ub11A==", "commit"=>"Login", "session"=>{"email"=>"tyler.n.king@outlook.com", "password"=>"[FILTERED]"}}
12528
+ Guts::Site Load (0.2ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12529
+ Guts::User Load (0.3ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12530
+ Guts::User Load (0.3ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."email" = ? LIMIT ? [["email", "tyler.n.king@outlook.com"], ["LIMIT", 1]]
12531
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application
12532
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/sessions/new.html.erb within layouts/guts/application (3.3ms)
12533
+ Rendered guts/application/_layout_hook.html.erb (0.3ms)
12534
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (22.1ms)
12535
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (6.5ms)
12536
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.6ms)
12537
+ Completed 200 OK in 178ms (Views: 81.8ms | ActiveRecord: 0.8ms)
12538
+
12539
+
12540
+ Started POST "/guts/session/login" for ::1 at 2016-12-15 18:28:13 -0400
12541
+ Processing by Guts::SessionsController#create as HTML
12542
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"udaQw5opY6L2b0WmPzrL8g/9CXPfzdoV1xohlQql9Wv80HzSyF/WELzYdGu50DGf16q7L+De5xy2Okbc4PDrJQ==", "commit"=>"Login", "session"=>{"email"=>"tyler.n.king@outlook.com", "password"=>"[FILTERED]"}}
12543
+ Guts::Site Load (0.2ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12544
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" IS NULL LIMIT ? [["LIMIT", 1]]
12545
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."email" = ? LIMIT ? [["email", "tyler.n.king@outlook.com"], ["LIMIT", 1]]
12546
+ Redirected to http://localhost:3000/guts/home
12547
+ Completed 302 Found in 83ms (ActiveRecord: 0.5ms)
12548
+
12549
+
12550
+ Started GET "/guts/home" for ::1 at 2016-12-15 18:28:13 -0400
12551
+ Processing by Guts::IndexController#index as HTML
12552
+ Guts::Site Load (0.1ms) SELECT "guts_sites".* FROM "guts_sites" WHERE "guts_sites"."domain" = ? LIMIT ? [["domain", "localhost"], ["LIMIT", 1]]
12553
+ Guts::User Load (0.1ms) SELECT "guts_users".* FROM "guts_users" WHERE "guts_users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
12554
+ Guts::Group Load (0.1ms) SELECT "guts_groups".* FROM "guts_groups" INNER JOIN "guts_user_groups" ON "guts_groups"."id" = "guts_user_groups"."group_id" WHERE "guts_user_groups"."user_id" = ? [["user_id", 1]]
12555
+ Guts::Permission Load (0.1ms) SELECT "guts_permissions".* FROM "guts_permissions" WHERE "guts_permissions"."permissionable_id" = ? AND "guts_permissions"."permissionable_type" = ? [["permissionable_id", 1], ["permissionable_type", "Guts::User"]]
12556
+ Guts::Authorization Load (0.2ms) SELECT "guts_authorizations".* FROM "guts_authorizations" WHERE "guts_authorizations"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
12557
+ Rendering /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application
12558
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/index/index.html.erb within layouts/guts/application (0.5ms)
12559
+ Rendered guts/application/_layout_hook.html.erb (1.5ms)
12560
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_head.html.erb (25.2ms)
12561
+ Guts::Type Load (0.2ms) SELECT "guts_types".* FROM "guts_types" WHERE "guts_types"."site_id" IS NULL
12562
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_sidebar.html.erb (14.0ms)
12563
+ Rendered /Users/tyler/Development/GitHub/guts/app/views/guts/partials/_body.html.erb (0.4ms)
12564
+ Completed 200 OK in 134ms (Views: 85.4ms | ActiveRecord: 1.8ms)
12565
+
12566
+