spud_core 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 427840b1aed94ae5613e3c929a502785f5dd215d
4
- data.tar.gz: 6f519e739e319a7d6906053d4e0361bc9cd0018b
3
+ metadata.gz: 4e174a1ea6cbc74a9ca713de6227132e0fa0ab78
4
+ data.tar.gz: c106489ea19922004fdf08f2450f86feca20dea0
5
5
  SHA512:
6
- metadata.gz: 2fc7ad497356c5f2c0048710eea899a455b540cade52b49fc0cc57de0cb621289dcba2317adbaaabbf4dbbeb54bc9432ba38d8f7d8d2aea824bbcfeb52b86346
7
- data.tar.gz: 9e2e4b013f06c5e132a24a7b014e4bfc768414bce118e07c95eb3fdbedaf5d41f40cdb78f57d17ad05e5e923923b03f0c96942dba9cc51aa3c27fb0299a4b3cd
6
+ metadata.gz: 642392a9803887628c2f891db86b2ed54b6de9f2c942b62e4a5cf828161f03c9cc3cc4efbe9bb45e0bff37333cc4316558a9bc35b6d57c277dae3a5f073aa298
7
+ data.tar.gz: 3d510bae2020e6a40ea443ea7cd2281eb1d47980a06cc0cfa6b7c09f621ccfb4fbf9343465bab701960666d419188737a73be198a92298f90146803374caee88
@@ -1,54 +1,54 @@
1
1
  module Spud::Admin::ApplicationHelper
2
2
 
3
- def timestamp(timedate=nil)
4
- return "Never" if timedate.blank?
5
- return Time.now() - timedate > 604800 ? timedate.strftime("%B %d") + ' at ' + timedate.strftime("%I:%M %p") : time_ago_in_words(timedate) + ' ago'
6
- end
7
-
8
- def current_admin_site_name
9
- site_name = Spud::Core.site_name
10
- if Spud::Core.multisite_mode_enabled && !session[:admin_site].blank?
11
- config = Spud::Core.multisite_config.select{|p| p[:site_id].to_i == session[:admin_site].to_i}
12
- site_name = config[0][:site_name] if !config.blank?
3
+ def timestamp(timedate=nil)
4
+ return "Never" if timedate.blank?
5
+ return Time.now() - timedate > 604800 ? timedate.strftime("%B %d") + ' at ' + timedate.strftime("%I:%M %p") : time_ago_in_words(timedate) + ' ago'
13
6
  end
14
- return site_name
15
- end
16
-
17
- def header_style
18
- style_str = ''
19
- if Spud::Core.multisite_mode_enabled
20
- config = Spud::Core.multisite_config.select{|p| p[:site_id].to_i == session[:admin_site].to_i}
21
- style_str = config[0][:header_style] if !config.blank? && config[0].has_key?(:header_style)
7
+
8
+ def current_admin_site_name
9
+ site_name = Spud::Core.site_name
10
+ if Spud::Core.multisite_mode_enabled && !session[:admin_site].blank?
11
+ config = Spud::Core.multisite_config.select{|p| p[:site_id].to_i == session[:admin_site].to_i}
12
+ site_name = config[0][:site_name] if !config.blank?
13
+ end
14
+ return site_name
22
15
  end
23
- return style_str
24
- end
25
16
 
26
- def link_to_remove_fields(name, f)
27
- f.hidden_field(:_destroy) + link_to_function(name, "remove_fields(this)",:class => "btn btn-danger")
28
- end
17
+ def header_style
18
+ style_str = ''
19
+ if Spud::Core.multisite_mode_enabled
20
+ config = Spud::Core.multisite_config.select{|p| p[:site_id].to_i == session[:admin_site].to_i}
21
+ style_str = config[0][:header_style] if !config.blank? && config[0].has_key?(:header_style)
22
+ end
23
+ return style_str
24
+ end
29
25
 
30
- def link_to_add_fields(name, f, association)
31
- new_object = f.object.class.reflect_on_association(association).klass.new
32
- fields = f.fields_for(association, new_object, :child_index => "new_#{association}") do |builder|
33
- render(association.to_s.singularize + "_fields", :f => builder)
26
+ def link_to_remove_fields(name, f)
27
+ f.hidden_field(:_destroy) + link_to(name, '#', :onclick =>"remove_fields(this);return false;", :class => "btn btn-danger")
34
28
  end
35
- link_to_function(name, "add_fields(this, \"#{association}\", \"#{escape_javascript(fields)}\")",:class =>"btn btn-success")
36
- end
37
-
38
- def error_messages_for(object)
39
- content = ""
40
- if object.errors.any?
41
- content += "<div class=' alert alert-danger spud_admin_form_error_list'>"
42
- content += "<h4>#{pluralize(object.errors.count, "error")} prohibited you from saving:</h4>"
43
- content +="<ul>"
44
- object.errors.full_messages.each do |msg|
45
- content+="<li>#{msg}</li>"
46
- end
47
- content +="</ul></div>"
29
+
30
+ def link_to_add_fields(name, f, association)
31
+ new_object = f.object.class.reflect_on_association(association).klass.new
32
+ fields = f.fields_for(association, new_object, :child_index => "new_#{association}") do |builder|
33
+ render(association.to_s.singularize + "_fields", :f => builder)
34
+ end
35
+ link_to(name,'#',:onclick => "add_fields(this,\"#{association}\", \"#{escape_javascript(fields)}\"); return false;", :class => "btn btn-success")
48
36
  end
49
- return content.html_safe
50
37
 
51
- end
38
+ def error_messages_for(object)
39
+ content = ""
40
+ if object.errors.any?
41
+ content += "<div class=' alert alert-danger spud_admin_form_error_list'>"
42
+ content += "<h4>#{pluralize(object.errors.count, "error")} prohibited you from saving:</h4>"
43
+ content +="<ul>"
44
+ object.errors.full_messages.each do |msg|
45
+ content+="<li>#{msg}</li>"
46
+ end
47
+ content +="</ul></div>"
48
+ end
49
+ return content.html_safe
50
+
51
+ end
52
52
 
53
53
 
54
54
  end
@@ -1,5 +1,5 @@
1
1
  module Spud
2
2
  module Core
3
- VERSION = "1.0.4"
3
+ VERSION = "1.0.5"
4
4
  end
5
5
  end
@@ -148417,3 +148417,1262 @@ Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 1.2ms)
148417
148417
   (0.1ms) SAVEPOINT active_record_1
148418
148418
   (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
148419
148419
   (0.1ms) ROLLBACK
148420
+  (5.7ms) SELECT @@FOREIGN_KEY_CHECKS
148421
+  (0.3ms) SET FOREIGN_KEY_CHECKS = 0
148422
+  (21.4ms) SELECT DATABASE() as db
148423
+  (2.0ms) select table_name from information_schema.views where table_schema = 'spud_core_test'
148424
+  (61.1ms) TRUNCATE TABLE `spud_admin_permissions`;
148425
+  (3.6ms) TRUNCATE TABLE `spud_user_settings`;
148426
+  (5.0ms) TRUNCATE TABLE `spud_users`;
148427
+  (0.2ms) SET FOREIGN_KEY_CHECKS = 1
148428
+  (0.1ms) BEGIN
148429
+  (6.1ms) SAVEPOINT active_record_1
148430
+ SpudUser Exists (0.5ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john1doe1@email.com' LIMIT 1
148431
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john1doe1' LIMIT 1
148432
+ SpudUser Exists (19.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '1795a4928ac6e4a55b0b523060e8de6f1836db735402bdf63c36978de0a7291bd394b9169ebb843c48afeae6294af44f2960089c75512fa1a5681f8263e00357' LIMIT 1
148433
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF1' LIMIT 1
148434
+ SQL (0.7ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:16', '13fee064414340d3c29ddc49735482997df6bc4f10d72dfa55fd864fbbcb3c448290d51d2edcca8c15f60aea633eef5b79bdad7e4043ac5e9b41e91699e2915c', '2014-08-26 12:51:16', '0.0.0.0', 'john1doe1@email.com', 'John1', 'Doe1', '2014-08-26 12:51:16', 'john1doe1', 1, 'DFiG0yIjnNYSNw1kJiXN', 'tGsZ9UBN8nf0IIfD3qyl', '1795a4928ac6e4a55b0b523060e8de6f1836db735402bdf63c36978de0a7291bd394b9169ebb843c48afeae6294af44f2960089c75512fa1a5681f8263e00357', 'k3cF1', '2014-08-26 12:51:16')
148435
+ SQL (0.6ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:16', `current_login_at` = '2014-08-26 12:51:16', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:16', `perishable_token` = 'H50Jv5k4mVL9VSItOd1', `updated_at` = '2014-08-26 12:51:16' WHERE `spud_users`.`id` = 2
148436
+ SQL (0.4ms) UPDATE `spud_users` SET `super_admin` = 1, `perishable_token` = 'WxfUkJH5N8Aqlzot7hCt', `updated_at` = '2014-08-26 12:51:16' WHERE `spud_users`.`id` = 2
148437
+ Processing by AnonymousController#index as HTML
148438
+ SpudUser Load (12.5ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 2 LIMIT 1
148439
+ SQL (0.5ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:16', `perishable_token` = '7RzyyaHSOMpknM2eG4b', `updated_at` = '2014-08-26 12:51:16' WHERE `spud_users`.`id` = 2
148440
+ Rendered text template (0.0ms)
148441
+ Completed 200 OK in 426ms (Views: 6.6ms | ActiveRecord: 13.0ms)
148442
+  (24.7ms) ROLLBACK TO SAVEPOINT active_record_1
148443
+  (0.2ms) ROLLBACK
148444
+  (0.1ms) BEGIN
148445
+  (0.1ms) SAVEPOINT active_record_1
148446
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john2doe2@email.com' LIMIT 1
148447
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john2doe2' LIMIT 1
148448
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '7c8cc4ed4ccd7435508de83b42ac8424883260c2f2d8385775e3bcf64596a13b2ba55653c85491c5ea339d88c273640c48519dbbff808407b496f1aab797c7bf' LIMIT 1
148449
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF2' LIMIT 1
148450
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:16', '04c570e3f49882a9154da57e4c1be3e528acce1ac07a579b66ffcf78e989dfcf61b0e0492c54343d1e2496dd6e3c927b78f612cb4979cfd7de7f2cf6386b9611', '2014-08-26 12:51:16', '0.0.0.0', 'john2doe2@email.com', 'John2', 'Doe2', '2014-08-26 12:51:16', 'john2doe2', 1, 'JeoBj9D5TA2y6AWU51I', 'XrDRWEQHKOmOaJ8GTThp', '7c8cc4ed4ccd7435508de83b42ac8424883260c2f2d8385775e3bcf64596a13b2ba55653c85491c5ea339d88c273640c48519dbbff808407b496f1aab797c7bf', 'k3cF2', '2014-08-26 12:51:16')
148451
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:16', `current_login_at` = '2014-08-26 12:51:16', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:16', `perishable_token` = 'St3OA2xN104uro45d5Sw', `updated_at` = '2014-08-26 12:51:16' WHERE `spud_users`.`id` = 22
148452
+ SQL (0.4ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (1, '2014-08-26 12:51:17', 'pages', '2014-08-26 12:51:17', 22)
148453
+ Processing by AnonymousController#index as HTML
148454
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 22 LIMIT 1
148455
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'j0jaGi36Tlc3hAETls2', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 22
148456
+ SpudAdminPermission Load (0.6ms) SELECT `spud_admin_permissions`.* FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 22 AND `spud_admin_permissions`.`access` = 1
148457
+  (1.4ms) SELECT COUNT(*) FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 22 AND `spud_admin_permissions`.`access` = 1
148458
+ Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 2.6ms)
148459
+  (0.9ms) ROLLBACK TO SAVEPOINT active_record_1
148460
+  (0.2ms) ROLLBACK
148461
+  (0.1ms) BEGIN
148462
+  (0.1ms) SAVEPOINT active_record_1
148463
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john3doe3@email.com' LIMIT 1
148464
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john3doe3' LIMIT 1
148465
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '79c141485cd7be7e8603d25e2e6a555c14e64f440f07099e71cf5088dd8595b000baad3d1b5b550471fddebae2702e082d590f1b95a60c04b1685b704caf6583' LIMIT 1
148466
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF3' LIMIT 1
148467
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', '6db4d8d62c91fd680f195203736146f7a2f4f4d20dc239d6a96177643da3ea48a6012beda1cc24f45c01b73f9cbef633ecd88b2c5a6ff4b41d3949d1fb52336b', '2014-08-26 12:51:17', '0.0.0.0', 'john3doe3@email.com', 'John3', 'Doe3', '2014-08-26 12:51:17', 'john3doe3', 1, 'Kc1lvINdoEsQy5Ng8ER0', 'lcHTzrtPLth8YtNAEZq', '79c141485cd7be7e8603d25e2e6a555c14e64f440f07099e71cf5088dd8595b000baad3d1b5b550471fddebae2702e082d590f1b95a60c04b1685b704caf6583', 'k3cF3', '2014-08-26 12:51:17')
148468
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:17', `current_login_at` = '2014-08-26 12:51:17', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'AxiFYhzmwa24IHOvEMn', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 42
148469
+ Processing by AnonymousController#index as HTML
148470
+ Redirected to http://test.host/spud/user_session/new
148471
+ Filter chain halted as :require_admin_user rendered or redirected
148472
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
148473
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
148474
+  (0.1ms) ROLLBACK
148475
+  (0.1ms) BEGIN
148476
+  (0.1ms) SAVEPOINT active_record_1
148477
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john4doe4@email.com' LIMIT 1
148478
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john4doe4' LIMIT 1
148479
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'c83c640c09b37a7c94b21e52b343bbc65bac8438eb7f632d3ee7162c72bd99abe0e020fddcde2db8c3bb7d25dff5ee77e63f96d858818899a6a25ecb927e341b' LIMIT 1
148480
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF4' LIMIT 1
148481
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', 'ff5768549b1dac1837b9faf37e34027737572a61d44697564c3e4225dfeb861d43ca4925e49e3ec9472998b9a37f18609f9603ca78a8306bd43966631e259751', '2014-08-26 12:51:17', '0.0.0.0', 'john4doe4@email.com', 'John4', 'Doe4', '2014-08-26 12:51:17', 'john4doe4', 1, 'XK263jQFuUDM1DEFfivT', 'LF26ZMXepzVtdUGOMH1R', 'c83c640c09b37a7c94b21e52b343bbc65bac8438eb7f632d3ee7162c72bd99abe0e020fddcde2db8c3bb7d25dff5ee77e63f96d858818899a6a25ecb927e341b', 'k3cF4', '2014-08-26 12:51:17')
148482
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:17', `current_login_at` = '2014-08-26 12:51:17', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'Pd7Zd5v6wSgkvl9VlyNG', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 62
148483
+ SpudAdminPermission Load (0.3ms) SELECT `spud_admin_permissions`.* FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 62
148484
+ SQL (0.4ms) UPDATE `spud_users` SET `super_admin` = 0, `perishable_token` = 'HIptKEH78Jsx9yxc6BV1', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 62
148485
+ Processing by AnonymousController#index as HTML
148486
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 62 LIMIT 1
148487
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = '59E2k2FfKEEvrmE59Hvt', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 62
148488
+ SpudAdminPermission Load (0.4ms) SELECT `spud_admin_permissions`.* FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 62 AND `spud_admin_permissions`.`access` = 1
148489
+  (0.3ms) SELECT COUNT(*) FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 62 AND `spud_admin_permissions`.`access` = 1
148490
+ Redirected to http://test.host/
148491
+ Filter chain halted as :require_admin_user rendered or redirected
148492
+ Completed 302 Found in 9ms (ActiveRecord: 1.3ms)
148493
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
148494
+  (0.2ms) ROLLBACK
148495
+  (0.1ms) BEGIN
148496
+  (0.1ms) SAVEPOINT active_record_1
148497
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john5doe5@email.com' LIMIT 1
148498
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john5doe5' LIMIT 1
148499
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'c9245f1fb586fde4723d85ea141b5e44d4ce91f9b141878215f05e7b524d9ee63a3d0c425cb1534057fbc8ead797e9c3698da23b546781b7f6cbb0099688e26f' LIMIT 1
148500
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF5' LIMIT 1
148501
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', 'fc3143847d44fad136e9a5136853f1d480502ca30cc35cc0d6930920d57755d1a7f75c9ce5097c55b3fd99a006067d35a7e6b2b0410d564f0939281d26ca5cce', '2014-08-26 12:51:17', '0.0.0.0', 'john5doe5@email.com', 'John5', 'Doe5', '2014-08-26 12:51:17', 'john5doe5', 1, 'h0jsEcSqO4ScE8XiZep', 'YVjROH5hDDVfQUTpjHd', 'c9245f1fb586fde4723d85ea141b5e44d4ce91f9b141878215f05e7b524d9ee63a3d0c425cb1534057fbc8ead797e9c3698da23b546781b7f6cbb0099688e26f', 'k3cF5', '2014-08-26 12:51:17')
148502
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:17', `current_login_at` = '2014-08-26 12:51:17', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'mklQLgs4MkTqmYvWhN', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 82
148503
+ SQL (0.3ms) UPDATE `spud_users` SET `super_admin` = 0, `perishable_token` = '2LfEpMvK7ZucOAkH1tw', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 82
148504
+ SQL (0.2ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (1, '2014-08-26 12:51:17', 'Blog', '2014-08-26 12:51:17', 82)
148505
+ SQL (0.2ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (1, '2014-08-26 12:51:17', 'Pages', '2014-08-26 12:51:17', 82)
148506
+ Processing by Spud::Admin::DashboardController#index as HTML
148507
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 82 LIMIT 1
148508
+ SQL (0.4ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'JDDXRmC3iAeIwSxQ5J6u', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 82
148509
+ SpudAdminPermission Load (0.4ms) SELECT `spud_admin_permissions`.* FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 82 AND `spud_admin_permissions`.`access` = 1
148510
+  (0.2ms) SELECT COUNT(*) FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 82 AND `spud_admin_permissions`.`access` = 1
148511
+ SpudUserSetting Load (0.7ms) SELECT `spud_user_settings`.* FROM `spud_user_settings` WHERE `spud_user_settings`.`spud_user_id` = 82 AND `spud_user_settings`.`key` = 'app_order' ORDER BY `spud_user_settings`.`id` ASC LIMIT 1
148512
+ Completed 200 OK in 27ms (Views: 4.5ms | ActiveRecord: 6.1ms)
148513
+ SpudAdminPermission Load (0.5ms) SELECT `spud_admin_permissions`.* FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 82
148514
+  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1
148515
+  (0.1ms) ROLLBACK
148516
+  (0.1ms) BEGIN
148517
+  (0.1ms) SAVEPOINT active_record_1
148518
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john6doe6@email.com' LIMIT 1
148519
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john6doe6' LIMIT 1
148520
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '84561a176f66f2a9aeea28b33aaba28b0d7d08ccace47a506937f727565c0253f9f98e4e62e25f4f3ae6586324e88b9afb01ebb994207c42205eeb22b30cadd6' LIMIT 1
148521
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF6' LIMIT 1
148522
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', '684a11a78530f9bfb169e001c748e6f050f0632d5e274ac78d587964c124923ebdb1f1f7f627bd9ec7f31a2fc87d8d87a22fa30b2d68a7554e3b1650543f181e', '2014-08-26 12:51:17', '0.0.0.0', 'john6doe6@email.com', 'John6', 'Doe6', '2014-08-26 12:51:17', 'john6doe6', 1, '2ssUSw9yu3lBTmCDFPL', 'tMViAN1BwGB9dJIPCenY', '84561a176f66f2a9aeea28b33aaba28b0d7d08ccace47a506937f727565c0253f9f98e4e62e25f4f3ae6586324e88b9afb01ebb994207c42205eeb22b30cadd6', 'k3cF6', '2014-08-26 12:51:17')
148523
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:17', `current_login_at` = '2014-08-26 12:51:17', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'lxnG6boXic6l2BqQpBve', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 102
148524
+ SQL (0.5ms) UPDATE `spud_users` SET `super_admin` = 0, `perishable_token` = 'fJKerJTlG0zAwCGRYwF8', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 102
148525
+ SQL (0.3ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (1, '2014-08-26 12:51:17', 'Blog', '2014-08-26 12:51:17', 102)
148526
+ SQL (0.3ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (1, '2014-08-26 12:51:17', 'Pages', '2014-08-26 12:51:17', 102)
148527
+ Processing by Spud::Admin::DashboardController#index as HTML
148528
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 102 LIMIT 1
148529
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'eYz5TZnti2Dz7rzpS5X0', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 102
148530
+ SpudAdminPermission Load (0.3ms) SELECT `spud_admin_permissions`.* FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 102 AND `spud_admin_permissions`.`access` = 1
148531
+  (0.2ms) SELECT COUNT(*) FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 102 AND `spud_admin_permissions`.`access` = 1
148532
+ SpudUserSetting Load (0.2ms) SELECT `spud_user_settings`.* FROM `spud_user_settings` WHERE `spud_user_settings`.`spud_user_id` = 102 AND `spud_user_settings`.`key` = 'app_order' ORDER BY `spud_user_settings`.`id` ASC LIMIT 1
148533
+ Completed 200 OK in 11ms (Views: 1.1ms | ActiveRecord: 1.4ms)
148534
+  (11.8ms) ROLLBACK TO SAVEPOINT active_record_1
148535
+  (0.1ms) ROLLBACK
148536
+  (0.1ms) BEGIN
148537
+  (0.1ms) SAVEPOINT active_record_1
148538
+ SpudUser Exists (0.5ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john7doe7@email.com' LIMIT 1
148539
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john7doe7' LIMIT 1
148540
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '1af343597e653326f30078c108b4305ce511ed676c2ab55b67049651b298db53267b67ed638bcf72e6de76d15513fafc058e403d970cbbf80059e65bb82ee284' LIMIT 1
148541
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF7' LIMIT 1
148542
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', '100399628d54887565050c8e8e08f9ab2b9f8598c6b2a180f880cfa9cf3da222af97d61883aa8dd5dc9ee1c1c8472807c5b26d01d29627f1f6aea92c15288c38', '2014-08-26 12:51:17', '0.0.0.0', 'john7doe7@email.com', 'John7', 'Doe7', '2014-08-26 12:51:17', 'john7doe7', 1, 'yvIjJLyPtrLyXOiNOYM6', '1YUPYKh6HuruZLiZq5Y', '1af343597e653326f30078c108b4305ce511ed676c2ab55b67049651b298db53267b67ed638bcf72e6de76d15513fafc058e403d970cbbf80059e65bb82ee284', 'k3cF7', '2014-08-26 12:51:17')
148543
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:17', `current_login_at` = '2014-08-26 12:51:17', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'l0ssvCMX0JbXgEhIXb9y', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 122
148544
+ SQL (0.3ms) UPDATE `spud_users` SET `super_admin` = 1, `perishable_token` = 'cxGgUbh8k8zjqPP5brP', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 122
148545
+ SQL (0.2ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (1, '2014-08-26 12:51:17', 'Blog', '2014-08-26 12:51:17', 122)
148546
+ Processing by Spud::Admin::DashboardController#index as HTML
148547
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 122 LIMIT 1
148548
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'zJux8TPigdeVCt6u6qVa', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 122
148549
+ SpudAdminPermission Load (0.3ms) SELECT `spud_admin_permissions`.* FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 122 AND `spud_admin_permissions`.`access` = 1
148550
+ SpudUserSetting Load (0.3ms) SELECT `spud_user_settings`.* FROM `spud_user_settings` WHERE `spud_user_settings`.`spud_user_id` = 122 AND `spud_user_settings`.`key` = 'app_order' ORDER BY `spud_user_settings`.`id` ASC LIMIT 1
148551
+ Completed 200 OK in 10ms (Views: 1.5ms | ActiveRecord: 1.2ms)
148552
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
148553
+  (0.2ms) ROLLBACK
148554
+  (0.2ms) BEGIN
148555
+  (0.1ms) SAVEPOINT active_record_1
148556
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john8doe8@email.com' LIMIT 1
148557
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john8doe8' LIMIT 1
148558
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'c412bd6c4a9d9618bb48e2846c948bba7ed2da62eaccefc42b01c9dd87bb752ff7284be298e1072025004bfb64412947cd898ea5a4ae3aff347df4e5c38cdbe0' LIMIT 1
148559
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF8' LIMIT 1
148560
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', '17c1986e7af56581f8e60ae101f7c0e0a51ea4ce46f45298fbfa8f86e8e8df9bb2ecd65fd72c6f9bfde23c8f23c16bcba6726fc581643acae6baac92fcfb335e', '2014-08-26 12:51:17', '0.0.0.0', 'john8doe8@email.com', 'John8', 'Doe8', '2014-08-26 12:51:17', 'john8doe8', 1, 'MkaKW3UoWHPf6Vus5cbj', 'UM3gBacwdPCWHf0aSYrM', 'c412bd6c4a9d9618bb48e2846c948bba7ed2da62eaccefc42b01c9dd87bb752ff7284be298e1072025004bfb64412947cd898ea5a4ae3aff347df4e5c38cdbe0', 'k3cF8', '2014-08-26 12:51:17')
148561
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:17', `current_login_at` = '2014-08-26 12:51:17', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'dUgMuaFOo0bI4lKBdvU', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 142
148562
+ SQL (0.3ms) UPDATE `spud_users` SET `super_admin` = 1, `perishable_token` = '8Js5dh0rGa9QMjupHyrn', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 142
148563
+ SpudUserSetting Exists (0.3ms) SELECT 1 AS one FROM `spud_user_settings` WHERE (`spud_user_settings`.`key` = BINARY 'app_order' AND `spud_user_settings`.`spud_user_id` = 142) LIMIT 1
148564
+ SQL (0.3ms) INSERT INTO `spud_user_settings` (`created_at`, `key`, `spud_user_id`, `updated_at`, `value`) VALUES ('2014-08-26 12:51:17', 'app_order', 142, '2014-08-26 12:51:17', 'Pages,Settings')
148565
+ Processing by Spud::Admin::DashboardController#index as HTML
148566
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 142 LIMIT 1
148567
+ SQL (0.4ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'BNM76jZnrl4hvXDNruy0', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 142
148568
+ SpudAdminPermission Load (0.3ms) SELECT `spud_admin_permissions`.* FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 142 AND `spud_admin_permissions`.`access` = 1
148569
+ SpudUserSetting Load (0.3ms) SELECT `spud_user_settings`.* FROM `spud_user_settings` WHERE `spud_user_settings`.`spud_user_id` = 142 AND `spud_user_settings`.`key` = 'app_order' ORDER BY `spud_user_settings`.`id` ASC LIMIT 1
148570
+ Completed 200 OK in 11ms (Views: 1.2ms | ActiveRecord: 1.3ms)
148571
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
148572
+  (0.1ms) ROLLBACK
148573
+  (0.1ms) BEGIN
148574
+  (0.1ms) SAVEPOINT active_record_1
148575
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john9doe9@email.com' LIMIT 1
148576
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john9doe9' LIMIT 1
148577
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '9548fea11d0087b36aaf1ac722dfbdfb39769cc0ddbd08f8022e394e67b6a51a8574b47c0dc4917d0682ccd64315b1ef941710af7c608b757ea56c4a58316770' LIMIT 1
148578
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF9' LIMIT 1
148579
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', '355ccc7884d8d937b9479d40fe0277c6d68504da5e1fdfe87e020bff7bb4dc5237275d2005c44bd81edd16bd55598b5ebabdd387b8404cc0b2eec0176437325e', '2014-08-26 12:51:17', '0.0.0.0', 'john9doe9@email.com', 'John9', 'Doe9', '2014-08-26 12:51:17', 'john9doe9', 1, 'DEQbGKHch4bPbAesIUCU', '2uVElbFo6XXDkQTaAo', '9548fea11d0087b36aaf1ac722dfbdfb39769cc0ddbd08f8022e394e67b6a51a8574b47c0dc4917d0682ccd64315b1ef941710af7c608b757ea56c4a58316770', 'k3cF9', '2014-08-26 12:51:17')
148580
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:17', `current_login_at` = '2014-08-26 12:51:17', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'ATQEbJd8zoGalqydjgdN', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 162
148581
+ SQL (0.3ms) UPDATE `spud_users` SET `super_admin` = 1, `perishable_token` = '9BKVnVTNAzmWKbfIS7MO', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 162
148582
+ SQL (0.2ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (1, '2014-08-26 12:51:17', 'Blog', '2014-08-26 12:51:17', 162)
148583
+ Processing by Spud::Admin::DashboardController#switch as HTML
148584
+ Parameters: {"multisite_select"=>nil}
148585
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 162 LIMIT 1
148586
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'ie06opcNmyqFxXAjjs7', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 162
148587
+ Redirected to http://test.host/spud/admin
148588
+ Completed 302 Found in 5ms (ActiveRecord: 0.7ms)
148589
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
148590
+  (0.1ms) ROLLBACK
148591
+  (0.1ms) BEGIN
148592
+  (0.1ms) SAVEPOINT active_record_1
148593
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john10doe10@email.com' LIMIT 1
148594
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john10doe10' LIMIT 1
148595
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '6e8089cf9360c0ebd1857ebd52cdb5db5822e8e6417cc19db56bd7ff088b32b3825be23a800237bddecea981a34e75bdcfa8e7cc3ebc0759cf7345c0426fb5ff' LIMIT 1
148596
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF10' LIMIT 1
148597
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', 'c429f31f45adedf275b416db69ed703c1ddd6892b74a0acf6ef5653aaf4c22f938581452ffd18cfb0f877dce10ac342d33ec38d8babb270aed7f2edb3dcc2da9', '2014-08-26 12:51:17', '0.0.0.0', 'john10doe10@email.com', 'John10', 'Doe10', '2014-08-26 12:51:17', 'john10doe10', 1, 'IptDmd6HwrnuUf3rITK', '3QJew5yNJTAqGG4s2Uj5', '6e8089cf9360c0ebd1857ebd52cdb5db5822e8e6417cc19db56bd7ff088b32b3825be23a800237bddecea981a34e75bdcfa8e7cc3ebc0759cf7345c0426fb5ff', 'k3cF10', '2014-08-26 12:51:17')
148598
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:17', `current_login_at` = '2014-08-26 12:51:17', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'CF8oO8jcESc6hpTvTRNI', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 182
148599
+ SQL (0.3ms) UPDATE `spud_users` SET `super_admin` = 1, `perishable_token` = '3nLx7Pbz3PMyTEvB8dMT', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 182
148600
+ SQL (0.2ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (1, '2014-08-26 12:51:17', 'Blog', '2014-08-26 12:51:17', 182)
148601
+ Processing by Spud::Admin::DashboardController#switch as HTML
148602
+ Parameters: {"multisite_select"=>nil}
148603
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 182 LIMIT 1
148604
+ SQL (0.5ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'BNXCz3Xh8B7RnHf9VGj', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 182
148605
+ Redirected to http://test.host/spud/admin
148606
+ Completed 302 Found in 6ms (ActiveRecord: 0.8ms)
148607
+  (0.9ms) ROLLBACK TO SAVEPOINT active_record_1
148608
+  (0.2ms) ROLLBACK
148609
+  (0.1ms) BEGIN
148610
+  (0.2ms) SAVEPOINT active_record_1
148611
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john11doe11@email.com' LIMIT 1
148612
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john11doe11' LIMIT 1
148613
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '57d361deddf893a4d45332cb45c7218334b1ae15dee25a3bdb26a1eda6596ce51c46910aca570b4005bb4f1d28ec90de8ac4377467b9b0a747f2b5ad13f1bfa6' LIMIT 1
148614
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF11' LIMIT 1
148615
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', '02245604d6794aaa91556e96e482691fd38fbd062ff8408f921ad316b405ac493039bd32b42972cb887fe8f9a63cd0d8b889982e07323edf8b8a8a73e7d8e2a6', '2014-08-26 12:51:17', '0.0.0.0', 'john11doe11@email.com', 'John11', 'Doe11', '2014-08-26 12:51:17', 'john11doe11', 1, 'W4PbnN8eldsccYQ2TWqz', 'wrxes0pVqoXHGdOioJt', '57d361deddf893a4d45332cb45c7218334b1ae15dee25a3bdb26a1eda6596ce51c46910aca570b4005bb4f1d28ec90de8ac4377467b9b0a747f2b5ad13f1bfa6', 'k3cF11', '2014-08-26 12:51:17')
148616
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:17', `current_login_at` = '2014-08-26 12:51:17', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = '5Y6t9d3CrTZJYQ5PChgL', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 202
148617
+ SQL (0.3ms) UPDATE `spud_users` SET `super_admin` = 1, `perishable_token` = 'HMuwsPKDv14MTHyii6P', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 202
148618
+ SQL (0.3ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (1, '2014-08-26 12:51:17', 'Blog', '2014-08-26 12:51:17', 202)
148619
+ Processing by Spud::Admin::DashboardController#switch as HTML
148620
+ Parameters: {"multisite_select"=>"1"}
148621
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 202 LIMIT 1
148622
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = '2FN4OA7xrCpEMgMYtmVM', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 202
148623
+ Redirected to http://test.host/spud/admin
148624
+ Completed 302 Found in 6ms (ActiveRecord: 0.6ms)
148625
+  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1
148626
+  (0.2ms) ROLLBACK
148627
+  (0.1ms) BEGIN
148628
+  (0.1ms) SAVEPOINT active_record_1
148629
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john12doe12@email.com' LIMIT 1
148630
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john12doe12' LIMIT 1
148631
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'c456853b72aea4876bd86f154dcecea54d173acc8791f1c37eda40cde87af274cb0f56d6d5a143005141035f75f2dd39d213085b6a794be967e821a34340bfcf' LIMIT 1
148632
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF12' LIMIT 1
148633
+ SQL (0.5ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', '562dbfd3b13e75e85aa7b89fa5de68d94072b130f7904735b52654853eaecfb4a062fa68d98dce8375486f645f18fc54e0c4f246e9ec903ce90489f523d61089', '2014-08-26 12:51:17', '0.0.0.0', 'john12doe12@email.com', 'John12', 'Doe12', '2014-08-26 12:51:17', 'john12doe12', 1, 'AZDkpP5GcA1MnNlT6Ls3', 'NOqn4HOk3tvLZTVydYO', 'c456853b72aea4876bd86f154dcecea54d173acc8791f1c37eda40cde87af274cb0f56d6d5a143005141035f75f2dd39d213085b6a794be967e821a34340bfcf', 'k3cF12', '2014-08-26 12:51:17')
148634
+ SQL (0.5ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:17', `current_login_at` = '2014-08-26 12:51:17', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = '0RNm0h5DOJUFkLo9MmnQ', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 222
148635
+ SQL (0.4ms) UPDATE `spud_users` SET `super_admin` = 1, `perishable_token` = 'xAFn0lU5TD1MLeHiksbw', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 222
148636
+ SQL (0.3ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (1, '2014-08-26 12:51:17', 'Blog', '2014-08-26 12:51:17', 222)
148637
+ Processing by Spud::Admin::DashboardController#switch as HTML
148638
+ Parameters: {"multisite_select"=>"1"}
148639
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 222 LIMIT 1
148640
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'HD5Agkb7iGnWeJ38ioRC', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 222
148641
+ Redirected to http://test.host/spud/admin
148642
+ Completed 302 Found in 6ms (ActiveRecord: 0.6ms)
148643
+  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1
148644
+  (0.1ms) ROLLBACK
148645
+  (0.1ms) BEGIN
148646
+  (0.1ms) SAVEPOINT active_record_1
148647
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john13doe13@email.com' LIMIT 1
148648
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john13doe13' LIMIT 1
148649
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '61b0dd0b90a16bd9f9d344735c55c186a2dcbf70c96a1c5d79d16e8ba86af1f428e2669f319372ff3ee426ac0b5c0b109d51fa89140c7caba40c60c34ac73254' LIMIT 1
148650
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF13' LIMIT 1
148651
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', '30ef9caf0e4442084e2c4428a1bc3041c7e7ed5af33e692b4f2d6684d9cd9e0bc8dc073ebb8c00bfa4b730ec6b929977c5d1720359c0370fafe21d3476f60150', '2014-08-26 12:51:17', '0.0.0.0', 'john13doe13@email.com', 'John13', 'Doe13', '2014-08-26 12:51:17', 'john13doe13', 1, '6aqwQM7mQfQS7BgFL', 'rUVJvrHWR8sQ5SqCShBG', '61b0dd0b90a16bd9f9d344735c55c186a2dcbf70c96a1c5d79d16e8ba86af1f428e2669f319372ff3ee426ac0b5c0b109d51fa89140c7caba40c60c34ac73254', 'k3cF13', '2014-08-26 12:51:17')
148652
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:17', `current_login_at` = '2014-08-26 12:51:17', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'Pe6oM1siXZiaakUmIyd', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 242
148653
+ SQL (0.4ms) UPDATE `spud_users` SET `super_admin` = 1, `perishable_token` = 'efjGDAAju2MiL2iiaP9G', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 242
148654
+ SQL (0.3ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (1, '2014-08-26 12:51:17', 'Blog', '2014-08-26 12:51:17', 242)
148655
+ Processing by Spud::Admin::DashboardController#switch as HTML
148656
+ Parameters: {"multisite_select"=>"1"}
148657
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 242 LIMIT 1
148658
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'Tf8U8TQoCfjzc0yHjEYn', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 242
148659
+ Redirected to http://test.host/spud/admin
148660
+ Completed 302 Found in 6ms (ActiveRecord: 0.6ms)
148661
+  (1.4ms) ROLLBACK TO SAVEPOINT active_record_1
148662
+  (0.2ms) ROLLBACK
148663
+  (0.1ms) BEGIN
148664
+  (0.1ms) SAVEPOINT active_record_1
148665
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john14doe14@email.com' LIMIT 1
148666
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john14doe14' LIMIT 1
148667
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '901886d3bff83cd27fabb1da244764faad8c65efec7253437258a8fa0e11b173c0e19395ce52e6c86712f902b68dfff8297ffb970f87e95001a3663557457fba' LIMIT 1
148668
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF14' LIMIT 1
148669
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', 'f827a37196cccf75b95850ebfd35bb625583d984dfb92ce6caa5ff1f5b571cd1ffd41e58ceb7432b4b8fad9f393b7a4d3b6ff6c8d4b37e93d51a6cb24b9b17ed', '2014-08-26 12:51:17', '0.0.0.0', 'john14doe14@email.com', 'John14', 'Doe14', '2014-08-26 12:51:17', 'john14doe14', 1, 'EL6Ydp3ZJVsGm0hiDd', 'fsk5iNhJG5yEl2a0rEs7', '901886d3bff83cd27fabb1da244764faad8c65efec7253437258a8fa0e11b173c0e19395ce52e6c86712f902b68dfff8297ffb970f87e95001a3663557457fba', 'k3cF14', '2014-08-26 12:51:17')
148670
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:17', `current_login_at` = '2014-08-26 12:51:17', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'JG1u2eQqHSBWexjMFwK', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 262
148671
+ SQL (0.3ms) UPDATE `spud_users` SET `super_admin` = 1, `perishable_token` = 'byZHOf9a4nsKcw31Nk', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 262
148672
+ SQL (0.3ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (1, '2014-08-26 12:51:17', 'Blog', '2014-08-26 12:51:17', 262)
148673
+ Processing by Spud::Admin::DashboardController#switch as HTML
148674
+ Parameters: {"multisite_select"=>"1"}
148675
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 262 LIMIT 1
148676
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'AfPTJy2wUH3Mytd7BCSi', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 262
148677
+ Redirected to http://test.host/spud/admin
148678
+ Completed 302 Found in 6ms (ActiveRecord: 0.7ms)
148679
+  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1
148680
+  (0.1ms) ROLLBACK
148681
+  (0.1ms) BEGIN
148682
+  (0.1ms) SAVEPOINT active_record_1
148683
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:17', '7e91153d12a64da7016e8a0e89984bda55222716d689524e2a881f6cfa147d1a35dcd42b0d0226c4a0332a1a78c0d29057481c6d0ebabe2b506bd239bc8dc7c3', 'john15doe15@email.com', 'John15', 'Doe15', 'john15doe15', 'hd61NlXShRsDNMTHiibm', 'V9lQX6PyDS1iBqYkLGSp', '7cef595377781b6929160bd6e53c6b398e278b2da124af0260923c0fa04456a9137f523a2c492aca25936958d64882d36d0a3e8be3d2773b669d40ed310228ec', 'k3cF15', 1, '2014-08-26 12:51:17')
148684
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:17', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'a9vVbgrUCKuQyQVNJf9E', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 282
148685
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john16doe16@email.com' LIMIT 1
148686
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john16doe16' LIMIT 1
148687
+ SpudUser Exists (0.5ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'f4204af2a1d4b869915afd11b4c68f758288f25856cf5f41fbb81c1b7d8712a5e329f5e1a1b83cdfc7e13298db4b6b58148818ecfd0cda80c5b3bc7f299e2640' LIMIT 1
148688
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF16' LIMIT 1
148689
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 282 LIMIT 1
148690
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'nXxCRnOrashMubsPNlNK', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 282
148691
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', '413f7507d3bf129f97e20e077616250d0fc7c8f4882b1065981314db4cb8180fcbf21ea4d1866ec3d810a934615ff4634927d22a3f02e6ae03c7f972ddaba86d', 'john16doe16@email.com', 'John16', 'Doe16', 'john16doe16', 'VnsNtBghU8ttSBPyPsc', 'TeDM63WsW4XfdAF5Yuw', 'f4204af2a1d4b869915afd11b4c68f758288f25856cf5f41fbb81c1b7d8712a5e329f5e1a1b83cdfc7e13298db4b6b58148818ecfd0cda80c5b3bc7f299e2640', 'k3cF16', '2014-08-26 12:51:17')
148692
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john17doe17@email.com' LIMIT 1
148693
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john17doe17' LIMIT 1
148694
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '37e4e1b67d5c1785cdef73ce94ce2fd35b135b1fe5aa2a073fc74253e1e65545f335047d1f43cf6752b4fd2013cdc27d9d176b13a1ed372ad15057b2c578b45a' LIMIT 1
148695
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF17' LIMIT 1
148696
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 282 LIMIT 1
148697
+ SQL (0.4ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'eH7hfscchm65DTGvNU5P', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 282
148698
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', '34a1f405231e3beabdb13a94c7bb3d8d74a3d9ea1808c933e1dcb79d16883d74aef73ba9ac0cc9cef7a65455105e93b9440477c59d62673b7ba2d212dbedcf34', 'john17doe17@email.com', 'John17', 'Doe17', 'john17doe17', 'aO4IzwEMod1YCRXxonFn', 'lWjMcLxEqRHHEdX7xA9b', '37e4e1b67d5c1785cdef73ce94ce2fd35b135b1fe5aa2a073fc74253e1e65545f335047d1f43cf6752b4fd2013cdc27d9d176b13a1ed372ad15057b2c578b45a', 'k3cF17', '2014-08-26 12:51:17')
148699
+ Processing by Spud::Admin::UsersController#index as HTML
148700
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 282 LIMIT 1
148701
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = '2NQmRCMkeyFmJFDNtaak', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 282
148702
+ Completed 200 OK in 10ms (Views: 3.1ms | ActiveRecord: 0.7ms)
148703
+  (0.3ms) SELECT COUNT(*) FROM `spud_users`
148704
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
148705
+  (0.1ms) ROLLBACK
148706
+  (0.1ms) BEGIN
148707
+  (0.1ms) SAVEPOINT active_record_1
148708
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:17', 'fe5b01300273e24153f1c25e48d91e0bc8a5499ea496c02a6ef55486d1ef015c559c85850b8e3300227a02f500043ca10ba71e504a7667b1085dfaa24a0de896', 'john18doe18@email.com', 'John18', 'Doe18', 'john18doe18', 'LMMLTehQsc1STxY84A9', 'XAOkhmpOMWMU67CsDT2', 'd374fc67b2eaa858c72f0e26f20fd28e49fe3b04a2aaba54e872d788dd8600baae5dc1f7b3dd36539479d9bca1e7b77bb509dbe601b60fc75eeda466a1f647b5', 'k3cF18', 1, '2014-08-26 12:51:17')
148709
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:17', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'A60XLVrIn9eomLKUYNFk', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 342
148710
+ Processing by Spud::Admin::UsersController#index as HTML
148711
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 342 LIMIT 1
148712
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'ZPbjSMK6wHVoX2y8SxY', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 342
148713
+ Completed 200 OK in 6ms (Views: 1.0ms | ActiveRecord: 0.6ms)
148714
+  (0.4ms) SELECT COUNT(*) FROM `spud_users`
148715
+  (2.1ms) ROLLBACK TO SAVEPOINT active_record_1
148716
+  (0.1ms) ROLLBACK
148717
+  (0.1ms) BEGIN
148718
+  (0.1ms) SAVEPOINT active_record_1
148719
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:17', '961bb73a51d01b61ae52c80f830def958114bb8b0b972479a753db49fc77fd1a5d86e4ee0debb73fb7aca2f24a956cc8400fbda4b9d667a16e79e14519a4bdc8', 'john19doe19@email.com', 'John19', 'Doe19', 'john19doe19', 'RBCJ65Rj3UoCSuLLLgXh', 'DT2ITvV2prKGs7qVwzX', 'b98c0e26b4410c1b6fb2c802ce2720a04d498beb72ad2d95de5069b9983e7c2cf97604962f0c530fca42ed735d7fcfc52e52bbcc8d0200616e56e943b8c79acc', 'k3cF19', 1, '2014-08-26 12:51:17')
148720
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:17', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'SJ5oTGMhwWp0BA13RSut', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 362
148721
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:17', '923bf9162e3ca0033b3c95a99a4153d23e8a85f975f30e9725510da07555a00ccc4c502286bfb47c1034bbd63d77a0adc210b90b461355d6d53028e91b1dff3c', 'john20doe20@email.com', 'John20', 'Doe20', 'john20doe20', 'yHWqsEVJbtpCevh8Vms3', 'MHGULLxkKgd1YhMKzl6S', '162902a0c254d8e697bc0b5255d6e2ae6b2edcaa3c650be6d8c97608a490ee8efef699faf45322a3c396a4234b8a6214546e873eb39abbc4a6ab3bae24e56e4e', 'k3cF20', 0, '2014-08-26 12:51:17')
148722
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:17', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'JjpQzxLPyKOnz3xDrlD7', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 382
148723
+ Processing by Spud::Admin::UsersController#index as HTML
148724
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 382 LIMIT 1
148725
+ SQL (0.2ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'hrTJ0su83C6tyGdiY9zD', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 382
148726
+ SpudAdminPermission Load (0.2ms) SELECT `spud_admin_permissions`.* FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 382 AND `spud_admin_permissions`.`access` = 1
148727
+  (0.2ms) SELECT COUNT(*) FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 382 AND `spud_admin_permissions`.`access` = 1
148728
+ Redirected to http://test.host/
148729
+ Filter chain halted as :require_admin_user rendered or redirected
148730
+ Completed 302 Found in 7ms (ActiveRecord: 0.9ms)
148731
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
148732
+  (0.1ms) ROLLBACK
148733
+  (0.1ms) BEGIN
148734
+  (0.1ms) SAVEPOINT active_record_1
148735
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:17', 'ec2b2d6e425cceee19d8068c5607e413d26ad5efa7b8cd97881e39a8a174fd6c2f86196d6d9a3e9252a51d3a556ee1b638a4ec99e12106546bb82b7cef44de99', 'john21doe21@email.com', 'John21', 'Doe21', 'john21doe21', 'Z50y9pdpRiyRGWS2qD', 'cQ0S5Xt6kH1Jg2rPa1', '78b4265c63565fd85cac713e9bd6f3c46acfdff5a9807d6da6f3d8f52e2f379d8dee5899bada2144e74098bb3983f606b83c29b44880be86f36f4c539f616d25', 'k3cF21', 1, '2014-08-26 12:51:17')
148736
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:17', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'wK4Rg3QTjZE8Ij4uUole', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 402
148737
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john22doe22@email.com' LIMIT 1
148738
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john22doe22' LIMIT 1
148739
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '83e61d2e10bbaf471505df6e5e6c2d262917b6ee87d9ce74b5679b79690273b4bd4ab491e2283ef326381ca3ceb65004c57df689417636c9e203820a6b65eca4' LIMIT 1
148740
+ SpudUser Exists (0.1ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF22' LIMIT 1
148741
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 402 LIMIT 1
148742
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'sI67dtoWlu9Vo0aQcwU', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 402
148743
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:17', 'aa6b5450140888302abaaf8599313825c0c2657fb7f1935c084d6a9fb584326bf03a0cde22ad5d708b9af3f2e69b9fa6be650a89e1471810b9d87b918c95cbdf', 'john22doe22@email.com', 'John22', 'Doe22', 'john22doe22', 'jVnWt3DkbY6mmfq5J', 'UjSMushOyLL3FvtZjaAj', '83e61d2e10bbaf471505df6e5e6c2d262917b6ee87d9ce74b5679b79690273b4bd4ab491e2283ef326381ca3ceb65004c57df689417636c9e203820a6b65eca4', 'k3cF22', 0, '2014-08-26 12:51:17')
148744
+ SQL (0.4ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (1, '2014-08-26 12:51:17', 'Users', '2014-08-26 12:51:17', 422)
148745
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:17', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = '09J82Iy6a7p6dSzitz', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 422
148746
+ Processing by Spud::Admin::UsersController#index as HTML
148747
+ SpudUser Load (0.5ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 422 LIMIT 1
148748
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'dd1VNPUFqSEQrRB9lqn', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 422
148749
+ SpudAdminPermission Load (0.4ms) SELECT `spud_admin_permissions`.* FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 422 AND `spud_admin_permissions`.`access` = 1
148750
+  (0.5ms) SELECT COUNT(*) FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 422 AND `spud_admin_permissions`.`access` = 1
148751
+ Completed 200 OK in 13ms (Views: 1.3ms | ActiveRecord: 1.6ms)
148752
+  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1
148753
+  (0.2ms) ROLLBACK
148754
+  (0.1ms) BEGIN
148755
+  (0.2ms) SAVEPOINT active_record_1
148756
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:17', '7d5d65fac7a06e58524d4ab9981ed8791bd4896af3d82f348b40d8699b78ce2fb56a8fb962e2fdcd7d5eae0666865c368396c0c57403dd805e359b2369cbc7f2', 'john23doe23@email.com', 'John23', 'Doe23', 'john23doe23', 'N4Mh7agfbJMurexagB5L', 'gvuzxQcPdkc6GXgYJm96', '1c012a38a1c54289f9303aa8c18b77d124a9c237cdd482918cbec79baafa0c4ef97a56c5665dbb1a5aeb1b69e022fc4c3c0f3d272f1e666e39a5e6f90886f424', 'k3cF23', 1, '2014-08-26 12:51:17')
148757
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:17', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = '3fSO0IT3mQvdPozJ7Vrk', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 442
148758
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john24doe24@email.com' LIMIT 1
148759
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john24doe24' LIMIT 1
148760
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'a14cc8142dde556ba89e5f7cd704cdb0fb0351fab3aff4a126854a807c2a9132cf0a0b08b923ffa1234563696e4f12371c0202fadf7e19af9e0e97e38caafcd1' LIMIT 1
148761
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF24' LIMIT 1
148762
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 442 LIMIT 1
148763
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'U9UYH3KM3E1oSOQqrgM', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 442
148764
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:17', '663bb35fa765fd463acc7d66a0aef9040440651e4f1653a2427998c4939dca5f20df2fa897dfc8693858ac0bfb612feabad2ec14603c20f43f2df423848e5488', 'john24doe24@email.com', 'John24', 'Doe24', 'john24doe24', 'eIs9ee4iImbXzHahBJD', '6IPWNWZqkBw6x5Ye17GT', 'a14cc8142dde556ba89e5f7cd704cdb0fb0351fab3aff4a126854a807c2a9132cf0a0b08b923ffa1234563696e4f12371c0202fadf7e19af9e0e97e38caafcd1', 'k3cF24', 0, '2014-08-26 12:51:17')
148765
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:17', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'cM58CM40OESegBMh0ij', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 462
148766
+ Processing by Spud::Admin::UsersController#index as HTML
148767
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 462 LIMIT 1
148768
+ SQL (0.4ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'g8Gk0yuunkmDbBmEdbv', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 462
148769
+ SpudAdminPermission Load (0.4ms) SELECT `spud_admin_permissions`.* FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 462 AND `spud_admin_permissions`.`access` = 1
148770
+  (0.3ms) SELECT COUNT(*) FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 462 AND `spud_admin_permissions`.`access` = 1
148771
+ Redirected to http://test.host/
148772
+ Filter chain halted as :require_admin_user rendered or redirected
148773
+ Completed 302 Found in 10ms (ActiveRecord: 1.4ms)
148774
+  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1
148775
+  (0.1ms) ROLLBACK
148776
+  (0.2ms) BEGIN
148777
+  (0.1ms) SAVEPOINT active_record_1
148778
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:17', '03319a2e0fa483bad8790556b693b099ec7f44d9258fce395fdc58e74ba93056e1125194f6509dc9e950e92c686e726751fb65826be7a75758372a5a81db65fb', 'john25doe25@email.com', 'John25', 'Doe25', 'john25doe25', '9qy6CynbiCtU5epYRK0q', 'C7YiM1BqFY2vaDoBFt', '3658c8255c44c6179a991eee60f2cb0fc09f2564716d7dd6d49a8b8478cc31f1bbb68def5b8303b4ede0bda71781a222837f750820571064761c69167106161e', 'k3cF25', 1, '2014-08-26 12:51:17')
148779
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:17', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'RxVOHUGXQjGzaTfAbe2', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 482
148780
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john26doe26@email.com' LIMIT 1
148781
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john26doe26' LIMIT 1
148782
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '0574b753ad1f6861651f68178cf58e2e94c570cecb08ac93d4f8da592405e4ffa84ab75ed36ccbaee4c1bf306f2333ecc3acd047b03de9c7e7a7aee35b46a9ec' LIMIT 1
148783
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF26' LIMIT 1
148784
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 482 LIMIT 1
148785
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'RW5qyTuCj41pWT2CJNS', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 482
148786
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:17', '628bd83e28f06f4cd815fd015f44ca687bee31ecfc5e3e396ed62e23870f30c15b0ad1e65b1a3f155297f9ead530dbec0be28c7f4dfc13aaa8f1e869929fcef3', 'john26doe26@email.com', 'John26', 'Doe26', 'john26doe26', 'fuMugzBfsdwNj15EXNxg', 'y3oByGZJqtWI9jA3shIJ', '0574b753ad1f6861651f68178cf58e2e94c570cecb08ac93d4f8da592405e4ffa84ab75ed36ccbaee4c1bf306f2333ecc3acd047b03de9c7e7a7aee35b46a9ec', 'k3cF26', 0, '2014-08-26 12:51:17')
148787
+ SQL (0.3ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (0, '2014-08-26 12:51:17', 'Users', '2014-08-26 12:51:17', 502)
148788
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:17', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = '0KjWjQUbZohFIl8vvB7Q', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 502
148789
+ Processing by Spud::Admin::UsersController#index as HTML
148790
+ SpudUser Load (0.6ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 502 LIMIT 1
148791
+ SQL (0.4ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = '0Tms5xmpExC7ZT2Olgz', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 502
148792
+ SpudAdminPermission Load (0.3ms) SELECT `spud_admin_permissions`.* FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 502 AND `spud_admin_permissions`.`access` = 1
148793
+  (0.3ms) SELECT COUNT(*) FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 502 AND `spud_admin_permissions`.`access` = 1
148794
+ Redirected to http://test.host/
148795
+ Filter chain halted as :require_admin_user rendered or redirected
148796
+ Completed 302 Found in 11ms (ActiveRecord: 1.6ms)
148797
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
148798
+  (0.1ms) ROLLBACK
148799
+  (0.1ms) BEGIN
148800
+  (0.1ms) SAVEPOINT active_record_1
148801
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:17', 'cfcab62c7151fd1fd8613e2f25fcaa39654f538071697f08e98ef354e9f4592576ff69db5b93b44d73c3f42768e175ab834b5ecff4535e876e8b400cc35e1546', 'john27doe27@email.com', 'John27', 'Doe27', 'john27doe27', 'TOVqLBjHfhYJn9wtZ94', 'bkEkvIrC6czfwyafLMi', '2aa9638a788cf28ad37aa2804780d52111560f9229ed750d24604596f6f84cfef2bb95ffdc86c4180fe862a5e55c5470c0ef03eb427a5bbd8790e1a0a37706ae', 'k3cF27', 1, '2014-08-26 12:51:17')
148802
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:17', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'aQwBX23zBovIWY5uAf8l', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 522
148803
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john28doe28@email.com' LIMIT 1
148804
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john28doe28' LIMIT 1
148805
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'faed2351bbcae18745e27b43b15d25add0a6203700690d093f29011521a2d538bf37f29df8c0cc940f6aefcc809936dac4811ec9220d12615e7659a33ea376f0' LIMIT 1
148806
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF28' LIMIT 1
148807
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 522 LIMIT 1
148808
+ SQL (0.4ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'h2BRWj0MQRkvUZUtbou', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 522
148809
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:17', 'a1ed3adbfad36f194a67311edd0ddb6671029e9b59ff7dfad4dcf117a75d141e8688e042c2e7ca71fa423711c45a04919387d7a6d1b35161291517a8849ab3ab', 'john28doe28@email.com', 'John28', 'Doe28', 'john28doe28', 'zAuxdqKTbvhfcfJvSRK', 'Ho0BVV1MCd9oni1Z34K', 'faed2351bbcae18745e27b43b15d25add0a6203700690d093f29011521a2d538bf37f29df8c0cc940f6aefcc809936dac4811ec9220d12615e7659a33ea376f0', 'k3cF28', 0, '2014-08-26 12:51:17')
148810
+ SQL (0.3ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (0, '2014-08-26 12:51:17', 'Users', '2014-08-26 12:51:17', 542)
148811
+ SQL (0.2ms) INSERT INTO `spud_admin_permissions` (`access`, `created_at`, `name`, `updated_at`, `user_id`) VALUES (1, '2014-08-26 12:51:17', 'App2', '2014-08-26 12:51:17', 542)
148812
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:17', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'SnQYyhPnTCx9DZfDr6U', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 542
148813
+ Processing by Spud::Admin::UsersController#index as HTML
148814
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 542 LIMIT 1
148815
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = '68zE8vpCTsuv0EE62mBG', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 542
148816
+ SpudAdminPermission Load (0.3ms) SELECT `spud_admin_permissions`.* FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 542 AND `spud_admin_permissions`.`access` = 1
148817
+  (0.3ms) SELECT COUNT(*) FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 542 AND `spud_admin_permissions`.`access` = 1
148818
+ Redirected to http://test.host/spud/admin
148819
+ Filter chain halted as #<Proc:0x007fd0bf0fa4a0@/Users/davidestes/projects/ruby/engines/spud_core_admin/lib/spud_core/belongs_to_app.rb:25> rendered or redirected
148820
+ Completed 302 Found in 10ms (ActiveRecord: 1.3ms)
148821
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
148822
+  (0.2ms) ROLLBACK
148823
+  (0.1ms) BEGIN
148824
+  (0.1ms) SAVEPOINT active_record_1
148825
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:17', '5ea4f32b67bcaaccd963c4da7449abda4953610b9c117515f0994d0dd291733a9d76980354c6376ed74381e2e33e3cc0c2df24db6abc644a5c2aa11cb9771130', 'john29doe29@email.com', 'John29', 'Doe29', 'john29doe29', 'v2DBmYkqsQhMaoZ5lAI', '1fJH55JDRpXICBKjHf3d', '05b862ab9339d460706c28ac87e140d702518669f45bd4d01f5c9da555d90965d394d470966bdfdd10299982057e8f9e96353d3c1e129fcb41f3aa6d4acb90bb', 'k3cF29', 1, '2014-08-26 12:51:17')
148826
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:17', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'z2NeNxolKhLl0fDjJdwn', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 562
148827
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john30doe30@email.com' LIMIT 1
148828
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john30doe30' LIMIT 1
148829
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'bf985843405320351cc5b9119e2509cc069c58d586a20e290f8554643cc0e13098a5fd7d44da7d6d736dafc1d66b7f2bd3a198e25b787dd432ef082f3ab6fe19' LIMIT 1
148830
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF30' LIMIT 1
148831
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 562 LIMIT 1
148832
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'jjcUItEFt0gw7Rhzs0G', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 562
148833
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', '9ffa96e01afc1ed32bbfd87c872f5d020447817b48052f29552889838be2aa111aa498f3cabfb943632b0ad1fb2d575cd434bda5af55c9d97db738e6cd22dc68', 'john30doe30@email.com', 'John30', 'Doe30', 'john30doe30', '3ncpRgAxp65nF5zNvI', 'GPC1yRAonFIsfCT6koXy', 'bf985843405320351cc5b9119e2509cc069c58d586a20e290f8554643cc0e13098a5fd7d44da7d6d736dafc1d66b7f2bd3a198e25b787dd432ef082f3ab6fe19', 'k3cF30', '2014-08-26 12:51:17')
148834
+ Processing by Spud::Admin::UsersController#show as HTML
148835
+ Parameters: {"id"=>"582"}
148836
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 562 LIMIT 1
148837
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'HIsiUsxSkmNS5SdWnqVr', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 562
148838
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 582 ORDER BY `spud_users`.`id` ASC LIMIT 1
148839
+ Completed 200 OK in 10ms (Views: 1.6ms | ActiveRecord: 0.9ms)
148840
+  (1.3ms) ROLLBACK TO SAVEPOINT active_record_1
148841
+  (0.2ms) ROLLBACK
148842
+  (0.1ms) BEGIN
148843
+  (0.1ms) SAVEPOINT active_record_1
148844
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:17', '0dfd58b5a9dd9203d7e23c46cb1dbd7796c3b19888c4932df197731dc867d420a04f8d1b2c79cb6109e925bad8fe1581c278ef656844fb73b94b57dd8013fd6b', 'john31doe31@email.com', 'John31', 'Doe31', 'john31doe31', 'qz8kDERK7QEWbeRnODK', 'vmgXKXFBhe9skyCW540N', '1198fb6db1af8d0a2ab263b1570286fb4a9195db4641c6341dae2d66f035076b4392980c98310767ae441bdd0f3025042670e844b253f7fc0909d7fdb07ce29a', 'k3cF31', 1, '2014-08-26 12:51:17')
148845
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:17', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'wTWrnf1yosc8m2LQHSZ', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 602
148846
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john32doe32@email.com' LIMIT 1
148847
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john32doe32' LIMIT 1
148848
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '0781b2117dea287ca3dbd80a22e54b51873d827a317dce7d72768f912371d15880ffa3ec0318e7808e254aa6daa26e4092fa8c9f551a2885879fa008ce87bdb1' LIMIT 1
148849
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF32' LIMIT 1
148850
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 602 LIMIT 1
148851
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'QMX4XJ5b6lgjxEa1i3t', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 602
148852
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:17', '0c1fc8814de361371bee8388f78e952fb654ec12c80153f66c5fd0f7f21a42a36a37f509bc0ea123271ac3cce1e70ed468ba3418b14576fa32f4c0cc5bd330f8', 'john32doe32@email.com', 'John32', 'Doe32', 'john32doe32', 'JNOF7Or5MMH7ks8BwOf', 'vjO5w7NRoiXCo1yJeYFn', '0781b2117dea287ca3dbd80a22e54b51873d827a317dce7d72768f912371d15880ffa3ec0318e7808e254aa6daa26e4092fa8c9f551a2885879fa008ce87bdb1', 'k3cF32', '2014-08-26 12:51:17')
148853
+ Processing by Spud::Admin::UsersController#show as HTML
148854
+ Parameters: {"id"=>"622"}
148855
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 602 LIMIT 1
148856
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = '1rg169uPFDM0TYIZ2JLy', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 602
148857
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 622 ORDER BY `spud_users`.`id` ASC LIMIT 1
148858
+ Completed 200 OK in 9ms (Views: 1.2ms | ActiveRecord: 1.1ms)
148859
+  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1
148860
+  (0.1ms) ROLLBACK
148861
+  (0.1ms) BEGIN
148862
+  (0.1ms) SAVEPOINT active_record_1
148863
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:17', 'de4b422a2794fd8eccf1a9058f5cfa96daefe6128872d9e054b803f678fbeefbb5d30f6c9b74963f62296988961a75011d7ca3e9b1ab8a9f6fbdd0a533642064', 'john33doe33@email.com', 'John33', 'Doe33', 'john33doe33', 'TQFTRvYCHpMUU41xpA4l', 'QLbsR3ikHrU9M1zcqrut', '773417898c0a24ce96728f4c6069b47f901aa0d79022f0f6447dcd4f74bf3aa6aeec5830677c76008cda404ad163859bb7b004561f8f072cb578a8eaa765ac8b', 'k3cF33', 1, '2014-08-26 12:51:17')
148864
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:17', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = '156ru2r9k9ewFaq5T0M', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 642
148865
+ Processing by Spud::Admin::UsersController#new as JS
148866
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 642 LIMIT 1
148867
+ SQL (0.4ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:17', `perishable_token` = 'wKUgqBvLpchVqwtTIY9', `updated_at` = '2014-08-26 12:51:17' WHERE `spud_users`.`id` = 642
148868
+ Rendered /Users/davidestes/projects/ruby/engines/spud_core_admin/app/views/spud/admin/users/_new.html.erb (0.4ms)
148869
+ Completed 200 OK in 15ms (Views: 4.6ms | ActiveRecord: 0.7ms)
148870
+  (11.9ms) ROLLBACK TO SAVEPOINT active_record_1
148871
+  (0.1ms) ROLLBACK
148872
+  (0.1ms) BEGIN
148873
+  (0.1ms) SAVEPOINT active_record_1
148874
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:18', '3b1445f6cd89e29c7b51b842a1ac549fc7e332cd37bbdbab94146b91f3147447490a99c02f772cd6d6726450c251720287775da12677921677d99d63969d1b3b', 'john34doe34@email.com', 'John34', 'Doe34', 'john34doe34', 'uf8BuxjYNE01nKli3Db5', 'vzgrTTwUy7whSsk8sR', '9ff49e3865b6026bb2e1be44c4891154688826405b4e7c5f19e3d820b599feb56a01aa3f689dbb2070828fb629feb2f5adb4f479ccd360d474744e416644d439', 'k3cF34', 1, '2014-08-26 12:51:18')
148875
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'X0AkHjacPszHg1HiSmyu', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 662
148876
+ Processing by Spud::Admin::UsersController#new as JS
148877
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 662 LIMIT 1
148878
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'xmpdgrYoGUjgacJVtTw', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 662
148879
+ Rendered /Users/davidestes/projects/ruby/engines/spud_core_admin/app/views/spud/admin/users/_new.html.erb (0.3ms)
148880
+ Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.7ms)
148881
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
148882
+  (0.1ms) ROLLBACK
148883
+  (0.1ms) BEGIN
148884
+  (0.1ms) SAVEPOINT active_record_1
148885
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:18', 'd2b99907280603a111503c4c1f3975812439a61f09a6d2f7107820cec93fb80578f9e528006fa5d93b1eeeeb4bb28cea6f850d5b61e7e3686c43e67f8d0be061', 'john35doe35@email.com', 'John35', 'Doe35', 'john35doe35', '925qn4rKZUiXRf3GT3r', 'Fkh2ALWGnqtpcaGEiho4', '0fa893aacb78fdf5e036ee9b8647c100d1ebed8f4e29de936ff401a54453b02ba3959d0cf2434000afd21cb7ab60f200b9740dbe59128d8b3d5356ddfc5ebf6d', 'k3cF35', 1, '2014-08-26 12:51:18')
148886
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'K1czuRk0HYYvSyM8wjHL', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 682
148887
+  (0.3ms) SELECT COUNT(*) FROM `spud_users`
148888
+ Processing by Spud::Admin::UsersController#create as HTML
148889
+ Parameters: {"spud_user"=>{"first_name"=>"John36", "last_name"=>"Doe36", "login"=>"john36doe36", "email"=>"john36doe36@email.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "single_access_token"=>"k3cF36"}}
148890
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 682 LIMIT 1
148891
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'fCxpRwGFKmCZXuqgrixP', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 682
148892
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john36doe36@email.com' LIMIT 1
148893
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john36doe36' LIMIT 1
148894
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'd589a9d976c3fcb49684043d1c8512dd88178d7618262f31f5369d1ee6a4d15b3025f24216dce67b95b77a172fe8fa8c3e33cba6e5918344d5799beab512b209' LIMIT 1
148895
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF36' LIMIT 1
148896
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 682 LIMIT 1
148897
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'KnHTU3MlyndSXHM7z5KJ', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 682
148898
+ SQL (0.2ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', 'ac96b1d46e6950b21b5a96baecca9c4b5a779515da0b859cb832c61b4d66be061200032c025b666da71da7ef724ea6a3d63a215a5a6ac8ff9a807538b9d0d573', 'john36doe36@email.com', 'John36', 'Doe36', 'john36doe36', 'auvy2kLwcJcNS8TVKobq', '3Jo3Kuip3ZOWKU1xUtf4', 'd589a9d976c3fcb49684043d1c8512dd88178d7618262f31f5369d1ee6a4d15b3025f24216dce67b95b77a172fe8fa8c3e33cba6e5918344d5799beab512b209', 'k3cF36', '2014-08-26 12:51:18')
148899
+ Redirected to http://test.host/spud/admin/users
148900
+ Completed 302 Found in 82ms (ActiveRecord: 2.5ms)
148901
+  (0.2ms) SELECT COUNT(*) FROM `spud_users`
148902
+  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1
148903
+  (0.1ms) ROLLBACK
148904
+  (0.1ms) BEGIN
148905
+  (0.1ms) SAVEPOINT active_record_1
148906
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:18', '6c27d460d08e11a7e71662a2082ca7d53762c41a883161710324c8beb9e05544fc9638a50f270e6545597c2e4995c29e7366aa6e607ae3b48f6e648ce5ea8f77', 'john37doe37@email.com', 'John37', 'Doe37', 'john37doe37', 'DoWlmbwWiv7uhfxtlYEl', 'j8P6FKIt5P2kdtuuGEQ', 'fb2f4b942bda6f9d9a81601576ecd2fc845c4257359bfdc3ac063f30361296ffcd4bbb536cbdfcae01d0f701c5f731c3ce8e296fd4191a723eb7915dd4c950ef', 'k3cF37', 1, '2014-08-26 12:51:18')
148907
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'iSgHkGwQCTdp6OiERll', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 722
148908
+  (0.2ms) SELECT COUNT(*) FROM `spud_users`
148909
+ Processing by Spud::Admin::UsersController#create as HTML
148910
+ Parameters: {"spud_user"=>{"first_name"=>"John38", "last_name"=>"Doe38", "login"=>"john38doe38", "email"=>nil, "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "single_access_token"=>"k3cF38"}}
148911
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 722 LIMIT 1
148912
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'QAfKZxTZvHwSQc7vgom', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 722
148913
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john38doe38' LIMIT 1
148914
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'fc5c2161b26b0387636ff60a1e07e236ba52a72ea31b2eb0c00d4640a4bca6715202a3ab3e097eb21957236834cdc5c7a13b559caf85018a7718c427c41e3a50' LIMIT 1
148915
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF38' LIMIT 1
148916
+ Completed 200 OK in 14ms (Views: 2.3ms | ActiveRecord: 1.5ms)
148917
+  (0.3ms) SELECT COUNT(*) FROM `spud_users`
148918
+  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1
148919
+  (0.1ms) ROLLBACK
148920
+  (0.1ms) BEGIN
148921
+  (0.1ms) SAVEPOINT active_record_1
148922
+ SQL (0.5ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:18', 'c2a3e1c3cbe9ff9c6bf0aa540a239aa642979a800760e974eb7f20c53923148e7f0ac1baa13eb1260f94b910e84f6390964b9f16b19c28ca7ba811570f008267', 'john38doe38@email.com', 'John39', 'Doe39', 'john39doe39', 'QW6ryu3RLBX0l3kfufx', 'XBxFzwNgXfyO48HFe8A', '7274158add7b12cd4faf0be0e2bb28a6f94b2d4930d441709c30dd1b1d73c7552778a8ac011eee2c4041cc2236201b4a54eac4a8acda771e1aeda0c5b2f30185', 'k3cF39', 1, '2014-08-26 12:51:18')
148923
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = '4Pws3kJLKPhzs8dj424', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 742
148924
+  (0.2ms) SELECT COUNT(*) FROM `spud_users`
148925
+ Processing by Spud::Admin::UsersController#create as JS
148926
+ Parameters: {"spud_user"=>{"first_name"=>"John40", "last_name"=>"Doe40", "login"=>"john40doe40", "email"=>"john39doe39@email.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "single_access_token"=>"k3cF40"}}
148927
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 742 LIMIT 1
148928
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = '6kfymehFWDlEhfLsuT', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 742
148929
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john39doe39@email.com' LIMIT 1
148930
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john40doe40' LIMIT 1
148931
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'b4d7af2994811cc41652a06cf1db1ee31613503cca59ff571e3f5f2ec5c369e9609b2e773b2cbe12e3219b643c6d9adbd396527078af49ee4a1a57cd9ca1419e' LIMIT 1
148932
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF40' LIMIT 1
148933
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 742 LIMIT 1
148934
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'rEChPEGzmQ53PDqJL1r3', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 742
148935
+ SQL (0.2ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', '4209bd76b0bd35e87c9665b1324c04150bb14c23bd3b9ad9db03f96c3f32ef525123f3b40e4c30253dcd5c20963f33cf3d9649d010777244baf9e22aff7d1ca1', 'john39doe39@email.com', 'John40', 'Doe40', 'john40doe40', 'XnjeqM8jWXYNahPY3unk', 'IiSZnirZ4TdfSXtXpYJh', 'b4d7af2994811cc41652a06cf1db1ee31613503cca59ff571e3f5f2ec5c369e9609b2e773b2cbe12e3219b643c6d9adbd396527078af49ee4a1a57cd9ca1419e', 'k3cF40', '2014-08-26 12:51:18')
148936
+ Completed 200 OK in 22ms (Views: 0.2ms | ActiveRecord: 2.5ms)
148937
+  (0.2ms) SELECT COUNT(*) FROM `spud_users`
148938
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
148939
+  (0.1ms) ROLLBACK
148940
+  (0.1ms) BEGIN
148941
+  (0.1ms) SAVEPOINT active_record_1
148942
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:18', '13bdce8d3a95e490c7f5f89d115aa4111055a4c06ff4a497c72ca1d2884da51d6681ba9e82aa4699a666bcc736c53c39b0ecc29e442b038daa9223d3afe79579', 'john40doe40@email.com', 'John41', 'Doe41', 'john41doe41', 'oIXEF2R3ogSuU3ita', '4Kau5bMIeCIDII37QA', 'fa1059754bafa49fdc0f91bf30a5811fc703598c64addca5163ed0a2dc1f40b1a9913c2249b4c2baaf1292c997f9ebc2f9ee4c9971caace1d4ab7fa2c9706823', 'k3cF41', 1, '2014-08-26 12:51:18')
148943
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'iTVwB6Vb8aF8TRzVIJLi', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 782
148944
+  (0.2ms) SELECT COUNT(*) FROM `spud_users`
148945
+ Processing by Spud::Admin::UsersController#create as JS
148946
+ Parameters: {"spud_user"=>{"first_name"=>"John42", "last_name"=>"Doe42", "login"=>"john42doe42", "email"=>nil, "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "single_access_token"=>"k3cF42"}}
148947
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 782 LIMIT 1
148948
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'OVEQrhcrZiqZCJTIFZ', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 782
148949
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john42doe42' LIMIT 1
148950
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'aa361e6f2ab693e4389b3f597279f7d80f110c660a1cb95aaf79747b381aa814cb42f63153388c38be702f35258759cf8ad2a325a23e40b48cb4c6b582288622' LIMIT 1
148951
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF42' LIMIT 1
148952
+ Completed 500 Internal Server Error in 13ms (Views: 0.1ms | ActiveRecord: 1.4ms)
148953
+  (0.2ms) SELECT COUNT(*) FROM `spud_users`
148954
+  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1
148955
+  (0.1ms) ROLLBACK
148956
+  (0.1ms) BEGIN
148957
+  (0.1ms) SAVEPOINT active_record_1
148958
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:18', 'c6d93bb36c51c655219d995ea3b834d66a0bd6714dbb86e25317851f1abcb7e5f424199ef38508403ea95c41b3697dd0bb9f489c5bf0f534512b452de559e816', 'john41doe41@email.com', 'John43', 'Doe43', 'john43doe43', 'fkTUKB3QVjg7AKCGLfr', 'rcqm2bODTJkEOWY0pbU', 'f376c2f60b7cf9213e7a988902b1344e373e62438ae494d4cb394ec6b7b57a69ffdb887641002ec559b475033959ce8812abece65b19014b26d6d44cee715221', 'k3cF43', 1, '2014-08-26 12:51:18')
148959
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'E8KzYDNnxVRM6E1ZUay', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 802
148960
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john42doe42@email.com' LIMIT 1
148961
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john44doe44' LIMIT 1
148962
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'f6e911ab7512fca1e7ce59c0e6abce05f00ef816589d13dafa999fc36e7bfa10354dce377b5125be6dd509d0bdcd4604830f2b7353195a91013132908d921b7e' LIMIT 1
148963
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF44' LIMIT 1
148964
+ SpudUser Load (0.2ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 802 LIMIT 1
148965
+ SQL (0.2ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'Kio1fRhX4G8Eim9YLEI1', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 802
148966
+ SQL (0.2ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', 'd6236055f8fb027132fafb3593d8a42b3eba7b98510ce2c5eda41c72c9e7f185f74749905e7b9919bcd992880c58dd5dde4996f8f0e2e84661417070c07e7eb6', 'john42doe42@email.com', 'John44', 'Doe44', 'john44doe44', 'w29BOdT4c507E3J9mM', 'daDtRQkWAC94XmXMYh8A', 'f6e911ab7512fca1e7ce59c0e6abce05f00ef816589d13dafa999fc36e7bfa10354dce377b5125be6dd509d0bdcd4604830f2b7353195a91013132908d921b7e', 'k3cF44', '2014-08-26 12:51:18')
148967
+ Processing by Spud::Admin::UsersController#edit as HTML
148968
+ Parameters: {"id"=>"822"}
148969
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 802 LIMIT 1
148970
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'S9fQnNtjABdd0swMO6Gj', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 802
148971
+ SpudUser Load (0.2ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 822 ORDER BY `spud_users`.`id` ASC LIMIT 1
148972
+ SpudAdminPermission Load (0.3ms) SELECT `spud_admin_permissions`.* FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 822
148973
+ Completed 200 OK in 10ms (Views: 1.7ms | ActiveRecord: 1.1ms)
148974
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
148975
+  (0.1ms) ROLLBACK
148976
+  (0.1ms) BEGIN
148977
+  (0.1ms) SAVEPOINT active_record_1
148978
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:18', 'fbc403cf6e828a4df9f1d265d595fd4c2f20ef2c50e9229156edebe8909bf5494e5c18ed912f38497420b20dbc6787877a47fb21e3a955a71b272f882ddb288f', 'john43doe43@email.com', 'John45', 'Doe45', 'john45doe45', '0SW1miZSNz6fkRK5YlK', 'RcQfpvJh3wwIVzaZQRuk', '6efa8ece373f847c0e01111613b1109d20629642c0a95e0554247ffbfc9894b3fd236371c7d83bde4da0964600b8a3bcb289f714e7350262484b053f2f9a3f6c', 'k3cF45', 1, '2014-08-26 12:51:18')
148979
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'uU60RLhT0kCD4TbkybSL', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 842
148980
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john44doe44@email.com' LIMIT 1
148981
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john46doe46' LIMIT 1
148982
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '8a8d70b772fa2004ad28bff94c102e01debd4377fe033b24194cfc353ecb8fb4c99092890f2f82523657d1f05a4aef58a15bc1940894160df444b141430ffe97' LIMIT 1
148983
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF46' LIMIT 1
148984
+ SpudUser Load (0.2ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 842 LIMIT 1
148985
+ SQL (0.2ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'cVYsE34Xyu4Ex9oStggT', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 842
148986
+ SQL (0.2ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', 'f0b7efd94ccb7d4f01d90777da1908948a37258ca6ceb8919425f2b4c42d8055d84e6bc3926e9a2c2737d0a6b49fc9180416de294749b384ca3deafd36dd4ff6', 'john44doe44@email.com', 'John46', 'Doe46', 'john46doe46', 'skwueij0DGhPaxRNX', 'bcJnKfSr2Z5jIwaAXbX6', '8a8d70b772fa2004ad28bff94c102e01debd4377fe033b24194cfc353ecb8fb4c99092890f2f82523657d1f05a4aef58a15bc1940894160df444b141430ffe97', 'k3cF46', '2014-08-26 12:51:18')
148987
+ Processing by Spud::Admin::UsersController#edit as JS
148988
+ Parameters: {"id"=>"862"}
148989
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 842 LIMIT 1
148990
+ SQL (0.2ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'vpFe0uEOGvQmIOHbJUeB', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 842
148991
+ SpudUser Load (0.2ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 862 ORDER BY `spud_users`.`id` ASC LIMIT 1
148992
+ SpudAdminPermission Load (0.2ms) SELECT `spud_admin_permissions`.* FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 862
148993
+ Rendered /Users/davidestes/projects/ruby/engines/spud_core_admin/app/views/spud/admin/users/_edit.html.erb (0.3ms)
148994
+ Completed 200 OK in 10ms (Views: 1.7ms | ActiveRecord: 1.0ms)
148995
+  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1
148996
+  (0.1ms) ROLLBACK
148997
+  (0.1ms) BEGIN
148998
+  (0.1ms) SAVEPOINT active_record_1
148999
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:18', '6109bb47490a3f2d850e0ee315e9c703bac44991faaeca56f83bbbea03d528b3b3a1ecfcdd21d59c6f1dcf2257b3ce6ae09fe52220f71f629ee7b5732430ebad', 'john45doe45@email.com', 'John47', 'Doe47', 'john47doe47', '5nNB1UdFKUQ3PJBPaIPC', 'EAVHrTdoOFG5BgjReRh', '4dee1aea74c4dadddc690fd97147d08522a730921c83cf633af3eef7f41b87f63baaa36a1ee48e9e99d6a168ed2ded674c4e24564c9c367b3b0565c550ad8eb9', 'k3cF47', 1, '2014-08-26 12:51:18')
149000
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'GkVnHtePVJZvJBQ9OS', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 882
149001
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john46doe46@email.com' LIMIT 1
149002
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john48doe48' LIMIT 1
149003
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '3076aef2478e2fc81eeb41d725916855602833b9dba7334a94c457a78e01a008f29d6f3944d62dd9f4cd944b2120960b21b8d3ff9983e0a7dbb2e741dac6544f' LIMIT 1
149004
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF48' LIMIT 1
149005
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 882 LIMIT 1
149006
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = '94k27XD5OOc8LdKYNb1n', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 882
149007
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', '5b590eefa980f87a06aaaaafda0fac44b921e6633a93c87a5c4dd0e2d9786aead16006bd0715119b832b49a86ac3e586edceb71e35f51cd5823daa769616c86a', 'john46doe46@email.com', 'John48', 'Doe48', 'john48doe48', '9YlE2DVpSsTP9EvKHxsJ', 'oV4Wt2qnvtBgvcs5sUjI', '3076aef2478e2fc81eeb41d725916855602833b9dba7334a94c457a78e01a008f29d6f3944d62dd9f4cd944b2120960b21b8d3ff9983e0a7dbb2e741dac6544f', 'k3cF48', '2014-08-26 12:51:18')
149008
+ Processing by Spud::Admin::UsersController#update as HTML
149009
+ Parameters: {"spud_user"=>{"id"=>"902", "first_name"=>"Adam", "last_name"=>"Doe48", "super_admin"=>nil, "login"=>"john48doe48", "email"=>"john46doe46@email.com", "crypted_password"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "persistence_token"=>"3076aef2478e2fc81eeb41d725916855602833b9dba7334a94c457a78e01a008f29d6f3944d62dd9f4cd944b2120960b21b8d3ff9983e0a7dbb2e741dac6544f", "single_access_token"=>"k3cF48", "perishable_token"=>"oV4Wt2qnvtBgvcs5sUjI", "login_count"=>"0", "failed_login_count"=>"0", "last_request_at"=>nil, "current_login_at"=>nil, "last_login_at"=>nil, "current_login_ip"=>nil, "last_login_ip"=>nil, "created_at"=>"2014-08-26 12:51:18 UTC", "updated_at"=>"2014-08-26 12:51:18 UTC", "time_zone"=>nil}, "id"=>"902"}
149010
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 882 LIMIT 1
149011
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'VHAvwsB4fg5kWSziMn', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 882
149012
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 902 ORDER BY `spud_users`.`id` ASC LIMIT 1
149013
+ Unpermitted parameters: id
149014
+ SQL (0.4ms) UPDATE `spud_users` SET `first_name` = 'Adam', `perishable_token` = '5YDJbdGbucKnpsjMucs', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 902
149015
+ Redirected to http://test.host/spud/admin/users
149016
+ Completed 302 Found in 15ms (ActiveRecord: 1.3ms)
149017
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 902 LIMIT 1
149018
+  (12.4ms) ROLLBACK TO SAVEPOINT active_record_1
149019
+  (0.2ms) ROLLBACK
149020
+  (0.1ms) BEGIN
149021
+  (0.1ms) SAVEPOINT active_record_1
149022
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:18', '61e9ecc4440bd38a017e14a0daefae76c0e0480c8e7648458cc89f27e5c315c38c063650112fdc950cead4d61bbb9e22b3e8be2aacef5ea11f0d68cfa0e86dc5', 'john47doe47@email.com', 'John49', 'Doe49', 'john49doe49', 'l2t9fIP1WS3medVMbsfu', 'CER9VMTejPwJsijqvJKG', '60be13962317d794b7501c891f0909d7510c20014adcafa33f6751801fd095fc744770c00749f71e8f6f6289c4baf825f2feef445f8f19770fcfefa78761eccb', 'k3cF49', 1, '2014-08-26 12:51:18')
149023
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'VaFXMhgIqJBiTIrwmyyw', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 922
149024
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john48doe48@email.com' LIMIT 1
149025
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john50doe50' LIMIT 1
149026
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '69c41c0d61308b914d4713173a28e66faf15072544c2801fb4f1905c2597fefac13d86010a24ad1938e1aa2b5fc62d8860ef08a583a6b7d895caf5a040a62529' LIMIT 1
149027
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF50' LIMIT 1
149028
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 922 LIMIT 1
149029
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'JKDiTF0DLYrICkr4pjfY', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 922
149030
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', '34201588b110db4447f8059a7898f0f8d27b55b8bc96692cdd7b8b0e1525ac6b29d26819c53033ba6e8d36441df471674b65697e7e9aca592b831e28884170e1', 'john48doe48@email.com', 'John50', 'Doe50', 'john50doe50', 'KowBBCGJy8fFgDkJGFSn', 'ELoPEvpQkTW18mAxLzv', '69c41c0d61308b914d4713173a28e66faf15072544c2801fb4f1905c2597fefac13d86010a24ad1938e1aa2b5fc62d8860ef08a583a6b7d895caf5a040a62529', 'k3cF50', '2014-08-26 12:51:18')
149031
+ Processing by Spud::Admin::UsersController#update as HTML
149032
+ Parameters: {"spud_user"=>{"id"=>"942", "first_name"=>"Adam", "last_name"=>"Doe50", "super_admin"=>nil, "login"=>"john50doe50", "email"=>"john48doe48@email.com", "crypted_password"=>"[FILTERED]", "password_salt"=>"[FILTERED]", "persistence_token"=>"69c41c0d61308b914d4713173a28e66faf15072544c2801fb4f1905c2597fefac13d86010a24ad1938e1aa2b5fc62d8860ef08a583a6b7d895caf5a040a62529", "single_access_token"=>"k3cF50", "perishable_token"=>"ELoPEvpQkTW18mAxLzv", "login_count"=>"0", "failed_login_count"=>"0", "last_request_at"=>nil, "current_login_at"=>nil, "last_login_at"=>nil, "current_login_ip"=>nil, "last_login_ip"=>nil, "created_at"=>"2014-08-26 12:51:18 UTC", "updated_at"=>"2014-08-26 12:51:18 UTC", "time_zone"=>nil}, "id"=>"942"}
149033
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 922 LIMIT 1
149034
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'QgKr1OjCUYTH107HqrhH', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 922
149035
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 942 ORDER BY `spud_users`.`id` ASC LIMIT 1
149036
+ Unpermitted parameters: id
149037
+ SQL (0.5ms) UPDATE `spud_users` SET `first_name` = 'Adam', `perishable_token` = 'UCRbkV3Gzu1gPxN2ZEsF', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 942
149038
+ Redirected to http://test.host/spud/admin/users
149039
+ Completed 302 Found in 14ms (ActiveRecord: 1.5ms)
149040
+  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1
149041
+  (0.2ms) ROLLBACK
149042
+  (0.1ms) BEGIN
149043
+  (0.2ms) SAVEPOINT active_record_1
149044
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:18', '5f8d48e607081fb4bfdd953f566e7ef0ccc9775851b639e21c9ec86540446a679e212c028930db21ae962e5ff1f5d2b3576ca72b0666eba08b2272802659c64f', 'john49doe49@email.com', 'John51', 'Doe51', 'john51doe51', 'bEXkjk0UB7wEQRDqJ5', 'MFUfDqzGWWFUVdscanV', '90e1bf8eb1275098110f41f7e8d0e0c320afadb0389b1bd1906ad35d3a778012343e6d59698c5fc7bd7575d371177438f54b6cbc1921abac6bbb9af6c320c67a', 'k3cF51', 1, '2014-08-26 12:51:18')
149045
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'NIcihgVOpcwGg4bk6PMl', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 962
149046
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john50doe50@email.com' LIMIT 1
149047
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john52doe52' LIMIT 1
149048
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'e2b786c4275aec5fa7cdc2c6d5cecaa6a60b6f4b77e25e94094e41ce53ee899bf23b6b87469016db7da32a70c9f4ca07549ae28d350ac858f6d888a416dbdce5' LIMIT 1
149049
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF52' LIMIT 1
149050
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 962 LIMIT 1
149051
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'Jjg0xzj241Ss4MEWgkWF', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 962
149052
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', 'b4994de16a0f7af213fae97a07f661ddbe537a720d98bf1f06c52c9c5359e743b69fb9ebe9497d6faf2e9ce5d1bc3fc0defe865b94249de92cc1e4af84289043', 'john50doe50@email.com', 'John52', 'Doe52', 'john52doe52', 'BrlVBOUmMQMISFx2qadr', 'iBSRKeoBjzxRfjL8UkYk', 'e2b786c4275aec5fa7cdc2c6d5cecaa6a60b6f4b77e25e94094e41ce53ee899bf23b6b87469016db7da32a70c9f4ca07549ae28d350ac858f6d888a416dbdce5', 'k3cF52', '2014-08-26 12:51:18')
149053
+  (0.2ms) SELECT COUNT(*) FROM `spud_users`
149054
+ Processing by Spud::Admin::UsersController#destroy as HTML
149055
+ Parameters: {"id"=>"982"}
149056
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 962 LIMIT 1
149057
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'e2kfZqCLBvF0jT90PQ', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 962
149058
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 982 ORDER BY `spud_users`.`id` ASC LIMIT 1
149059
+ SQL (0.3ms) DELETE FROM `spud_users` WHERE `spud_users`.`id` = 982
149060
+ Redirected to http://test.host/spud/admin/users
149061
+ Completed 302 Found in 9ms (ActiveRecord: 1.3ms)
149062
+  (0.3ms) SELECT COUNT(*) FROM `spud_users`
149063
+  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1
149064
+  (0.1ms) ROLLBACK
149065
+  (0.1ms) BEGIN
149066
+  (0.1ms) SAVEPOINT active_record_1
149067
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:18', 'dddc9803824c92cbbdc946770fa05a3e4f1b25dda967bc58c41dd70b44763c263b8e5686873a0707e27fa674bb1a9ee629cb38d8d53f36281c6b819071382394', 'john51doe51@email.com', 'John53', 'Doe53', 'john53doe53', 'SRNEPeS4UdtI5KdBsjMJ', 'UQFI9q3TgUodFOhhTt73', '701925d372835ae696710d923a9f808246261ecad0ef5eef70900b0fde5d25042552fec9a33f00f6a1564b2d725464f63c50784130ba97f9863f2e72a5923af3', 'k3cF53', 1, '2014-08-26 12:51:18')
149068
+ SQL (0.6ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'l9Twwdhbl39ltoDegfTI', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1002
149069
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john52doe52@email.com' LIMIT 1
149070
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john54doe54' LIMIT 1
149071
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'b8e3442a39217cb9db89e8394f6472ed8a1de3ebd8503c870f98e527b4c358df0dc91a22e995c40c46fa802a7972766936f36c6b12adfcc579a1863876b0bca9' LIMIT 1
149072
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF54' LIMIT 1
149073
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1002 LIMIT 1
149074
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'EXZYhKYLmhCZzLbuBjc', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1002
149075
+ SQL (0.2ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', '73d426f89e4d9477718b5a480fc33ac0c6121a37e04dcb75b28480926a4d7250460bb56f2dc0784c247e840a2c7c86fcac74f1441e9216ddf47443392687ca5d', 'john52doe52@email.com', 'John54', 'Doe54', 'john54doe54', 'QOSivaHxNYWoz0DZJJzZ', 'ObmgUFBqd3xuECwbrGbU', 'b8e3442a39217cb9db89e8394f6472ed8a1de3ebd8503c870f98e527b4c358df0dc91a22e995c40c46fa802a7972766936f36c6b12adfcc579a1863876b0bca9', 'k3cF54', '2014-08-26 12:51:18')
149076
+  (0.2ms) SELECT COUNT(*) FROM `spud_users`
149077
+ Processing by Spud::Admin::UsersController#destroy as HTML
149078
+ Parameters: {"id"=>"23532"}
149079
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1002 LIMIT 1
149080
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'wkUPCx4cDMSYGNH2x6ce', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1002
149081
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 23532 ORDER BY `spud_users`.`id` ASC LIMIT 1
149082
+ Redirected to http://test.host/spud/admin/users
149083
+ Filter chain halted as :load_user rendered or redirected
149084
+ Completed 302 Found in 6ms (ActiveRecord: 0.9ms)
149085
+  (0.2ms) SELECT COUNT(*) FROM `spud_users`
149086
+  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1
149087
+  (0.1ms) ROLLBACK
149088
+  (0.1ms) BEGIN
149089
+  (0.1ms) SAVEPOINT active_record_1
149090
+ Processing by Spud::PasswordResetsController#new as HTML
149091
+ Completed 200 OK in 5ms (Views: 3.1ms | ActiveRecord: 0.0ms)
149092
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149093
+  (0.1ms) ROLLBACK
149094
+  (0.1ms) BEGIN
149095
+  (0.2ms) SAVEPOINT active_record_1
149096
+ Processing by Spud::PasswordResetsController#edit as HTML
149097
+ Parameters: {"id"=>"1"}
149098
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.0ms)
149099
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149100
+  (0.1ms) ROLLBACK
149101
+  (0.1ms) BEGIN
149102
+  (0.1ms) SAVEPOINT active_record_1
149103
+ Processing by Spud::PasswordResetsController#edit as HTML
149104
+ Parameters: {"id"=>"1"}
149105
+ Redirected to http://test.host/spud/user_session/new
149106
+ Filter chain halted as :load_user_using_perishable_token rendered or redirected
149107
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
149108
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149109
+  (0.1ms) ROLLBACK
149110
+  (0.1ms) BEGIN
149111
+  (0.1ms) SAVEPOINT active_record_1
149112
+ Processing by Spud::PasswordResetsController#create as HTML
149113
+ Parameters: {"email"=>"john55doe55@email.com"}
149114
+ Redirected to http://test.host/spud/user_session/new
149115
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
149116
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149117
+  (0.1ms) ROLLBACK
149118
+  (0.1ms) BEGIN
149119
+  (0.1ms) SAVEPOINT active_record_1
149120
+ Processing by Spud::PasswordResetsController#create as HTML
149121
+ Parameters: {"email"=>"john56doe56@email.com"}
149122
+
149123
+ Sent mail to john56doe56@email.com (23.0ms)
149124
+ Date: Tue, 26 Aug 2014 08:51:18 -0400
149125
+ From: no-reply@spudengine.com
149126
+ To: john56doe56@email.com
149127
+ Message-ID: <53fc82c684671_3f033fe85d85e6cc52666@Davids-MacBook-Air-2.local.mail>
149128
+ Subject: Forgot Password Request from Test Site
149129
+ Mime-Version: 1.0
149130
+ Content-Type: multipart/alternative;
149131
+ boundary="--==_mimepart_53fc82c6810ed_3f033fe85d85e6cc525b5";
149132
+ charset=UTF-8
149133
+ Content-Transfer-Encoding: 7bit
149134
+
149135
+
149136
+ ----==_mimepart_53fc82c6810ed_3f033fe85d85e6cc525b5
149137
+ Content-Type: text/plain;
149138
+ charset=UTF-8
149139
+ Content-Transfer-Encoding: 7bit
149140
+
149141
+ Reset Password Request
149142
+ ======================
149143
+
149144
+ A password reset was requested by the user tied to this email address. If you believe this is in error, please double check your security settings to prevent unauthorized access of your account.
149145
+
149146
+ Otherwise, you may reset your password by clicking on the link below:
149147
+
149148
+ http://test.host/spud/password_resets/jfdlsafhbkvabuadfbds/edit
149149
+
149150
+
149151
+ ----==_mimepart_53fc82c6810ed_3f033fe85d85e6cc525b5
149152
+ Content-Type: text/html;
149153
+ charset=UTF-8
149154
+ Content-Transfer-Encoding: 7bit
149155
+
149156
+ <!DOCTYPE html>
149157
+ <html>
149158
+ <head>
149159
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
149160
+ </head>
149161
+ <body>
149162
+ <h2>Reset Password Request</h2>
149163
+ <p>A password reset was requested by the user tied to this email address. If you believe this is in error, please double check your security settings to prevent unauthorized access of your account</p>
149164
+
149165
+ <p>Otherwise, you may reset your password by clicking on the link below:</p>
149166
+ <p><a href="http://test.host/spud/password_resets/jfdlsafhbkvabuadfbds/edit">http://test.host/spud/password_resets/jfdlsafhbkvabuadfbds/edit</a></p>
149167
+
149168
+ </body>
149169
+ </html>
149170
+ ----==_mimepart_53fc82c6810ed_3f033fe85d85e6cc525b5--
149171
+
149172
+ Redirected to http://test.host/spud/user_session/new
149173
+ Completed 302 Found in 55ms (ActiveRecord: 0.0ms)
149174
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149175
+  (0.2ms) ROLLBACK
149176
+  (0.1ms) BEGIN
149177
+  (0.1ms) SAVEPOINT active_record_1
149178
+ Processing by Spud::PasswordResetsController#create as HTML
149179
+ Parameters: {"email"=>"invalid@email.com"}
149180
+ Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.0ms)
149181
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149182
+  (0.2ms) ROLLBACK
149183
+  (0.1ms) BEGIN
149184
+  (0.1ms) SAVEPOINT active_record_1
149185
+ Processing by Spud::PasswordResetsController#update as HTML
149186
+ Parameters: {"spud_user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "id"=>"1"}
149187
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john57doe57@email.com' LIMIT 1
149188
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john59doe59' LIMIT 1
149189
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'd1c67bc5712e9873f2ac57945a7323d1d93879b471a5b688ebe2f1f8082d76afcb2e8ca435e40424c7a575d45b1bf6ec5e63321f66892679a8dc58b9fc37f435' LIMIT 1
149190
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF59' LIMIT 1
149191
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `id`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', 'e775ecb59978dab4b682d9884fc234d65d92af272b19f571d6173fdd6f5793e981eb61a1e83a03c1221ea4b642810999b28f43a14527193a17e25a90f7045757', '2014-08-26 12:51:18', '0.0.0.0', 'john57doe57@email.com', 'John59', 1, 'Doe59', '2014-08-26 12:51:18', 'john59doe59', 1, 'j8us08HZB3C4zWDoR3X', 'CZqbBsvemCiV8VjB8U', 'd1c67bc5712e9873f2ac57945a7323d1d93879b471a5b688ebe2f1f8082d76afcb2e8ca435e40424c7a575d45b1bf6ec5e63321f66892679a8dc58b9fc37f435', 'k3cF59', '2014-08-26 12:51:18')
149192
+ Redirected to http://test.host/spud/user_session/new
149193
+ Completed 302 Found in 14ms (ActiveRecord: 1.5ms)
149194
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
149195
+  (0.2ms) ROLLBACK
149196
+  (0.1ms) BEGIN
149197
+  (0.1ms) SAVEPOINT active_record_1
149198
+ Processing by Spud::PasswordResetsController#update as HTML
149199
+ Parameters: {"spud_user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "id"=>"1"}
149200
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john58doe58@email.com' LIMIT 1
149201
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john60doe60' LIMIT 1
149202
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'aec1c980077014bec4551051b781e6611741f96f7d174c2a4d1ce6a8c05e60789f9be3a1c8c777189b548b3f4c58daf471a375e63e424d4952c765788baa5f23' LIMIT 1
149203
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF60' LIMIT 1
149204
+ Completed 200 OK in 9ms (Views: 2.1ms | ActiveRecord: 1.0ms)
149205
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149206
+  (0.1ms) ROLLBACK
149207
+  (0.1ms) BEGIN
149208
+  (0.1ms) SAVEPOINT active_record_1
149209
+ Processing by Spud::SetupController#index as HTML
149210
+  (0.3ms) SELECT COUNT(*) FROM `spud_users`
149211
+ Completed 200 OK in 6ms (Views: 3.0ms | ActiveRecord: 0.3ms)
149212
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149213
+  (0.1ms) ROLLBACK
149214
+  (0.1ms) BEGIN
149215
+  (0.1ms) SAVEPOINT active_record_1
149216
+ Processing by Spud::SetupController#index as HTML
149217
+  (0.3ms) SELECT COUNT(*) FROM `spud_users`
149218
+ Completed 200 OK in 4ms (Views: 1.2ms | ActiveRecord: 0.3ms)
149219
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149220
+  (0.1ms) ROLLBACK
149221
+  (0.1ms) BEGIN
149222
+  (0.1ms) SAVEPOINT active_record_1
149223
+ Processing by Spud::SetupController#index as HTML
149224
+  (0.3ms) SELECT COUNT(*) FROM `spud_users`
149225
+ Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.3ms)
149226
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149227
+  (0.1ms) ROLLBACK
149228
+  (0.1ms) BEGIN
149229
+  (0.1ms) SAVEPOINT active_record_1
149230
+ Processing by Spud::SetupController#index as HTML
149231
+ Redirected to http://test.host/spud/user_session/new
149232
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
149233
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149234
+  (0.2ms) ROLLBACK
149235
+  (0.1ms) BEGIN
149236
+  (0.1ms) SAVEPOINT active_record_1
149237
+ Processing by Spud::SetupController#index as HTML
149238
+ Redirected to http://test.host/spud/user_session/new
149239
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
149240
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149241
+  (0.2ms) ROLLBACK
149242
+  (0.1ms) BEGIN
149243
+  (0.2ms) SAVEPOINT active_record_1
149244
+  (0.3ms) SELECT COUNT(*) FROM `spud_users`
149245
+ Processing by Spud::SetupController#index as HTML
149246
+ Parameters: {"first_name"=>"John61", "last_name"=>"Doe61", "login"=>"john61doe61", "email"=>"john59doe59@email.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "single_access_token"=>"k3cF61"}
149247
+  (0.4ms) SELECT COUNT(*) FROM `spud_users`
149248
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john59doe59@email.com' LIMIT 1
149249
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john61doe61' LIMIT 1
149250
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '4d2bcc5a24eb80c7eb33989eb739cfd2029f4b5f88c8bdf0d724c9d50b050d23d46dc76d54f02b4319f5a40e4345851a596bd13df36e724091d89d88a834c393' LIMIT 1
149251
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'OqXvdsw5C3zJFKrMKJQ' LIMIT 1
149252
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:18', 'ef6d1a986c931123fdadb594a620918d385375d5e03e34ddd7c4c881b986f602401150207444f58fbbf6fd70d0f0bfc91a61ee41f4f874426a8d9d6712dfbd8a', '2014-08-26 12:51:18', '0.0.0.0', 'john59doe59@email.com', '2014-08-26 12:51:18', 'john61doe61', 1, '3eCTp5hwmJ0IpJc0uJ9w', '9yp9xcKO3kWscmMkp4Ni', '4d2bcc5a24eb80c7eb33989eb739cfd2029f4b5f88c8bdf0d724c9d50b050d23d46dc76d54f02b4319f5a40e4345851a596bd13df36e724091d89d88a834c393', 'OqXvdsw5C3zJFKrMKJQ', 1, '2014-08-26 12:51:18')
149253
+ Redirected to http://test.host/spud/user_session/new
149254
+ Completed 302 Found in 12ms (ActiveRecord: 1.8ms)
149255
+  (0.2ms) SELECT COUNT(*) FROM `spud_users`
149256
+  (8.3ms) ROLLBACK TO SAVEPOINT active_record_1
149257
+  (0.1ms) ROLLBACK
149258
+  (0.1ms) BEGIN
149259
+  (0.1ms) SAVEPOINT active_record_1
149260
+ Processing by Spud::SetupController#index as HTML
149261
+ Parameters: {"first_name"=>"John62", "last_name"=>"Doe62", "login"=>"john62doe62", "email"=>"john60doe60@email.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "single_access_token"=>"k3cF62"}
149262
+  (0.2ms) SELECT COUNT(*) FROM `spud_users`
149263
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john60doe60@email.com' LIMIT 1
149264
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john62doe62' LIMIT 1
149265
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '16f566a27d6ca180a52b507d88b0bce4dc0248745afda7856b6f2cc6289fcb7ab76678732bad7a0dc9af31ece951d58e27789690c9d37146c0f3c4e504070b82' LIMIT 1
149266
+ SpudUser Exists (0.1ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'HixfvsbltZRZ2DPU0Xl' LIMIT 1
149267
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `super_admin`, `updated_at`) VALUES ('2014-08-26 12:51:18', 'fbc56f5c229270ab56ad33480767632dee66039fc1eaab8919c7461fdeb212d0795e3271ee2aab3c5aa9f64e7b75e037c65d3e0fcb337444753b4e39627b9e6b', '2014-08-26 12:51:18', '0.0.0.0', 'john60doe60@email.com', '2014-08-26 12:51:18', 'john62doe62', 1, 'llKWsX5ubLOiOtwgHrss', 'HZ9JNM8hkiSWWuzOtBUM', '16f566a27d6ca180a52b507d88b0bce4dc0248745afda7856b6f2cc6289fcb7ab76678732bad7a0dc9af31ece951d58e27789690c9d37146c0f3c4e504070b82', 'HixfvsbltZRZ2DPU0Xl', 1, '2014-08-26 12:51:18')
149268
+ Redirected to http://test.host/spud/user_session/new
149269
+ Completed 302 Found in 11ms (ActiveRecord: 1.3ms)
149270
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
149271
+  (0.1ms) ROLLBACK
149272
+  (0.1ms) BEGIN
149273
+  (0.1ms) SAVEPOINT active_record_1
149274
+ Processing by Spud::SetupController#index as HTML
149275
+ Parameters: {"first_name"=>"John63", "last_name"=>"Doe63", "login"=>"john63doe63", "email"=>nil, "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "single_access_token"=>"k3cF63"}
149276
+  (0.3ms) SELECT COUNT(*) FROM `spud_users`
149277
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john63doe63' LIMIT 1
149278
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'eb6233b8765736368c987557e89dfb2cd8bcddae0f51a05263b5bbfc7cec8cc559f99dd040273e5e251295fdb858081146d35c2b0c267fcdfc57e07f8ef7f42d' LIMIT 1
149279
+ SpudUser Exists (0.1ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'nL05YVqnfQlEhLOHpKt' LIMIT 1
149280
+ Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.8ms)
149281
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149282
+  (0.1ms) ROLLBACK
149283
+  (0.1ms) BEGIN
149284
+  (0.1ms) SAVEPOINT active_record_1
149285
+ Processing by Spud::SitemapsController#show as XML
149286
+ Completed 200 OK in 6ms (Views: 3.7ms | ActiveRecord: 0.0ms)
149287
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149288
+  (0.1ms) ROLLBACK
149289
+  (0.1ms) BEGIN
149290
+  (0.1ms) SAVEPOINT active_record_1
149291
+ Processing by Spud::SitemapsController#show as HTML
149292
+ Completed 406 Not Acceptable in 1ms
149293
+  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1
149294
+  (0.1ms) ROLLBACK
149295
+  (0.2ms) BEGIN
149296
+  (0.2ms) SAVEPOINT active_record_1
149297
+ Processing by Spud::UserSessionsController#new as HTML
149298
+  (0.3ms) SELECT COUNT(*) FROM `spud_users`
149299
+ NO USERS!
149300
+ Redirected to http://test.host/spud/setup
149301
+ Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
149302
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149303
+  (0.2ms) ROLLBACK
149304
+  (0.1ms) BEGIN
149305
+  (0.1ms) SAVEPOINT active_record_1
149306
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john61doe61@email.com' LIMIT 1
149307
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john64doe64' LIMIT 1
149308
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '98f1032f5965f797b232a56132413757712bbdf51f32c55f966b336cbd1524a3cc752c1a31d83d8437080867371c78d1886da69cdf5cfc0b602f014b0e1e8c40' LIMIT 1
149309
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF64' LIMIT 1
149310
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', '981ab992fb863bbfd4ee8367a1b09d38d4c05a532a062700203ab88a687e31384d05785f72b780bac5de0ba5a9654b92b485fe912dc711200a4ae5851bcaa66f', '2014-08-26 12:51:18', '0.0.0.0', 'john61doe61@email.com', 'John64', 'Doe64', '2014-08-26 12:51:18', 'john64doe64', 1, '4wgwD7ZCvATrC0dMLNTA', 'wKBRiW0N6y4vhXwxvzPq', '98f1032f5965f797b232a56132413757712bbdf51f32c55f966b336cbd1524a3cc752c1a31d83d8437080867371c78d1886da69cdf5cfc0b602f014b0e1e8c40', 'k3cF64', '2014-08-26 12:51:18')
149311
+ SQL (0.3ms) UPDATE `spud_users` SET `perishable_token` = 'Zco7m8ixuj7e66T6YJN', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1082
149312
+ Processing by Spud::UserSessionsController#new as HTML
149313
+  (0.3ms) SELECT COUNT(*) FROM `spud_users`
149314
+ Completed 200 OK in 5ms (Views: 2.6ms | ActiveRecord: 0.3ms)
149315
+  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1
149316
+  (0.2ms) ROLLBACK
149317
+  (0.1ms) BEGIN
149318
+  (0.1ms) SAVEPOINT active_record_1
149319
+ Processing by Spud::UserSessionsController#create as HTML
149320
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
149321
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149322
+  (0.1ms) ROLLBACK
149323
+  (0.1ms) BEGIN
149324
+  (0.2ms) SAVEPOINT active_record_1
149325
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john62doe62@email.com' LIMIT 1
149326
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' LIMIT 1
149327
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '58d28d299d431c7f4010848cc20a9e7f93bd606a5ab0b7207be90e6d29e622df3f2f463273c9de1213567a2a6cf9a3915640a9fb445d9275760ee1f3a6dd59e1' LIMIT 1
149328
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF65' LIMIT 1
149329
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', 'd7ff761abf90f6b0c4ff14b743f666e2d7ddf84d94be96df0c84ea6749bdd3394fc658298d92063e6b88d594afa4fb84b89046236846b0765318fec88c24985d', '2014-08-26 12:51:18', '0.0.0.0', 'john62doe62@email.com', 'John65', 'Doe65', '2014-08-26 12:51:18', 'testuser', 1, 'I7Sqkd5VxcUJUpvbOO5', 'gKlmxp5vlskCGdVIwhZ', '58d28d299d431c7f4010848cc20a9e7f93bd606a5ab0b7207be90e6d29e622df3f2f463273c9de1213567a2a6cf9a3915640a9fb445d9275760ee1f3a6dd59e1', 'k3cF65', '2014-08-26 12:51:18')
149330
+ SQL (0.3ms) UPDATE `spud_users` SET `perishable_token` = '6K0zu5sspNWpJjklrP', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1102
149331
+ Processing by Spud::UserSessionsController#create as HTML
149332
+ Parameters: {"spud_user_session"=>{"login"=>"testuser", "password"=>"[FILTERED]"}}
149333
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`login` = 'testuser' ORDER BY `spud_users`.`id` ASC LIMIT 1
149334
+ SQL (0.5ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:18', `current_login_at` = '2014-08-26 12:51:18', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = '2A3pCEnRHwVYHjF2itNJ', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1102
149335
+ Redirected to http://test.host/
149336
+ Completed 302 Found in 9ms (ActiveRecord: 0.9ms)
149337
+  (0.9ms) ROLLBACK TO SAVEPOINT active_record_1
149338
+  (0.2ms) ROLLBACK
149339
+  (0.1ms) BEGIN
149340
+  (0.1ms) SAVEPOINT active_record_1
149341
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', '265dc28eeb3413be52a44356b93abd71f527b421d5abed15191efcc88726adafeda7d7dddd9d63029edd88ef20030dea21390914156c3b097db7d047bd5922ba', 'john63doe63@email.com', 'John66', 'Doe66', 'john65doe65', 'BNjtFsHs5plg2HK6H8eu', 'EewWhad8PzGhMSTDsDDh', '38d7422a2fba1ccc2654da961649a0abc5ee7157b48afdcf5921daa43a0f338779590c71471eff5ff7f81beb014caa8073aa31e694d0d0665497602fc7e003d3', 'k3cF66', '2014-08-26 12:51:18')
149342
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'NxsMvvZpO5MGKIjZ', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1122
149343
+ Processing by Spud::UserSessionsController#destroy as HTML
149344
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1122 LIMIT 1
149345
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'yOZlsqR5nUNNIsw5TbL', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1122
149346
+ Redirected to http://test.host/spud/user_session/new
149347
+ Completed 302 Found in 6ms (ActiveRecord: 0.7ms)
149348
+  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1
149349
+  (0.1ms) ROLLBACK
149350
+  (0.1ms) BEGIN
149351
+  (0.1ms) SAVEPOINT active_record_1
149352
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', '2e597535cfabda9ee5b14ffaea21d8354358e0f8713144f3a30f2f909eb14bac4f18df0f89aea7961278555b0631379514ffa77c05e554e9d0373bda4e69924b', 'john64doe64@email.com', 'John67', 'Doe67', 'john66doe66', 'dfLmSHaAgFbdZvbKtkrv', 'JWtst7kxwwe0pi5zj5tP', 'f5c4bcf7a543ba130714877215a1fb81afbce15b1badf0a537ddbd687d44d450758cfbe3bf54e89b97e08a816addf82795a408c628f5dbe6fe5b3816fdb612f4', 'k3cF67', '2014-08-26 12:51:18')
149353
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'c6LdWZNDKkSmCBtzF1h', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1142
149354
+ Processing by Spud::UserSessionsController#destroy as HTML
149355
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1142 LIMIT 1
149356
+ SQL (0.4ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'QHw4VAU2ehUgVztrpABq', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1142
149357
+ Redirected to http://test.host/
149358
+ Completed 302 Found in 6ms (ActiveRecord: 0.7ms)
149359
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
149360
+  (0.1ms) ROLLBACK
149361
+  (0.1ms) BEGIN
149362
+  (0.1ms) SAVEPOINT active_record_1
149363
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', '45b66834b1f5b11e6b6543085e57a9096097f54b639a32ef042edf632d30f0f99d71f80617db9bd5419d19b2a5ba98df550d2947644a4174d8cf5d2f530b6ecc', 'john65doe65@email.com', 'John68', 'Doe68', 'john67doe67', 'bYH5mkbSxJj1T2uMXFxX', 'lhBRBQnGmnfTTaH79k2n', '2bdccedc3a443fa1934b3d82f8de96fc0f1b8a7685ba6404f497864a90a00eb27c54d4e1c66c16bfdda93f834bf4e0eaaeb2919bad2521d627177f62f470f494', 'k3cF68', '2014-08-26 12:51:18')
149364
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'rRRsND7Qb7b0VmRt5', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1162
149365
+ Processing by Spud::UsersController#settings as HTML
149366
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1162 LIMIT 1
149367
+ SQL (0.4ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'e0ilmL7z4jJ38NbaJyRQ', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1162
149368
+  (0.3ms) SELECT COUNT(*) FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 1162
149369
+ Completed 200 OK in 12ms (Views: 3.0ms | ActiveRecord: 1.1ms)
149370
+  (0.9ms) ROLLBACK TO SAVEPOINT active_record_1
149371
+  (0.2ms) ROLLBACK
149372
+  (0.1ms) BEGIN
149373
+  (0.1ms) SAVEPOINT active_record_1
149374
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', '3cc5d90a1ed63cf6503516ea9a05a4719056502d8604237b7935d6c1564c4a4707dce9884390969ff6c8c238ebed359a168e8de39fd29e0dbaaf4080d7afa238', 'john66doe66@email.com', 'John69', 'Doe69', 'john68doe68', 'BFEkvF6sFPQfMtsvvIYT', 'bQVqcQJmoI2eVnIy7o', '62b60d3a2194b7c808af94f074b9287a959f4c638ea808b810009dd47f0d17c219c97438b6f114f4775d26911cbcdc00b2e358726e8ad54342b2b2b013da952a', 'k3cF69', '2014-08-26 12:51:18')
149375
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'iW6bYNvekR6a0x6KLvyI', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1182
149376
+ Processing by Spud::UsersController#settings as HTML
149377
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1182 LIMIT 1
149378
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'wR1k025EyUyMWGDGDfxu', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1182
149379
+  (0.3ms) SELECT COUNT(*) FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 1182
149380
+ Completed 200 OK in 8ms (Views: 1.1ms | ActiveRecord: 0.8ms)
149381
+  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1
149382
+  (0.1ms) ROLLBACK
149383
+  (0.1ms) BEGIN
149384
+  (0.2ms) SAVEPOINT active_record_1
149385
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:18', '0ba7e8ee72cf1640db7486e15368ee657501937e08d14d76f7cd1b9731d5ba2cc8e9ab56642281e24993199fdc752c00e335ab2b9374abe1061ecfcb54eefe8c', 'john67doe67@email.com', 'John70', 'Doe70', 'john69doe69', 'pL8Lq82cE9z9yRbGhdEe', 'JjoJOKz6RPS4u8B8yKO', 'd2376cfc4344b208ab9accba3d627b83b51f50be88ab21b3704a6e50b1dc72dc12fca58561af4bc453affd377caba401317b0cd22fe3fd64649efec66e6cd72f', 'k3cF70', '2014-08-26 12:51:18')
149386
+ SQL (0.5ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:18', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'Qs0nQZFcp6Ag42lVDe', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1202
149387
+ Processing by Spud::UsersController#settings as HTML
149388
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1202 LIMIT 1
149389
+ SQL (0.4ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:18', `perishable_token` = 'SyTYKjTLKYEgpZzZs2u', `updated_at` = '2014-08-26 12:51:18' WHERE `spud_users`.`id` = 1202
149390
+  (0.4ms) SELECT COUNT(*) FROM `spud_admin_permissions` WHERE `spud_admin_permissions`.`user_id` = 1202
149391
+ Completed 200 OK in 12ms (Views: 1.7ms | ActiveRecord: 1.2ms)
149392
+  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1
149393
+  (0.1ms) ROLLBACK
149394
+  (0.2ms) BEGIN
149395
+  (0.1ms) SAVEPOINT active_record_1
149396
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', 'fb59b88f3501ec343c14ce2258ee7300ec44081f649e13c7743cd77b58e1bc0eb49a661aa042e22b656754895ea0283e0912f4018e2e1515526811a38f6e0f2d', 'john68doe68@email.com', 'John71', 'Doe71', 'john70doe70', 'wBchEtA5tBZZXVhjoX1D', 'w58x72EdGddWw5m8rK', '1d78943b18f529efe298cc5ce5bce554a09841c6c2c76f98df67e04a1fbd6d03e28e97c24557fcfa15094c1982f5e43d0476dd09da20f4864dd9653fcb5bb19b', 'k3cF71', '2014-08-26 12:51:19')
149397
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:19', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'MLXyzm2MpUXaNOIxdjN', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1222
149398
+ Processing by Spud::UsersController#update as HTML
149399
+ Parameters: {"spud_user"=>{"first_name"=>"Mike"}}
149400
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1222 LIMIT 1
149401
+ SQL (0.4ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'K8w53xHst2e7NXq6j84', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1222
149402
+ SQL (0.4ms) UPDATE `spud_users` SET `first_name` = 'Mike', `perishable_token` = 'jyaLPScgzKFTfKtZ8LE', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1222
149403
+ Redirected to http://test.host/spud/admin
149404
+ Completed 302 Found in 9ms (ActiveRecord: 1.1ms)
149405
+  (0.9ms) ROLLBACK TO SAVEPOINT active_record_1
149406
+  (0.1ms) ROLLBACK
149407
+  (0.1ms) BEGIN
149408
+  (0.1ms) SAVEPOINT active_record_1
149409
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', 'e8b42d874aefed8962fe706cdbd7595e57b471acc94b99a9079a41db690d14f7286a29a37fc4d7117547c39bf4ed70211786aca502bdbcee6570279cdc526a86', 'john69doe69@email.com', 'John72', 'Doe72', 'john71doe71', 'PjcBB6a9IiqMNAKUc6T', '3uU4wTPDUqpzC898Iw', 'e6e10c2ec6abdd93337df57912466e0e938a5f88008e69dd802aa2fa13373512121f2999d4c4223783068fc839ae57106889b45ec1e755d4da71c620f9021bc4', 'k3cF72', '2014-08-26 12:51:19')
149410
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:19', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'BbAiIkn2tKtkaDEgvOXI', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1242
149411
+ Processing by Spud::UsersController#update as HTML
149412
+ Parameters: {"spud_user"=>{"first_name"=>"Mike"}}
149413
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1242 LIMIT 1
149414
+ SQL (0.4ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'G3Ff2b04mpkTRglcB6L7', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1242
149415
+ SQL (0.3ms) UPDATE `spud_users` SET `first_name` = 'Mike', `perishable_token` = '5Fb4rqlzXuaGgF4HSJbn', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1242
149416
+ Redirected to http://test.host/spud/admin
149417
+ Completed 302 Found in 8ms (ActiveRecord: 1.0ms)
149418
+  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1
149419
+  (0.1ms) ROLLBACK
149420
+  (0.1ms) BEGIN
149421
+  (0.1ms) SAVEPOINT active_record_1
149422
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', '9d8cdd8835b0dcb425a11485f9eda809bfe6a4f57aed51d0c63d73fd50c5afa3804697e587a9d3bf7f6030c08250a250ee5767f37a7c47f0126ee81d0c9a2dfa', 'john70doe70@email.com', 'John73', 'Doe73', 'john72doe72', '3M9H4rjmSkkyPA50DS9', 'mxd7h6JPQ8KWoe659slz', '1573285df075162df597661f7260f75c7af7b72064d656dcd78057d74d4e13a298c86b68be50f5aa888c4de2f3c37b9ec39cfb24d15fb6e1aa6907e9c24edb43', 'k3cF73', '2014-08-26 12:51:19')
149423
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:19', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'gDSYgji2u5fgLP8WRsFZ', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1262
149424
+ Processing by Spud::UsersController#update as HTML
149425
+ Parameters: {"spud_user"=>{"password"=>"[FILTERED]"}}
149426
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1262 LIMIT 1
149427
+ SQL (0.5ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'XAK94qmFhCsZXBdgW2H', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1262
149428
+ SpudUser Exists (0.9ms) SELECT 1 AS one FROM `spud_users` WHERE (`spud_users`.`persistence_token` = BINARY 'd775a6778303e112a099b102c3d5f7c6973449f8bba4239096b8ee85954e5c43b7a97d16fc6a0bd4c803b539008b0121f453433a080a119ca426fa04d4b1d89c' AND `spud_users`.`id` != 1262) LIMIT 1
149429
+ Completed 200 OK in 13ms (Views: 1.3ms | ActiveRecord: 1.6ms)
149430
+  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1
149431
+  (0.1ms) ROLLBACK
149432
+  (0.1ms) BEGIN
149433
+  (0.1ms) SAVEPOINT active_record_1
149434
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', '1d9a96ee7ce1f9842278844d2a81ba40f4320bc6f92537be81e2b53166bcc60f1f93eb13a4302a7915688e55ac4bee4eca292536ec62a28648aae8cb7e08e27f', 'john71doe71@email.com', 'John74', 'Doe74', 'john73doe73', 'ya0cLtt3hgqdIaQ6p5Ro', 'UArdNbKLw7QAxpoyFu', '8af75ea7aa3fbbeabe68eda4a15fe631e6ce2bca6b093afb9b54edb9f827ff8849e22f382fa8d247afecd74d8904838ca441be0519725c0d3c34936a75922e4b', 'k3cF74', '2014-08-26 12:51:19')
149435
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:19', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'y28lIe4Bd6IUn3FfWx1s', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1282
149436
+ Processing by Spud::UsersController#update as HTML
149437
+ Parameters: {"spud_user"=>{"password"=>"[FILTERED]"}}
149438
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1282 LIMIT 1
149439
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'CwGinf8tS8K9q9heIRFu', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1282
149440
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE (`spud_users`.`persistence_token` = BINARY '05d3d4daa3187b2d246751c3a6ef71219e70ed2be6dd77dcb9e9f63a5d0dd38d73eff2a1ba61d35b8221acd9d86e9745c5322129f396aa8ef49ae9ed17af60b7' AND `spud_users`.`id` != 1282) LIMIT 1
149441
+ Completed 200 OK in 9ms (Views: 1.1ms | ActiveRecord: 0.9ms)
149442
+  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1
149443
+  (0.1ms) ROLLBACK
149444
+  (0.1ms) BEGIN
149445
+  (0.1ms) SAVEPOINT active_record_1
149446
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', '70ae9fe0402c490847f9b3e481a6e1aa535aab86084914e9844fee5f49d8637127b30e1df02feb0f1d4558b3962972d14737f2573c6dd6304d8bd37a5df03d31', 'john72doe72@email.com', 'John75', 'Doe75', 'john74doe74', 'nZoiRvhsVA5dyoF9b5O6', 'VAh3d5qXViBW68hqj6n3', 'dd814549da215bb9624a51834d621f5d5824206ff1ee688aa21c09f0b92101ee8ccc8df9c47ce8ab3984d81be79723e86755a689e447277e553d4f5efc4ff8ba', 'k3cF75', '2014-08-26 12:51:19')
149447
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:19', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = '5k9ZWhxqHbhKTj8699Xp', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1302
149448
+ Processing by Spud::UsersController#update as HTML
149449
+ Parameters: {"spud_user"=>{"password"=>"[FILTERED]"}}
149450
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1302 LIMIT 1
149451
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'cupUNOzYjyPorrjKixWx', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1302
149452
+ SpudUser Exists (0.5ms) SELECT 1 AS one FROM `spud_users` WHERE (`spud_users`.`persistence_token` = BINARY '81ad7e28d4e3d73642fccf9d6030f3e852ccaf98a016130618249f0889bfeae24ffab68c2f7b8661a65e0b8f94ebd06c6c4329b15cd192bd404ea9de660db798' AND `spud_users`.`id` != 1302) LIMIT 1
149453
+ Completed 200 OK in 11ms (Views: 1.6ms | ActiveRecord: 1.1ms)
149454
+  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1
149455
+  (0.1ms) ROLLBACK
149456
+  (0.1ms) BEGIN
149457
+  (0.1ms) SAVEPOINT active_record_1
149458
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', '9924d12483683058f1fe828a2fd3a21dc0483ce9551540b50aecc307f6c8e4760b070cdab71d8d71cf3d094ddf75937a22c1d4de1e77bb22d0a33053cc98b821', 'john73doe73@email.com', 'John76', 'Doe76', 'john75doe75', 'SNXRoFivW6DgVBPcQfCF', 'jHLHq5RJoKMttfeSQdLD', '46e08e40f5ddb15a99725805880cbc5f9e229b2d658eaf01031f5164a0006e7f5c42854e28f91cf03f3f5653e987bebec7ee21de5e0a4b4e40d182bb86d10d2d', 'k3cF76', '2014-08-26 12:51:19')
149459
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:19', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'Omsvol7b0YIiBUfC38M', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1322
149460
+ Processing by Spud::UsersController#save_setting as HTML
149461
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1322 LIMIT 1
149462
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'Uc5ivUNyNm4USVbneDCe', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1322
149463
+ Completed 500 Internal Server Error in 6ms (Views: 0.4ms | ActiveRecord: 0.7ms)
149464
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
149465
+  (0.1ms) ROLLBACK
149466
+  (0.1ms) BEGIN
149467
+  (0.1ms) SAVEPOINT active_record_1
149468
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `email`, `first_name`, `last_name`, `login`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', '0605c0d8f595781dd08a9d87968628512d81f9d7e22e0ea76fe2b790311597d74f61bc842d634ee9b17a3611be6ea5829dd04c225f67291c3ea9559753c931b3', 'john74doe74@email.com', 'John77', 'Doe77', 'john76doe76', 'jaNMa1KzBJWrR6MEBGG', '8vjmeUiaouxHm2S59qW4', '101260ee95a51a68700966ddf9f344742a0237c9de6d9a28717227e25c67960c559208a3280c559bdaa659c814ec08266bad107aa60d2840f738386e3a9e22cc', 'k3cF77', '2014-08-26 12:51:19')
149469
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 1, `current_login_at` = '2014-08-26 12:51:19', `current_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'gEYN6mlO2FTX0X7iL4o', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1342
149470
+ Processing by Spud::UsersController#save_setting as HTML
149471
+ Parameters: {"key"=>"test", "value"=>"testval"}
149472
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1342 LIMIT 1
149473
+ SQL (0.3ms) UPDATE `spud_users` SET `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'Q17xbQYcVuZc6uOTb3k', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1342
149474
+ SpudUserSetting Load (0.3ms) SELECT `spud_user_settings`.* FROM `spud_user_settings` WHERE `spud_user_settings`.`spud_user_id` = 1342 AND `spud_user_settings`.`key` = 'test' ORDER BY `spud_user_settings`.`id` ASC LIMIT 1
149475
+ SpudUserSetting Exists (0.3ms) SELECT 1 AS one FROM `spud_user_settings` WHERE (`spud_user_settings`.`key` = BINARY 'test' AND `spud_user_settings`.`spud_user_id` = 1342) LIMIT 1
149476
+ SQL (0.2ms) INSERT INTO `spud_user_settings` (`created_at`, `key`, `spud_user_id`, `updated_at`, `value`) VALUES ('2014-08-26 12:51:19', 'test', 1342, '2014-08-26 12:51:19', 'testval')
149477
+ Completed 200 OK in 10ms (Views: 0.5ms | ActiveRecord: 1.3ms)
149478
+  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1
149479
+  (0.1ms) ROLLBACK
149480
+  (0.1ms) BEGIN
149481
+  (0.1ms) SAVEPOINT active_record_1
149482
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149483
+  (0.1ms) ROLLBACK
149484
+  (0.1ms) BEGIN
149485
+  (0.1ms) SAVEPOINT active_record_1
149486
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149487
+  (0.1ms) ROLLBACK
149488
+  (0.1ms) BEGIN
149489
+  (0.1ms) SAVEPOINT active_record_1
149490
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149491
+  (0.1ms) ROLLBACK
149492
+  (0.1ms) BEGIN
149493
+  (0.1ms) SAVEPOINT active_record_1
149494
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149495
+  (0.1ms) ROLLBACK
149496
+  (0.1ms) BEGIN
149497
+  (0.1ms) SAVEPOINT active_record_1
149498
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149499
+  (0.1ms) ROLLBACK
149500
+  (0.1ms) BEGIN
149501
+  (0.1ms) SAVEPOINT active_record_1
149502
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149503
+  (0.2ms) ROLLBACK
149504
+  (0.1ms) BEGIN
149505
+  (0.1ms) SAVEPOINT active_record_1
149506
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149507
+  (0.1ms) ROLLBACK
149508
+  (0.1ms) BEGIN
149509
+  (0.1ms) SAVEPOINT active_record_1
149510
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149511
+  (0.1ms) ROLLBACK
149512
+  (0.1ms) BEGIN
149513
+  (0.1ms) SAVEPOINT active_record_1
149514
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149515
+  (0.1ms) ROLLBACK
149516
+  (0.2ms) BEGIN
149517
+  (0.4ms) SAVEPOINT active_record_1
149518
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149519
+  (0.1ms) ROLLBACK
149520
+  (0.1ms) BEGIN
149521
+  (0.1ms) SAVEPOINT active_record_1
149522
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149523
+  (0.1ms) ROLLBACK
149524
+  (0.1ms) BEGIN
149525
+  (0.1ms) SAVEPOINT active_record_1
149526
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149527
+  (0.1ms) ROLLBACK
149528
+  (0.1ms) BEGIN
149529
+  (0.1ms) SAVEPOINT active_record_1
149530
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149531
+  (0.1ms) ROLLBACK
149532
+  (0.1ms) BEGIN
149533
+  (0.1ms) SAVEPOINT active_record_1
149534
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john75doe75@email.com' LIMIT 1
149535
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john77doe77' LIMIT 1
149536
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'b9decfb5fd2905f43b4903d010b899ab0cbc3ff98c0a66efd31a09aae965059df66c09820c63a85006b80d1be4ddbb4ed10402401115d7a680bbc929a1ac4f9a' LIMIT 1
149537
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF78' LIMIT 1
149538
+ SpudUser Load (0.2ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`id` = 1342 LIMIT 1
149539
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', '6af13674fb9b4ece30009e5a6601b135801abdbafa6e0b739f75854e192eab355a5af65b4d1aee702d46e3b39674e79c1543c4ce09f20e98a1c050a2f69310bd', '2014-08-26 12:51:19', '0.0.0.0', 'john75doe75@email.com', 'John78', 'Doe78', '2014-08-26 12:51:19', 'john77doe77', 1, 'kaFhaK6fysh4Ia1BapcD', 'XdwhWoBuhKr6qiOymEDq', 'b9decfb5fd2905f43b4903d010b899ab0cbc3ff98c0a66efd31a09aae965059df66c09820c63a85006b80d1be4ddbb4ed10402401115d7a680bbc929a1ac4f9a', 'k3cF78', '2014-08-26 12:51:19')
149540
+  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1
149541
+  (0.1ms) ROLLBACK
149542
+  (0.1ms) BEGIN
149543
+  (0.1ms) SAVEPOINT active_record_1
149544
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john76doe76@email.com' LIMIT 1
149545
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john78doe78' LIMIT 1
149546
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '9d2c6c03ed412c4f48c1bcb5e54d0b10ae7b257db0281c2697fea782f55febdc97d9a8abe5c582eab4f334096063600e996f7c7e33d85b498dcd4a6d5bf85ff2' LIMIT 1
149547
+ SpudUser Exists (0.1ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF79' LIMIT 1
149548
+ SpudUser Load (0.2ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`persistence_token` = 'b9decfb5fd2905f43b4903d010b899ab0cbc3ff98c0a66efd31a09aae965059df66c09820c63a85006b80d1be4ddbb4ed10402401115d7a680bbc929a1ac4f9a' LIMIT 1
149549
+ SpudUser Load (0.2ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`persistence_token` = 'b9decfb5fd2905f43b4903d010b899ab0cbc3ff98c0a66efd31a09aae965059df66c09820c63a85006b80d1be4ddbb4ed10402401115d7a680bbc929a1ac4f9a' LIMIT 1
149550
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', 'cebf1b3c68e16f033f3570eb1d11a3830104a81d740efc58bb30f581f3d992637d7d5cb5ea91e0e91f98a636b6b952403dfa9d1137d69dd8541be5a68ae39047', '2014-08-26 12:51:19', '0.0.0.0', 'john76doe76@email.com', 'John79', 'Doe79', '2014-08-26 12:51:19', 'john78doe78', 1, 'h1HfOP00QTSSoBiQmsYk', '0gFj1iUvun5WshjBwba', '9d2c6c03ed412c4f48c1bcb5e54d0b10ae7b257db0281c2697fea782f55febdc97d9a8abe5c582eab4f334096063600e996f7c7e33d85b498dcd4a6d5bf85ff2', 'k3cF79', '2014-08-26 12:51:19')
149551
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
149552
+  (0.1ms) ROLLBACK
149553
+  (0.1ms) BEGIN
149554
+  (0.1ms) SAVEPOINT active_record_1
149555
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john77doe77@email.com' LIMIT 1
149556
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john79doe79' LIMIT 1
149557
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'f92b90939772ef783b6e1a480ee0aa092a041d90f4be1c2e1939809f2fd78f034a31a2e9a2999d046840072328d0ae5b250802ab0bd5d3194f5debba200e9bdc' LIMIT 1
149558
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF80' LIMIT 1
149559
+ SpudUser Load (0.2ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`persistence_token` = '9d2c6c03ed412c4f48c1bcb5e54d0b10ae7b257db0281c2697fea782f55febdc97d9a8abe5c582eab4f334096063600e996f7c7e33d85b498dcd4a6d5bf85ff2' LIMIT 1
149560
+ SpudUser Load (0.2ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`persistence_token` = '9d2c6c03ed412c4f48c1bcb5e54d0b10ae7b257db0281c2697fea782f55febdc97d9a8abe5c582eab4f334096063600e996f7c7e33d85b498dcd4a6d5bf85ff2' LIMIT 1
149561
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', 'a92e4e4314ee2ac492beb76f8403ec78296abad063f40d5aa72e9c0bd833e5d429124659b019ae2f160def32a12883eac54714675c1fd7c9e0bf7a3a618be96e', '2014-08-26 12:51:19', '0.0.0.0', 'john77doe77@email.com', 'John80', 'Doe80', '2014-08-26 12:51:19', 'john79doe79', 1, 'KXY10Pxr8i83HTSblJ6F', 's7EbYWzmkyOYlLUzj1', 'f92b90939772ef783b6e1a480ee0aa092a041d90f4be1c2e1939809f2fd78f034a31a2e9a2999d046840072328d0ae5b250802ab0bd5d3194f5debba200e9bdc', 'k3cF80', '2014-08-26 12:51:19')
149562
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
149563
+  (0.1ms) ROLLBACK
149564
+  (0.1ms) BEGIN
149565
+  (0.1ms) SAVEPOINT active_record_1
149566
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john78doe78@email.com' LIMIT 1
149567
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john80doe80' LIMIT 1
149568
+ SpudUser Exists (0.1ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '158bbc0bc3216feec5c4eb9e2dea7340e6c32b66692a0511c1ea7f32a705eecbe19429c81de3919f3f9e9a60ca557a630b2da01b889d9d2df1a8bc63797b925f' LIMIT 1
149569
+ SpudUser Exists (0.1ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF81' LIMIT 1
149570
+ SpudUser Load (0.2ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`persistence_token` = 'f92b90939772ef783b6e1a480ee0aa092a041d90f4be1c2e1939809f2fd78f034a31a2e9a2999d046840072328d0ae5b250802ab0bd5d3194f5debba200e9bdc' LIMIT 1
149571
+ SpudUser Load (0.2ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`persistence_token` = 'f92b90939772ef783b6e1a480ee0aa092a041d90f4be1c2e1939809f2fd78f034a31a2e9a2999d046840072328d0ae5b250802ab0bd5d3194f5debba200e9bdc' LIMIT 1
149572
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', '00854e236312661dea8b50d6cd1085f48e409cf5478eb375f241e1852e01198d38c0befa03c8d90073ce434a97378cf00f6a84546b3c4a135528cfe61243cf98', '2014-08-26 12:51:19', '0.0.0.0', 'john78doe78@email.com', 'John81', 'Doe81', '2014-08-26 12:51:19', 'john80doe80', 1, 'TZolxCtmrf26CmoaAeDB', 'AalOnQOAENqiF1jF6Og', '158bbc0bc3216feec5c4eb9e2dea7340e6c32b66692a0511c1ea7f32a705eecbe19429c81de3919f3f9e9a60ca557a630b2da01b889d9d2df1a8bc63797b925f', 'k3cF81', '2014-08-26 12:51:19')
149573
+  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1
149574
+  (0.1ms) ROLLBACK
149575
+  (0.1ms) BEGIN
149576
+  (0.1ms) SAVEPOINT active_record_1
149577
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john79doe79@email.com' LIMIT 1
149578
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john81doe81' LIMIT 1
149579
+ SpudUser Exists (0.5ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'd2763b6b514272080cf235da89b9e7e1a9944950b55a23a929b43d61dfcecbeca738a05d7e1883b09ef48d9fc4894793f5b9dc0379bdadaa947ea12d8f95f39c' LIMIT 1
149580
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF82' LIMIT 1
149581
+ SpudUser Load (0.4ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`persistence_token` = '158bbc0bc3216feec5c4eb9e2dea7340e6c32b66692a0511c1ea7f32a705eecbe19429c81de3919f3f9e9a60ca557a630b2da01b889d9d2df1a8bc63797b925f' LIMIT 1
149582
+ SpudUser Load (0.2ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`persistence_token` = '158bbc0bc3216feec5c4eb9e2dea7340e6c32b66692a0511c1ea7f32a705eecbe19429c81de3919f3f9e9a60ca557a630b2da01b889d9d2df1a8bc63797b925f' LIMIT 1
149583
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', '6594e13ca6f829a2d4acee40902d3804fbcded4d415853bc4c192f047bf1c9f45b6a90bb78cf21b63d0ac3d0d411e589ec6f8c81aecbd78e5a8a2c5c9503dd1a', '2014-08-26 12:51:19', '0.0.0.0', 'john79doe79@email.com', 'John82', 'Doe82', '2014-08-26 12:51:19', 'john81doe81', 1, 'NUG86qPdWn09WBSHpZM6', 'lrcl2BiKEvgO5RWBJ8p', 'd2763b6b514272080cf235da89b9e7e1a9944950b55a23a929b43d61dfcecbeca738a05d7e1883b09ef48d9fc4894793f5b9dc0379bdadaa947ea12d8f95f39c', 'k3cF82', '2014-08-26 12:51:19')
149584
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
149585
+  (0.1ms) ROLLBACK
149586
+  (0.1ms) BEGIN
149587
+  (0.1ms) SAVEPOINT active_record_1
149588
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john80doe80@email.com' LIMIT 1
149589
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john82doe82' LIMIT 1
149590
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'ad3ad4ec9238542a263a7a490a7620d997d4eb52ae04a9086a8ff389ef855bbcb813d15c50b95d50b7fd5c3d9798b7767c244e166c1c3e732100ee759d3fbb9e' LIMIT 1
149591
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF83' LIMIT 1
149592
+ SpudUser Load (0.5ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`persistence_token` = 'd2763b6b514272080cf235da89b9e7e1a9944950b55a23a929b43d61dfcecbeca738a05d7e1883b09ef48d9fc4894793f5b9dc0379bdadaa947ea12d8f95f39c' LIMIT 1
149593
+ SpudUser Load (0.3ms) SELECT `spud_users`.* FROM `spud_users` WHERE `spud_users`.`persistence_token` = 'd2763b6b514272080cf235da89b9e7e1a9944950b55a23a929b43d61dfcecbeca738a05d7e1883b09ef48d9fc4894793f5b9dc0379bdadaa947ea12d8f95f39c' LIMIT 1
149594
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', '6e2ba96676b54c886bb24774102599b73e608b188918aec907ebd9496a44bc72c5fab3e33de92403be8a26a739f3c8900353bdb6293551ed22416574fff00c69', '2014-08-26 12:51:19', '0.0.0.0', 'john80doe80@email.com', 'John83', 'Doe83', '2014-08-26 12:51:19', 'john82doe82', 1, 'NAvlT8uD2pn8xHxbQqAV', 'FvMMPQLZKzx1OUOrWh', 'ad3ad4ec9238542a263a7a490a7620d997d4eb52ae04a9086a8ff389ef855bbcb813d15c50b95d50b7fd5c3d9798b7767c244e166c1c3e732100ee759d3fbb9e', 'k3cF83', '2014-08-26 12:51:19')
149595
+  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1
149596
+  (0.1ms) ROLLBACK
149597
+  (0.1ms) BEGIN
149598
+  (0.1ms) SAVEPOINT active_record_1
149599
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john81doe81@email.com' LIMIT 1
149600
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john83doe83' LIMIT 1
149601
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '2185325362c606ac9a673ac429e952bf7ee4e71426e078bfbf49b2a816687169b73977fcd7ba8a2c354c5c23b23e0ddb29ed65a45868ffb81ea614f807a07cc7' LIMIT 1
149602
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF84' LIMIT 1
149603
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', 'f9766dcc3e5e006d4fb74e6ace75e7259a6e2347b3359de5acdba3fc21c55a57233f86bb975e64c881b78d52beb7aac4110b9139a543bf37cc96bbc6b355867f', '2014-08-26 12:51:19', '0.0.0.0', 'john81doe81@email.com', 'John84', 'Doe84', '2014-08-26 12:51:19', 'john83doe83', 1, 'qbqW5B88KUuB9GrxZ1wV', 'LUmLmqmiMAoi6O9nfZ3U', '2185325362c606ac9a673ac429e952bf7ee4e71426e078bfbf49b2a816687169b73977fcd7ba8a2c354c5c23b23e0ddb29ed65a45868ffb81ea614f807a07cc7', 'k3cF84', '2014-08-26 12:51:19')
149604
+ SQL (0.3ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:19', `current_login_at` = '2014-08-26 12:51:19', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'aeOFYO9Tuow0Va0pSfX', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1482
149605
+  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1
149606
+  (0.1ms) ROLLBACK
149607
+  (0.1ms) BEGIN
149608
+  (0.1ms) SAVEPOINT active_record_1
149609
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john82doe82@email.com' LIMIT 1
149610
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john84doe84' LIMIT 1
149611
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '54ab9481ee2e591233a7c5d90b38314d57eacd1a60b1829a562be9cd73d213787cac55d389e31787731380d15acdf8a32a0e166c2a61c861f930ccb000fde667' LIMIT 1
149612
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF85' LIMIT 1
149613
+ SQL (0.4ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', '4e4643ab3dca383545e831eddc2a187b82fd150c7665123866f12c6534fed7c797be2c611cf26498208b449ea2c4d817b3b55b6ff01492f484b9f610e92a8d5b', '2014-08-26 12:51:19', '0.0.0.0', 'john82doe82@email.com', 'John85', 'Doe85', '2014-08-26 12:51:19', 'john84doe84', 1, '86E1SuT1GSKkM6JeLcu', 'ambSLJjFVCxLHVfktSh', '54ab9481ee2e591233a7c5d90b38314d57eacd1a60b1829a562be9cd73d213787cac55d389e31787731380d15acdf8a32a0e166c2a61c861f930ccb000fde667', 'k3cF85', '2014-08-26 12:51:19')
149614
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:19', `current_login_at` = '2014-08-26 12:51:19', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'VhET04FktjMrl6JlOiS', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1502
149615
+  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1
149616
+  (0.1ms) ROLLBACK
149617
+  (0.1ms) BEGIN
149618
+  (0.1ms) SAVEPOINT active_record_1
149619
+ SpudUser Exists (0.5ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john83doe83@email.com' LIMIT 1
149620
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john85doe85' LIMIT 1
149621
+ SpudUser Exists (0.4ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '0e0e8eaf1262cfb1710f21d62ff939ccef5e400846295cdc60ecb4b7f3bb8dafcef8b8619aa36e13f4340c4bc7ef59b5b78c4fe856c3bf6ac26e13210095e6b1' LIMIT 1
149622
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF86' LIMIT 1
149623
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', '927331d364efb4fd961f50323aacf62f2f2ef10ba933e50c3ab101799b0a1a12ccc8607ac56b19d042208f8d9f90b317dc6b372634d7212669ca8c56a4db2e28', '2014-08-26 12:51:19', '0.0.0.0', 'john83doe83@email.com', 'John86', 'Doe86', '2014-08-26 12:51:19', 'john85doe85', 1, '981dbOvSXeZimnV33H', 'x3u6E4gPshCN6omJZVjo', '0e0e8eaf1262cfb1710f21d62ff939ccef5e400846295cdc60ecb4b7f3bb8dafcef8b8619aa36e13f4340c4bc7ef59b5b78c4fe856c3bf6ac26e13210095e6b1', 'k3cF86', '2014-08-26 12:51:19')
149624
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:19', `current_login_at` = '2014-08-26 12:51:19', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'b6OKAoUP7p2tkg1zU09K', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1522
149625
+  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1
149626
+  (0.2ms) ROLLBACK
149627
+  (0.1ms) BEGIN
149628
+  (0.1ms) SAVEPOINT active_record_1
149629
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john84doe84@email.com' LIMIT 1
149630
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john86doe86' LIMIT 1
149631
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY '2bbeb3ab37df6557228a95218938ae928a95d64e66afc7b0895d8441d9639680fda11090d9eb6b30d52adf191b28bbabf2012181aef232f01e5b2c66dcbdb488' LIMIT 1
149632
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF87' LIMIT 1
149633
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', '1690c9458c1d23f779176145e12107ae5662d98203e9f4b8d481c12b9e90f7814e314899b0ff683834fc9407018c084838e1c2aa9fa1bbc6b36859023d31a37a', '2014-08-26 12:51:19', '0.0.0.0', 'john84doe84@email.com', 'John87', 'Doe87', '2014-08-26 12:51:19', 'john86doe86', 1, 'qjbIXt0EWHI3pkFH4He', 'v4D7lUW9EojJrjI7yV', '2bbeb3ab37df6557228a95218938ae928a95d64e66afc7b0895d8441d9639680fda11090d9eb6b30d52adf191b28bbabf2012181aef232f01e5b2c66dcbdb488', 'k3cF87', '2014-08-26 12:51:19')
149634
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:19', `current_login_at` = '2014-08-26 12:51:19', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = '2Bu80TRx10TnDUh1fowr', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1542
149635
+  (0.9ms) ROLLBACK TO SAVEPOINT active_record_1
149636
+  (0.1ms) ROLLBACK
149637
+  (0.1ms) BEGIN
149638
+  (0.1ms) SAVEPOINT active_record_1
149639
+ SpudUser Exists (0.3ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`email` = 'john85doe85@email.com' LIMIT 1
149640
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`login` = 'john87doe87' LIMIT 1
149641
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`persistence_token` = BINARY 'b368bfa9e8ccc6edee4b27f0e438848c83bfe35abfde55f76cbfaef37b8128f21a1afdeb446a589e7f535538fd87939e73fdb8aa519bc8aef0d9ac254d3236ff' LIMIT 1
149642
+ SpudUser Exists (0.2ms) SELECT 1 AS one FROM `spud_users` WHERE `spud_users`.`single_access_token` = BINARY 'k3cF88' LIMIT 1
149643
+ SQL (0.3ms) INSERT INTO `spud_users` (`created_at`, `crypted_password`, `current_login_at`, `current_login_ip`, `email`, `first_name`, `last_name`, `last_request_at`, `login`, `login_count`, `password_salt`, `perishable_token`, `persistence_token`, `single_access_token`, `updated_at`) VALUES ('2014-08-26 12:51:19', '7571ec5666077ec7dd93cd9045f32e8785031c695f59ca21f59df93d8d115f711918fd6375ebdb20ae084661f9b21fd065e13adaf27daddde6fbe040bbd1e650', '2014-08-26 12:51:19', '0.0.0.0', 'john85doe85@email.com', 'John88', 'Doe88', '2014-08-26 12:51:19', 'john87doe87', 1, '3AgyiOJssdMdLjySCyDH', 'uYqfbTyLkYL9KEUUJVpT', 'b368bfa9e8ccc6edee4b27f0e438848c83bfe35abfde55f76cbfaef37b8128f21a1afdeb446a589e7f535538fd87939e73fdb8aa519bc8aef0d9ac254d3236ff', 'k3cF88', '2014-08-26 12:51:19')
149644
+ SQL (0.4ms) UPDATE `spud_users` SET `login_count` = 2, `last_login_at` = '2014-08-26 12:51:19', `current_login_at` = '2014-08-26 12:51:19', `last_login_ip` = '0.0.0.0', `last_request_at` = '2014-08-26 12:51:19', `perishable_token` = 'Ta19w3FuG3dP2iBBlNw3', `updated_at` = '2014-08-26 12:51:19' WHERE `spud_users`.`id` = 1562
149645
+  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1
149646
+  (0.1ms) ROLLBACK
149647
+  (0.1ms) BEGIN
149648
+  (0.1ms) SAVEPOINT active_record_1
149649
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149650
+  (0.1ms) ROLLBACK
149651
+  (0.1ms) BEGIN
149652
+  (0.1ms) SAVEPOINT active_record_1
149653
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149654
+  (0.1ms) ROLLBACK
149655
+  (0.1ms) BEGIN
149656
+  (0.1ms) SAVEPOINT active_record_1
149657
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149658
+  (0.1ms) ROLLBACK
149659
+  (0.1ms) BEGIN
149660
+  (0.1ms) SAVEPOINT active_record_1
149661
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149662
+  (0.1ms) ROLLBACK
149663
+  (0.1ms) BEGIN
149664
+  (0.1ms) SAVEPOINT active_record_1
149665
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149666
+  (0.1ms) ROLLBACK
149667
+  (0.1ms) BEGIN
149668
+  (0.1ms) SAVEPOINT active_record_1
149669
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149670
+  (0.2ms) ROLLBACK
149671
+  (0.1ms) BEGIN
149672
+  (0.1ms) SAVEPOINT active_record_1
149673
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
149674
+  (0.1ms) ROLLBACK
149675
+  (0.1ms) BEGIN
149676
+  (0.1ms) SAVEPOINT active_record_1
149677
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
149678
+  (0.1ms) ROLLBACK