bootstrap_devise_base 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. data/Gemfile +54 -0
  2. data/Gemfile.lock +237 -0
  3. data/Rakefile +7 -0
  4. data/app/.svn/all-wcprops +5 -0
  5. data/app/.svn/entries +31 -0
  6. data/app/assets/images/rails.png +0 -0
  7. data/app/assets/javascripts/application.js +16 -0
  8. data/app/assets/javascripts/registrations.js.coffee +3 -0
  9. data/app/assets/stylesheets/application.css +23 -0
  10. data/app/assets/stylesheets/bootstrap.scss +29 -0
  11. data/app/assets/stylesheets/forms.scss +481 -0
  12. data/app/assets/stylesheets/mixins.scss +220 -0
  13. data/app/assets/stylesheets/patterns.scss +1061 -0
  14. data/app/assets/stylesheets/registrations.css.scss +3 -0
  15. data/app/assets/stylesheets/reset.scss +144 -0
  16. data/app/assets/stylesheets/scaffolding.scss +144 -0
  17. data/app/assets/stylesheets/tables.scss +226 -0
  18. data/app/assets/stylesheets/type.scss +190 -0
  19. data/app/assets/stylesheets/variables.scss +60 -0
  20. data/app/controllers/.svn/all-wcprops +11 -0
  21. data/app/controllers/.svn/entries +62 -0
  22. data/app/controllers/.svn/text-base/assets_offline_controller.rb.svn-base +85 -0
  23. data/app/controllers/application_controller.rb +6 -0
  24. data/app/controllers/authentications_controller.rb +34 -0
  25. data/app/controllers/home_controller.rb +83 -0
  26. data/app/controllers/registrations_controller.rb +18 -0
  27. data/app/helpers/application_helper.rb +2 -0
  28. data/app/helpers/authentications_helper.rb +2 -0
  29. data/app/helpers/devise_helper.rb +29 -0
  30. data/app/helpers/home_helper.rb +2 -0
  31. data/app/helpers/registrations_helper.rb +2 -0
  32. data/app/mailers/.gitkeep +0 -0
  33. data/app/models/.gitkeep +0 -0
  34. data/app/models/authentication.rb +3 -0
  35. data/app/models/user.rb +20 -0
  36. data/app/views/authentications/_form.html.erb +16 -0
  37. data/app/views/authentications/edit.html.erb +8 -0
  38. data/app/views/authentications/index.html.erb +22 -0
  39. data/app/views/authentications/new.html.erb +5 -0
  40. data/app/views/authentications/show.html.erb +20 -0
  41. data/app/views/devise/confirmations/new.html.erb +12 -0
  42. data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  43. data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  44. data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  45. data/app/views/devise/passwords/edit.html.erb +16 -0
  46. data/app/views/devise/passwords/new.html.erb +12 -0
  47. data/app/views/devise/sessions/new.html.erb +58 -0
  48. data/app/views/devise/shared/_links.erb +25 -0
  49. data/app/views/devise/unlocks/new.html.erb +12 -0
  50. data/app/views/home/_form.html.erb +17 -0
  51. data/app/views/home/edit.html.erb +6 -0
  52. data/app/views/home/index.html.erb +21 -0
  53. data/app/views/home/new.html.erb +5 -0
  54. data/app/views/home/show.html.erb +5 -0
  55. data/app/views/layouts/application.html.erb +112 -0
  56. data/app/views/registrations/edit.html.erb +25 -0
  57. data/app/views/registrations/new.html.erb +47 -0
  58. data/bootstrap_devise_base.gemspec +20 -0
  59. data/config.ru +4 -0
  60. data/config/.svn/all-wcprops +11 -0
  61. data/config/.svn/entries +62 -0
  62. data/config/.svn/text-base/routes.rb.svn-base +3 -0
  63. data/config/application.rb +48 -0
  64. data/config/boot.rb +6 -0
  65. data/config/cucumber.yml +8 -0
  66. data/config/database.yml +45 -0
  67. data/config/environment.rb +5 -0
  68. data/config/environments/development.rb +30 -0
  69. data/config/environments/production.rb +60 -0
  70. data/config/environments/test.rb +39 -0
  71. data/config/initializers/backtrace_silencers.rb +7 -0
  72. data/config/initializers/devise.rb +208 -0
  73. data/config/initializers/inflections.rb +10 -0
  74. data/config/initializers/mime_types.rb +5 -0
  75. data/config/initializers/omniauth.rb +3 -0
  76. data/config/initializers/secret_token.rb +7 -0
  77. data/config/initializers/session_store.rb +8 -0
  78. data/config/initializers/wrap_parameters.rb +14 -0
  79. data/config/locales/devise.en.yml +58 -0
  80. data/config/locales/en.yml +13 -0
  81. data/config/routes.rb +64 -0
  82. data/db/migrate/20111121201415_create_users.rb +8 -0
  83. data/db/migrate/20111121201511_add_devise_to_users.rb +31 -0
  84. data/db/migrate/20111127100158_create_authentications.rb +14 -0
  85. data/db/schema.rb +42 -0
  86. data/db/seeds.rb +7 -0
  87. data/doc/README_FOR_APP +2 -0
  88. data/features/manage_sign_ups.feature +28 -0
  89. data/features/step_definitions/sign_up_steps.rb +27 -0
  90. data/features/step_definitions/web_steps.rb +254 -0
  91. data/features/support/env.rb +56 -0
  92. data/features/support/paths.rb +39 -0
  93. data/features/support/selectors.rb +39 -0
  94. data/init.rb +1 -0
  95. data/lib/.svn/all-wcprops +11 -0
  96. data/lib/.svn/entries +65 -0
  97. data/lib/.svn/text-base/assets_offline.rb.svn-base +6 -0
  98. data/lib/assets/.gitkeep +0 -0
  99. data/lib/bootstap_devise_base.rb~ +6 -0
  100. data/lib/bootstrap_devise_base.rb +6 -0
  101. data/lib/bootstrap_devise_base/.svn/all-wcprops +11 -0
  102. data/lib/bootstrap_devise_base/.svn/entries +62 -0
  103. data/lib/bootstrap_devise_base/.svn/text-base/version.rb.svn-base +3 -0
  104. data/lib/bootstrap_devise_base/version.rb +3 -0
  105. data/lib/tasks/.gitkeep +0 -0
  106. data/lib/tasks/cucumber.rake +65 -0
  107. data/log/.gitkeep +0 -0
  108. data/log/development.log +977 -0
  109. data/log/production.log +44 -0
  110. data/log/test.log +799 -0
  111. data/public/404.html +26 -0
  112. data/public/422.html +26 -0
  113. data/public/500.html +26 -0
  114. data/public/assets/application-902e25928a309d43246c45cd2facd7d3.js +19 -0
  115. data/public/assets/application-902e25928a309d43246c45cd2facd7d3.js.gz +0 -0
  116. data/public/assets/application-a5e3fc47c863d5a64c7380ed33b187b6.css +1 -0
  117. data/public/assets/application-a5e3fc47c863d5a64c7380ed33b187b6.css.gz +0 -0
  118. data/public/assets/application.css +1 -0
  119. data/public/assets/application.css.gz +0 -0
  120. data/public/assets/application.js +19 -0
  121. data/public/assets/application.js.gz +0 -0
  122. data/public/assets/manifest.yml +4 -0
  123. data/public/assets/rails-e4b51606cd77fda2615e7439907bfc92.png +0 -0
  124. data/public/assets/rails.png +0 -0
  125. data/public/favicon.ico +0 -0
  126. data/public/robots.txt +5 -0
  127. data/script/cucumber +10 -0
  128. data/script/rails +6 -0
  129. data/test/fixtures/.gitkeep +0 -0
  130. data/test/functional/.gitkeep +0 -0
  131. data/test/integration/.gitkeep +0 -0
  132. data/test/performance/browsing_test.rb +12 -0
  133. data/test/test_helper.rb +13 -0
  134. data/test/unit/.gitkeep +0 -0
  135. data/vendor/assets/stylesheets/.gitkeep +0 -0
  136. data/vendor/plugins/.gitkeep +0 -0
  137. metadata +181 -0
@@ -0,0 +1,44 @@
1
+ Compiled application.js (6ms) (pid 29423)
2
+ Compiled jquery.js (1ms) (pid 29423)
3
+ Compiled jquery_ujs.js (0ms) (pid 29423)
4
+ Compiled registrations.js (55ms) (pid 29423)
5
+ Compiled bootstrap/alerts.js (0ms) (pid 29423)
6
+ Compiled bootstrap/dropdown.js (0ms) (pid 29423)
7
+ Compiled bootstrap/modal.js (0ms) (pid 29423)
8
+ Compiled bootstrap/popover.js (0ms) (pid 29423)
9
+ Compiled bootstrap/scrollspy.js (0ms) (pid 29423)
10
+ Compiled bootstrap/tabs.js (0ms) (pid 29423)
11
+ Compiled bootstrap/twipsy.js (0ms) (pid 29423)
12
+ Compiled application.css (5ms) (pid 29423)
13
+ Compiled bootstrap.css (679ms) (pid 29423)
14
+ Compiled forms.css (91ms) (pid 29423)
15
+ Compiled mixins.css (53ms) (pid 29423)
16
+ Compiled patterns.css (291ms) (pid 29423)
17
+ Compiled registrations.css (0ms) (pid 29423)
18
+ Compiled reset.css (16ms) (pid 29423)
19
+ Compiled scaffolding.css (23ms) (pid 29423)
20
+ Compiled tables.css (49ms) (pid 29423)
21
+ Compiled type.css (19ms) (pid 29423)
22
+ Compiled variables.css (2ms) (pid 29423)
23
+ Compiled application.js (11ms) (pid 29400)
24
+ Compiled jquery.js (12ms) (pid 29400)
25
+ Compiled jquery_ujs.js (5ms) (pid 29400)
26
+ Compiled registrations.js (89ms) (pid 29400)
27
+ Compiled bootstrap/alerts.js (12ms) (pid 29400)
28
+ Compiled bootstrap/dropdown.js (0ms) (pid 29400)
29
+ Compiled bootstrap/modal.js (3ms) (pid 29400)
30
+ Compiled bootstrap/popover.js (0ms) (pid 29400)
31
+ Compiled bootstrap/scrollspy.js (0ms) (pid 29400)
32
+ Compiled bootstrap/tabs.js (0ms) (pid 29400)
33
+ Compiled bootstrap/twipsy.js (0ms) (pid 29400)
34
+ Compiled application.css (27ms) (pid 29400)
35
+ Compiled bootstrap.css (635ms) (pid 29400)
36
+ Compiled forms.css (109ms) (pid 29400)
37
+ Compiled mixins.css (47ms) (pid 29400)
38
+ Compiled patterns.css (279ms) (pid 29400)
39
+ Compiled registrations.css (0ms) (pid 29400)
40
+ Compiled reset.css (16ms) (pid 29400)
41
+ Compiled scaffolding.css (48ms) (pid 29400)
42
+ Compiled tables.css (23ms) (pid 29400)
43
+ Compiled type.css (19ms) (pid 29400)
44
+ Compiled variables.css (2ms) (pid 29400)
@@ -0,0 +1,799 @@
1
+  (188.5ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
2
+  (348.5ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
3
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
4
+ Migrating to CreateUsers (20111121201415)
5
+  (151.7ms) CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
6
+  (56.9ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20111121201415')
7
+ Migrating to AddDeviseToUsers (20111121201511)
8
+  (322.9ms) ALTER TABLE `users` ADD `email` varchar(255) DEFAULT '' NOT NULL
9
+  (324.5ms) ALTER TABLE `users` ADD `encrypted_password` varchar(128) DEFAULT '' NOT NULL
10
+  (357.7ms) ALTER TABLE `users` ADD `reset_password_token` varchar(255)
11
+  (366.5ms) ALTER TABLE `users` ADD `reset_password_sent_at` datetime
12
+  (341.4ms) ALTER TABLE `users` ADD `remember_created_at` datetime
13
+  (313.6ms) ALTER TABLE `users` ADD `sign_in_count` int(11) DEFAULT 0
14
+  (324.7ms) ALTER TABLE `users` ADD `current_sign_in_at` datetime
15
+  (341.2ms) ALTER TABLE `users` ADD `last_sign_in_at` datetime
16
+  (366.3ms) ALTER TABLE `users` ADD `current_sign_in_ip` varchar(255)
17
+  (366.4ms) ALTER TABLE `users` ADD `last_sign_in_ip` varchar(255)
18
+  (315.7ms) CREATE UNIQUE INDEX `index_users_on_email` ON `users` (`email`)
19
+  (330.6ms) CREATE UNIQUE INDEX `index_users_on_reset_password_token` ON `users` (`reset_password_token`)
20
+  (57.6ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20111121201511')
21
+ Migrating to CreateAuthentications (20111127100158)
22
+  (153.3ms) CREATE TABLE `authentications` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `user_id` int(11), `provider` varchar(255), `uid` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
23
+  (56.9ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20111127100158')
24
+  (0.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
25
+  (0.1ms) BEGIN
26
+
27
+
28
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:29:57 +0000
29
+ Processing by Devise::SessionsController#destroy as HTML
30
+ Redirected to http://www.example.com/
31
+ Completed 302 Found in 1ms
32
+
33
+
34
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:29:57 +0000
35
+ Processing by HomeController#index as HTML
36
+ Rendered home/index.html.erb within layouts/application (21.3ms)
37
+ Completed 200 OK in 112ms (Views: 111.7ms | ActiveRecord: 0.0ms)
38
+  (0.1ms) ROLLBACK
39
+  (0.2ms) BEGIN
40
+
41
+
42
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:31:24 +0000
43
+ Processing by Devise::SessionsController#destroy as HTML
44
+ Redirected to http://www.example.com/
45
+ Completed 302 Found in 1ms
46
+
47
+
48
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:31:24 +0000
49
+ Processing by HomeController#index as HTML
50
+ Rendered home/index.html.erb within layouts/application (22.1ms)
51
+ Completed 200 OK in 84ms (Views: 83.6ms | ActiveRecord: 0.0ms)
52
+
53
+
54
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:31:24 +0000
55
+ Processing by HomeController#index as HTML
56
+ Rendered home/index.html.erb within layouts/application (0.0ms)
57
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
58
+  (0.3ms) ROLLBACK
59
+  (0.1ms) BEGIN
60
+
61
+
62
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:31:53 +0000
63
+ Processing by Devise::SessionsController#destroy as HTML
64
+ Redirected to http://www.example.com/
65
+ Completed 302 Found in 1ms
66
+
67
+
68
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:31:53 +0000
69
+ Processing by HomeController#index as HTML
70
+ Rendered home/index.html.erb within layouts/application (20.6ms)
71
+ Completed 200 OK in 82ms (Views: 82.0ms | ActiveRecord: 0.0ms)
72
+
73
+
74
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:31:53 +0000
75
+ Processing by HomeController#index as HTML
76
+ Rendered home/index.html.erb within layouts/application (0.0ms)
77
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
78
+
79
+
80
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 18:31:53 +0000
81
+ Processing by RegistrationsController#new as HTML
82
+ Rendered registrations/new.html.erb within layouts/application (126.0ms)
83
+ Completed 200 OK in 151ms (Views: 142.5ms | ActiveRecord: 4.7ms)
84
+  (0.2ms) ROLLBACK
85
+  (0.1ms) BEGIN
86
+
87
+
88
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:32:32 +0000
89
+ Processing by Devise::SessionsController#destroy as HTML
90
+ Redirected to http://www.example.com/
91
+ Completed 302 Found in 1ms
92
+
93
+
94
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:32:32 +0000
95
+ Processing by HomeController#index as HTML
96
+ Rendered home/index.html.erb within layouts/application (23.0ms)
97
+ Completed 200 OK in 85ms (Views: 84.7ms | ActiveRecord: 0.0ms)
98
+
99
+
100
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:32:32 +0000
101
+ Processing by HomeController#index as HTML
102
+ Rendered home/index.html.erb within layouts/application (0.0ms)
103
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
104
+
105
+
106
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 18:32:32 +0000
107
+ Processing by RegistrationsController#new as HTML
108
+ Rendered registrations/new.html.erb within layouts/application (60.5ms)
109
+ Completed 200 OK in 128ms (Views: 120.8ms | ActiveRecord: 4.1ms)
110
+  (0.1ms) ROLLBACK
111
+  (0.1ms) BEGIN
112
+
113
+
114
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:35:03 +0000
115
+ Processing by Devise::SessionsController#destroy as HTML
116
+ Redirected to http://www.example.com/
117
+ Completed 302 Found in 1ms
118
+
119
+
120
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:35:04 +0000
121
+ Processing by HomeController#index as HTML
122
+ Rendered home/index.html.erb within layouts/application (19.2ms)
123
+ Completed 200 OK in 79ms (Views: 79.0ms | ActiveRecord: 0.0ms)
124
+
125
+
126
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:35:04 +0000
127
+ Processing by HomeController#index as HTML
128
+ Rendered home/index.html.erb within layouts/application (0.0ms)
129
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
130
+
131
+
132
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 18:35:04 +0000
133
+ Processing by RegistrationsController#new as HTML
134
+ Rendered registrations/new.html.erb within layouts/application (107.4ms)
135
+ Completed 200 OK in 123ms (Views: 117.0ms | ActiveRecord: 3.4ms)
136
+  (0.1ms) ROLLBACK
137
+  (0.1ms) BEGIN
138
+
139
+
140
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:38:33 +0000
141
+ Processing by Devise::SessionsController#destroy as HTML
142
+ Redirected to http://www.example.com/
143
+ Completed 302 Found in 1ms
144
+
145
+
146
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:38:33 +0000
147
+ Processing by HomeController#index as HTML
148
+ Rendered home/index.html.erb within layouts/application (18.8ms)
149
+ Completed 200 OK in 79ms (Views: 78.9ms | ActiveRecord: 0.0ms)
150
+
151
+
152
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:38:33 +0000
153
+ Processing by HomeController#index as HTML
154
+ Rendered home/index.html.erb within layouts/application (0.0ms)
155
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
156
+
157
+
158
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 18:38:33 +0000
159
+ Processing by RegistrationsController#new as HTML
160
+ Rendered registrations/new.html.erb within layouts/application (111.7ms)
161
+ Completed 200 OK in 144ms (Views: 125.2ms | ActiveRecord: 3.1ms)
162
+
163
+
164
+ Started POST "/users" for 127.0.0.1 at 2011-11-30 18:38:33 +0000
165
+ Processing by RegistrationsController#create as HTML
166
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
167
+  (0.1ms) SAVEPOINT active_record_1
168
+  (21.1ms) SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
169
+ SQL (14.6ms) INSERT INTO `users` (`created_at`, `current_sign_in_at`, `current_sign_in_ip`, `email`, `encrypted_password`, `last_sign_in_at`, `last_sign_in_ip`, `remember_created_at`, `reset_password_sent_at`, `reset_password_token`, `sign_in_count`, `updated_at`) VALUES ('2011-11-30 18:38:33', NULL, NULL, 'user@test.com', '$2a$04$yKd2J/mOHEb2MTDcILf.2uUsZcEv5FgvaYO19O39wMtTjEOnos9hK', NULL, NULL, NULL, NULL, NULL, 0, '2011-11-30 18:38:33')
170
+  (0.1ms) RELEASE SAVEPOINT active_record_1
171
+  (0.1ms) SAVEPOINT active_record_1
172
+  (0.3ms) UPDATE `users` SET `last_sign_in_at` = '2011-11-30 18:38:33', `current_sign_in_at` = '2011-11-30 18:38:33', `last_sign_in_ip` = '127.0.0.1', `current_sign_in_ip` = '127.0.0.1', `sign_in_count` = 1, `updated_at` = '2011-11-30 18:38:33' WHERE `users`.`id` = 1
173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
174
+ Redirected to http://www.example.com/user
175
+ Completed 302 Found in 248ms
176
+
177
+
178
+ Started GET "/user" for 127.0.0.1 at 2011-11-30 18:38:33 +0000
179
+ Processing by HomeController#index as HTML
180
+ Rendered home/index.html.erb within layouts/application (0.0ms)
181
+ User Load (1.0ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
182
+ Completed 200 OK in 97ms (Views: 95.9ms | ActiveRecord: 1.0ms)
183
+  (60.2ms) ROLLBACK
184
+  (0.2ms) BEGIN
185
+
186
+
187
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:39:30 +0000
188
+ Processing by Devise::SessionsController#destroy as HTML
189
+ Redirected to http://www.example.com/
190
+ Completed 302 Found in 2ms
191
+
192
+
193
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:39:30 +0000
194
+ Processing by HomeController#index as HTML
195
+ Rendered home/index.html.erb within layouts/application (20.6ms)
196
+ Completed 200 OK in 80ms (Views: 79.7ms | ActiveRecord: 0.0ms)
197
+
198
+
199
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:39:30 +0000
200
+ Processing by HomeController#index as HTML
201
+ Rendered home/index.html.erb within layouts/application (0.0ms)
202
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
203
+
204
+
205
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 18:39:30 +0000
206
+ Processing by RegistrationsController#new as HTML
207
+ Rendered registrations/new.html.erb within layouts/application (114.5ms)
208
+ Completed 200 OK in 134ms (Views: 129.1ms | ActiveRecord: 2.0ms)
209
+
210
+
211
+ Started POST "/users" for 127.0.0.1 at 2011-11-30 18:39:31 +0000
212
+ Processing by RegistrationsController#create as HTML
213
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
214
+  (0.3ms) SAVEPOINT active_record_1
215
+  (0.5ms) SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
216
+ SQL (0.2ms) INSERT INTO `users` (`created_at`, `current_sign_in_at`, `current_sign_in_ip`, `email`, `encrypted_password`, `last_sign_in_at`, `last_sign_in_ip`, `remember_created_at`, `reset_password_sent_at`, `reset_password_token`, `sign_in_count`, `updated_at`) VALUES ('2011-11-30 18:39:31', NULL, NULL, 'user@test.com', '$2a$04$6i51L/asBaATn16XnQfWlOSE6aufxPhCqhgyePyKuC.d7qxxYVeMe', NULL, NULL, NULL, NULL, NULL, 0, '2011-11-30 18:39:31')
217
+  (0.1ms) RELEASE SAVEPOINT active_record_1
218
+  (0.1ms) SAVEPOINT active_record_1
219
+  (0.3ms) UPDATE `users` SET `last_sign_in_at` = '2011-11-30 18:39:31', `current_sign_in_at` = '2011-11-30 18:39:31', `last_sign_in_ip` = '127.0.0.1', `current_sign_in_ip` = '127.0.0.1', `sign_in_count` = 1, `updated_at` = '2011-11-30 18:39:31' WHERE `users`.`id` = 2
220
+  (0.1ms) RELEASE SAVEPOINT active_record_1
221
+ Redirected to http://www.example.com/user
222
+ Completed 302 Found in 170ms
223
+
224
+
225
+ Started GET "/user" for 127.0.0.1 at 2011-11-30 18:39:31 +0000
226
+ Processing by HomeController#index as HTML
227
+ Rendered home/index.html.erb within layouts/application (0.0ms)
228
+ User Load (1.3ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 2 LIMIT 1
229
+ Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 1.3ms)
230
+  (108.4ms) ROLLBACK
231
+  (0.2ms) BEGIN
232
+
233
+
234
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:45:52 +0000
235
+ Processing by Devise::SessionsController#destroy as HTML
236
+ Redirected to http://www.example.com/
237
+ Completed 302 Found in 1ms
238
+
239
+
240
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:45:52 +0000
241
+ Processing by HomeController#index as HTML
242
+ Rendered home/index.html.erb within layouts/application (19.2ms)
243
+ Completed 200 OK in 80ms (Views: 79.2ms | ActiveRecord: 0.0ms)
244
+
245
+
246
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:45:52 +0000
247
+ Processing by HomeController#index as HTML
248
+ Rendered home/index.html.erb within layouts/application (0.0ms)
249
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
250
+
251
+
252
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 18:45:52 +0000
253
+ Processing by RegistrationsController#new as HTML
254
+ Rendered registrations/new.html.erb within layouts/application (105.5ms)
255
+ Completed 200 OK in 116ms (Views: 109.9ms | ActiveRecord: 4.0ms)
256
+
257
+
258
+ Started POST "/users" for 127.0.0.1 at 2011-11-30 18:45:53 +0000
259
+ Processing by RegistrationsController#create as HTML
260
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
261
+  (0.1ms) SAVEPOINT active_record_1
262
+  (1.0ms) SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
263
+ SQL (0.5ms) INSERT INTO `users` (`created_at`, `current_sign_in_at`, `current_sign_in_ip`, `email`, `encrypted_password`, `last_sign_in_at`, `last_sign_in_ip`, `remember_created_at`, `reset_password_sent_at`, `reset_password_token`, `sign_in_count`, `updated_at`) VALUES ('2011-11-30 18:45:53', NULL, NULL, 'user@test.com', '$2a$04$A0yqS1XsHBqDxDYHhT9yu.zFI1eeGW7GOICF/47tfZT25KAaV2Nde', NULL, NULL, NULL, NULL, NULL, 0, '2011-11-30 18:45:53')
264
+  (0.1ms) RELEASE SAVEPOINT active_record_1
265
+  (0.1ms) SAVEPOINT active_record_1
266
+  (0.2ms) UPDATE `users` SET `last_sign_in_at` = '2011-11-30 18:45:53', `current_sign_in_at` = '2011-11-30 18:45:53', `last_sign_in_ip` = '127.0.0.1', `current_sign_in_ip` = '127.0.0.1', `sign_in_count` = 1, `updated_at` = '2011-11-30 18:45:53' WHERE `users`.`id` = 3
267
+  (0.0ms) RELEASE SAVEPOINT active_record_1
268
+ Redirected to http://www.example.com/user
269
+ Completed 302 Found in 195ms
270
+
271
+
272
+ Started GET "/user" for 127.0.0.1 at 2011-11-30 18:45:53 +0000
273
+ Processing by HomeController#index as HTML
274
+ Rendered home/index.html.erb within layouts/application (0.0ms)
275
+ User Load (0.6ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 3 LIMIT 1
276
+ Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.6ms)
277
+  (71.5ms) ROLLBACK
278
+  (0.2ms) BEGIN
279
+
280
+
281
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:51:09 +0000
282
+ Processing by Devise::SessionsController#destroy as HTML
283
+ Redirected to http://www.example.com/
284
+ Completed 302 Found in 1ms
285
+
286
+
287
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:51:09 +0000
288
+ Processing by HomeController#index as HTML
289
+ Rendered home/index.html.erb within layouts/application (20.3ms)
290
+ Completed 200 OK in 79ms (Views: 79.0ms | ActiveRecord: 0.0ms)
291
+
292
+
293
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:51:09 +0000
294
+ Processing by HomeController#index as HTML
295
+ Rendered home/index.html.erb within layouts/application (0.0ms)
296
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
297
+
298
+
299
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 18:51:09 +0000
300
+ Processing by RegistrationsController#new as HTML
301
+ Rendered registrations/new.html.erb within layouts/application (119.3ms)
302
+ Completed 200 OK in 132ms (Views: 125.4ms | ActiveRecord: 4.2ms)
303
+
304
+
305
+ Started POST "/users" for 127.0.0.1 at 2011-11-30 18:51:09 +0000
306
+ Processing by RegistrationsController#create as HTML
307
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
308
+  (0.1ms) SAVEPOINT active_record_1
309
+  (0.5ms) SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
310
+ SQL (0.2ms) INSERT INTO `users` (`created_at`, `current_sign_in_at`, `current_sign_in_ip`, `email`, `encrypted_password`, `last_sign_in_at`, `last_sign_in_ip`, `remember_created_at`, `reset_password_sent_at`, `reset_password_token`, `sign_in_count`, `updated_at`) VALUES ('2011-11-30 18:51:09', NULL, NULL, 'user@test.com', '$2a$04$KOQAICGBIUmBcq9doqqzGuJs8256vCTvquEJrqoqjlLOexwgQPFNu', NULL, NULL, NULL, NULL, NULL, 0, '2011-11-30 18:51:09')
311
+  (0.1ms) RELEASE SAVEPOINT active_record_1
312
+  (0.1ms) SAVEPOINT active_record_1
313
+  (1.2ms) UPDATE `users` SET `last_sign_in_at` = '2011-11-30 18:51:10', `current_sign_in_at` = '2011-11-30 18:51:10', `last_sign_in_ip` = '127.0.0.1', `current_sign_in_ip` = '127.0.0.1', `sign_in_count` = 1, `updated_at` = '2011-11-30 18:51:10' WHERE `users`.`id` = 4
314
+  (0.1ms) RELEASE SAVEPOINT active_record_1
315
+ Redirected to http://www.example.com/user
316
+ Completed 302 Found in 172ms
317
+
318
+
319
+ Started GET "/user" for 127.0.0.1 at 2011-11-30 18:51:10 +0000
320
+ Processing by HomeController#index as HTML
321
+ Rendered home/index.html.erb within layouts/application (0.0ms)
322
+ User Load (0.8ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 4 LIMIT 1
323
+ Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.8ms)
324
+  (86.2ms) ROLLBACK
325
+
326
+
327
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:51:46 +0000
328
+ Processing by Devise::SessionsController#destroy as HTML
329
+ Redirected to http://127.0.0.1:50658/
330
+ Completed 302 Found in 1ms
331
+
332
+
333
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:51:47 +0000
334
+ Processing by HomeController#index as HTML
335
+ Rendered home/index.html.erb within layouts/application (20.9ms)
336
+ Completed 200 OK in 91ms (Views: 90.2ms | ActiveRecord: 0.0ms)
337
+
338
+
339
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:51:47 +0000
340
+ Processing by HomeController#index as HTML
341
+ Rendered home/index.html.erb within layouts/application (0.1ms)
342
+ Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.0ms)
343
+
344
+
345
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 18:51:47 +0000
346
+ Processing by RegistrationsController#new as HTML
347
+ Rendered registrations/new.html.erb within layouts/application (112.2ms)
348
+ Completed 200 OK in 128ms (Views: 121.1ms | ActiveRecord: 3.1ms)
349
+
350
+
351
+ Started POST "/users" for 127.0.0.1 at 2011-11-30 18:51:48 +0000
352
+ Processing by RegistrationsController#create as HTML
353
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
354
+  (0.2ms) BEGIN
355
+  (0.6ms) SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
356
+ SQL (0.8ms) INSERT INTO `users` (`created_at`, `current_sign_in_at`, `current_sign_in_ip`, `email`, `encrypted_password`, `last_sign_in_at`, `last_sign_in_ip`, `remember_created_at`, `reset_password_sent_at`, `reset_password_token`, `sign_in_count`, `updated_at`) VALUES ('2011-11-30 18:51:48', NULL, NULL, 'user@test.com', '$2a$04$QYDe2raRkRQx.q/0IK6L5.sO2l22vY/zcQxtqpBetDrmZ6u65sA8i', NULL, NULL, NULL, NULL, NULL, 0, '2011-11-30 18:51:48')
357
+  (81.9ms) COMMIT
358
+  (0.1ms) BEGIN
359
+  (0.6ms) UPDATE `users` SET `last_sign_in_at` = '2011-11-30 18:51:48', `current_sign_in_at` = '2011-11-30 18:51:48', `last_sign_in_ip` = '127.0.0.1', `current_sign_in_ip` = '127.0.0.1', `sign_in_count` = 1, `updated_at` = '2011-11-30 18:51:48' WHERE `users`.`id` = 5
360
+  (77.9ms) COMMIT
361
+ Redirected to http://127.0.0.1:50658/user
362
+ Completed 302 Found in 305ms
363
+
364
+
365
+ Started GET "/user" for 127.0.0.1 at 2011-11-30 18:51:49 +0000
366
+ Processing by HomeController#index as HTML
367
+ Rendered home/index.html.erb within layouts/application (0.1ms)
368
+ User Load (0.6ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 5 LIMIT 1
369
+ Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.6ms)
370
+  (0.2ms) SELECT @@FOREIGN_KEY_CHECKS
371
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 0
372
+  (0.1ms) SELECT DATABASE() as db
373
+  (0.5ms) select table_name from information_schema.views where table_schema = 'template_test'
374
+  (111.7ms) TRUNCATE TABLE `authentications`;
375
+  (65.1ms) TRUNCATE TABLE `users`;
376
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 1
377
+
378
+
379
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:52:32 +0000
380
+ Processing by Devise::SessionsController#destroy as HTML
381
+ Redirected to http://127.0.0.1:53817/
382
+ Completed 302 Found in 70ms
383
+
384
+
385
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:52:32 +0000
386
+ Processing by HomeController#index as HTML
387
+ Rendered home/index.html.erb within layouts/application (24.2ms)
388
+ Completed 200 OK in 108ms (Views: 107.0ms | ActiveRecord: 0.0ms)
389
+
390
+
391
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:52:32 +0000
392
+ Processing by HomeController#index as HTML
393
+ Rendered home/index.html.erb within layouts/application (0.1ms)
394
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
395
+
396
+
397
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 18:52:33 +0000
398
+ Processing by RegistrationsController#new as HTML
399
+ Rendered registrations/new.html.erb within layouts/application (71.3ms)
400
+ Completed 200 OK in 91ms (Views: 82.0ms | ActiveRecord: 3.4ms)
401
+
402
+
403
+ Started POST "/users" for 127.0.0.1 at 2011-11-30 18:52:34 +0000
404
+ Processing by RegistrationsController#create as HTML
405
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
406
+  (0.1ms) BEGIN
407
+  (0.3ms) SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
408
+ SQL (0.3ms) INSERT INTO `users` (`created_at`, `current_sign_in_at`, `current_sign_in_ip`, `email`, `encrypted_password`, `last_sign_in_at`, `last_sign_in_ip`, `remember_created_at`, `reset_password_sent_at`, `reset_password_token`, `sign_in_count`, `updated_at`) VALUES ('2011-11-30 18:52:34', NULL, NULL, 'user@test.com', '$2a$04$Qb7r8pQQN/nEYdzKIdM62Oi1jO1XEGheKI3CQMzcOpwhnJXzRAzcm', NULL, NULL, NULL, NULL, NULL, 0, '2011-11-30 18:52:34')
409
+  (68.8ms) COMMIT
410
+  (0.1ms) BEGIN
411
+  (1.1ms) UPDATE `users` SET `last_sign_in_at` = '2011-11-30 18:52:34', `current_sign_in_at` = '2011-11-30 18:52:34', `last_sign_in_ip` = '127.0.0.1', `current_sign_in_ip` = '127.0.0.1', `sign_in_count` = 1, `updated_at` = '2011-11-30 18:52:34' WHERE `users`.`id` = 1
412
+  (63.3ms) COMMIT
413
+ Redirected to http://127.0.0.1:53817/user
414
+ Completed 302 Found in 328ms
415
+
416
+
417
+ Started GET "/user" for 127.0.0.1 at 2011-11-30 18:52:34 +0000
418
+ Processing by HomeController#index as HTML
419
+ Rendered home/index.html.erb within layouts/application (0.0ms)
420
+ User Load (0.8ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
421
+ Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.8ms)
422
+  (0.2ms) SELECT @@FOREIGN_KEY_CHECKS
423
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 0
424
+  (0.1ms) SELECT DATABASE() as db
425
+  (0.5ms) select table_name from information_schema.views where table_schema = 'template_test'
426
+  (67.4ms) TRUNCATE TABLE `authentications`;
427
+  (62.1ms) TRUNCATE TABLE `users`;
428
+  (0.3ms) SET FOREIGN_KEY_CHECKS = 1
429
+
430
+
431
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:54:13 +0000
432
+ Processing by Devise::SessionsController#destroy as HTML
433
+ Redirected to http://127.0.0.1:33875/
434
+ Completed 302 Found in 45ms
435
+
436
+
437
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:54:14 +0000
438
+ Processing by HomeController#index as HTML
439
+ Rendered home/index.html.erb within layouts/application (22.9ms)
440
+ Completed 200 OK in 90ms (Views: 89.7ms | ActiveRecord: 0.0ms)
441
+
442
+
443
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:54:14 +0000
444
+ Processing by HomeController#index as HTML
445
+ Rendered home/index.html.erb within layouts/application (0.0ms)
446
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
447
+
448
+
449
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 18:54:14 +0000
450
+ Processing by RegistrationsController#new as HTML
451
+ Rendered registrations/new.html.erb within layouts/application (81.5ms)
452
+ Completed 200 OK in 92ms (Views: 87.0ms | ActiveRecord: 2.6ms)
453
+
454
+
455
+ Started POST "/users" for 127.0.0.1 at 2011-11-30 18:54:15 +0000
456
+ Processing by RegistrationsController#create as HTML
457
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
458
+  (0.1ms) BEGIN
459
+  (0.5ms) SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
460
+ SQL (0.6ms) INSERT INTO `users` (`created_at`, `current_sign_in_at`, `current_sign_in_ip`, `email`, `encrypted_password`, `last_sign_in_at`, `last_sign_in_ip`, `remember_created_at`, `reset_password_sent_at`, `reset_password_token`, `sign_in_count`, `updated_at`) VALUES ('2011-11-30 18:54:15', NULL, NULL, 'user@test.com', '$2a$04$9RqXsxDHF3BUfZjEULgpnel3v0O21VmNZHa8WXiKuOpJ4lixAoLry', NULL, NULL, NULL, NULL, NULL, 0, '2011-11-30 18:54:15')
461
+  (58.6ms) COMMIT
462
+  (0.3ms) BEGIN
463
+  (0.6ms) UPDATE `users` SET `last_sign_in_at` = '2011-11-30 18:54:15', `current_sign_in_at` = '2011-11-30 18:54:15', `last_sign_in_ip` = '127.0.0.1', `current_sign_in_ip` = '127.0.0.1', `sign_in_count` = 1, `updated_at` = '2011-11-30 18:54:15' WHERE `users`.`id` = 1
464
+  (58.4ms) COMMIT
465
+ Redirected to http://127.0.0.1:33875/user
466
+ Completed 302 Found in 313ms
467
+
468
+
469
+ Started GET "/user" for 127.0.0.1 at 2011-11-30 18:54:15 +0000
470
+ Processing by HomeController#index as HTML
471
+ Rendered home/index.html.erb within layouts/application (0.0ms)
472
+ User Load (0.6ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
473
+ Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.6ms)
474
+
475
+
476
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:54:16 +0000
477
+ Processing by Devise::SessionsController#destroy as HTML
478
+ User Load (0.4ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
479
+  (0.1ms) BEGIN
480
+  (0.0ms) COMMIT
481
+ Redirected to http://127.0.0.1:33875/
482
+ Completed 302 Found in 17ms
483
+
484
+
485
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:54:16 +0000
486
+ Processing by HomeController#index as HTML
487
+ Rendered home/index.html.erb within layouts/application (0.1ms)
488
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
489
+  (0.2ms) SELECT @@FOREIGN_KEY_CHECKS
490
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 0
491
+  (0.1ms) SELECT DATABASE() as db
492
+  (0.5ms) select table_name from information_schema.views where table_schema = 'template_test'
493
+  (58.1ms) TRUNCATE TABLE `authentications`;
494
+  (57.6ms) TRUNCATE TABLE `users`;
495
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 1
496
+
497
+
498
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:56:01 +0000
499
+ Processing by Devise::SessionsController#destroy as HTML
500
+ Redirected to http://127.0.0.1:57996/
501
+ Completed 302 Found in 2ms
502
+
503
+
504
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:56:01 +0000
505
+ Processing by HomeController#index as HTML
506
+ Rendered home/index.html.erb within layouts/application (23.5ms)
507
+ Completed 200 OK in 95ms (Views: 94.8ms | ActiveRecord: 0.0ms)
508
+
509
+
510
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:56:01 +0000
511
+ Processing by HomeController#index as HTML
512
+ Rendered home/index.html.erb within layouts/application (0.0ms)
513
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
514
+
515
+
516
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 18:56:01 +0000
517
+ Processing by RegistrationsController#new as HTML
518
+ Rendered registrations/new.html.erb within layouts/application (69.2ms)
519
+ Completed 200 OK in 83ms (Views: 75.7ms | ActiveRecord: 4.5ms)
520
+
521
+
522
+ Started POST "/users" for 127.0.0.1 at 2011-11-30 18:56:02 +0000
523
+ Processing by RegistrationsController#create as HTML
524
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
525
+  (0.3ms) BEGIN
526
+  (0.7ms) SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
527
+ SQL (0.4ms) INSERT INTO `users` (`created_at`, `current_sign_in_at`, `current_sign_in_ip`, `email`, `encrypted_password`, `last_sign_in_at`, `last_sign_in_ip`, `remember_created_at`, `reset_password_sent_at`, `reset_password_token`, `sign_in_count`, `updated_at`) VALUES ('2011-11-30 18:56:03', NULL, NULL, 'user@test.com', '$2a$04$qx/HBeL0.HgPPhqmmWxGkui9La92nNch2x8KyO/TBPy7Ye/.GXBVW', NULL, NULL, NULL, NULL, NULL, 0, '2011-11-30 18:56:03')
528
+  (76.0ms) COMMIT
529
+  (0.1ms) BEGIN
530
+  (0.5ms) UPDATE `users` SET `last_sign_in_at` = '2011-11-30 18:56:03', `current_sign_in_at` = '2011-11-30 18:56:03', `last_sign_in_ip` = '127.0.0.1', `current_sign_in_ip` = '127.0.0.1', `sign_in_count` = 1, `updated_at` = '2011-11-30 18:56:03' WHERE `users`.`id` = 1
531
+  (61.0ms) COMMIT
532
+ Redirected to http://127.0.0.1:57996/user
533
+ Completed 302 Found in 333ms
534
+
535
+
536
+ Started GET "/user" for 127.0.0.1 at 2011-11-30 18:56:03 +0000
537
+ Processing by HomeController#index as HTML
538
+ Rendered home/index.html.erb within layouts/application (0.0ms)
539
+ User Load (0.6ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
540
+ Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.6ms)
541
+
542
+
543
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:56:03 +0000
544
+ Processing by Devise::SessionsController#destroy as HTML
545
+ User Load (0.4ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
546
+  (0.1ms) BEGIN
547
+  (0.0ms) COMMIT
548
+ Redirected to http://127.0.0.1:57996/
549
+ Completed 302 Found in 16ms
550
+
551
+
552
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:56:03 +0000
553
+ Processing by HomeController#index as HTML
554
+ Rendered home/index.html.erb within layouts/application (0.1ms)
555
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
556
+  (0.2ms) SELECT @@FOREIGN_KEY_CHECKS
557
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 0
558
+  (0.1ms) SELECT DATABASE() as db
559
+  (0.4ms) select table_name from information_schema.views where table_schema = 'template_test'
560
+  (65.0ms) TRUNCATE TABLE `authentications`;
561
+  (65.9ms) TRUNCATE TABLE `users`;
562
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 1
563
+
564
+
565
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:56:44 +0000
566
+ Processing by Devise::SessionsController#destroy as HTML
567
+ Redirected to http://127.0.0.1:48434/
568
+ Completed 302 Found in 54ms
569
+
570
+
571
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:56:44 +0000
572
+ Processing by HomeController#index as HTML
573
+ Rendered home/index.html.erb within layouts/application (22.0ms)
574
+ Completed 200 OK in 94ms (Views: 92.9ms | ActiveRecord: 0.0ms)
575
+
576
+
577
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:56:45 +0000
578
+ Processing by HomeController#index as HTML
579
+ Rendered home/index.html.erb within layouts/application (0.0ms)
580
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
581
+
582
+
583
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 18:56:45 +0000
584
+ Processing by RegistrationsController#new as HTML
585
+ Rendered registrations/new.html.erb within layouts/application (77.6ms)
586
+ Completed 200 OK in 90ms (Views: 83.3ms | ActiveRecord: 3.3ms)
587
+
588
+
589
+ Started POST "/users" for 127.0.0.1 at 2011-11-30 18:56:46 +0000
590
+ Processing by RegistrationsController#create as HTML
591
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
592
+  (0.1ms) BEGIN
593
+  (0.5ms) SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
594
+ SQL (0.4ms) INSERT INTO `users` (`created_at`, `current_sign_in_at`, `current_sign_in_ip`, `email`, `encrypted_password`, `last_sign_in_at`, `last_sign_in_ip`, `remember_created_at`, `reset_password_sent_at`, `reset_password_token`, `sign_in_count`, `updated_at`) VALUES ('2011-11-30 18:56:46', NULL, NULL, 'user@test.com', '$2a$04$6Jmq8w85f5Wo0Y9YKtdDP.G345XwftnwiqjDwQ4WF9bjuPA8Mokm2', NULL, NULL, NULL, NULL, NULL, 0, '2011-11-30 18:56:46')
595
+  (67.8ms) COMMIT
596
+  (0.3ms) BEGIN
597
+  (0.7ms) UPDATE `users` SET `last_sign_in_at` = '2011-11-30 18:56:46', `current_sign_in_at` = '2011-11-30 18:56:46', `last_sign_in_ip` = '127.0.0.1', `current_sign_in_ip` = '127.0.0.1', `sign_in_count` = 1, `updated_at` = '2011-11-30 18:56:46' WHERE `users`.`id` = 1
598
+  (56.8ms) COMMIT
599
+ Redirected to http://127.0.0.1:48434/user
600
+ Completed 302 Found in 333ms
601
+
602
+
603
+ Started GET "/user" for 127.0.0.1 at 2011-11-30 18:56:46 +0000
604
+ Processing by HomeController#index as HTML
605
+ Rendered home/index.html.erb within layouts/application (0.0ms)
606
+ User Load (0.3ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
607
+ Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.3ms)
608
+
609
+
610
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:56:46 +0000
611
+ Processing by Devise::SessionsController#destroy as HTML
612
+ User Load (0.4ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
613
+  (0.1ms) BEGIN
614
+  (0.0ms) COMMIT
615
+ Redirected to http://127.0.0.1:48434/
616
+ Completed 302 Found in 16ms
617
+
618
+
619
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:56:46 +0000
620
+ Processing by HomeController#index as HTML
621
+ Rendered home/index.html.erb within layouts/application (0.0ms)
622
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
623
+
624
+
625
+ Started GET "/users/sign_in" for 127.0.0.1 at 2011-11-30 18:56:46 +0000
626
+ Processing by Devise::SessionsController#new as HTML
627
+ Rendered devise/sessions/new.html.erb within layouts/application (9.2ms)
628
+ Completed 200 OK in 33ms (Views: 31.5ms | ActiveRecord: 0.0ms)
629
+  (0.7ms) SELECT @@FOREIGN_KEY_CHECKS
630
+  (0.2ms) SET FOREIGN_KEY_CHECKS = 0
631
+  (0.2ms) SELECT DATABASE() as db
632
+  (0.5ms) select table_name from information_schema.views where table_schema = 'template_test'
633
+  (57.5ms) TRUNCATE TABLE `authentications`;
634
+  (57.8ms) TRUNCATE TABLE `users`;
635
+  (0.2ms) SET FOREIGN_KEY_CHECKS = 1
636
+
637
+
638
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:57:20 +0000
639
+ Processing by Devise::SessionsController#destroy as HTML
640
+ Redirected to http://127.0.0.1:50315/
641
+ Completed 302 Found in 1ms
642
+
643
+
644
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:57:20 +0000
645
+ Processing by HomeController#index as HTML
646
+ Rendered home/index.html.erb within layouts/application (21.7ms)
647
+ Completed 200 OK in 96ms (Views: 95.3ms | ActiveRecord: 0.0ms)
648
+
649
+
650
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:57:20 +0000
651
+ Processing by HomeController#index as HTML
652
+ Rendered home/index.html.erb within layouts/application (0.0ms)
653
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
654
+
655
+
656
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 18:57:20 +0000
657
+ Processing by RegistrationsController#new as HTML
658
+ Rendered registrations/new.html.erb within layouts/application (69.2ms)
659
+ Completed 200 OK in 87ms (Views: 77.9ms | ActiveRecord: 3.9ms)
660
+
661
+
662
+ Started POST "/users" for 127.0.0.1 at 2011-11-30 18:57:21 +0000
663
+ Processing by RegistrationsController#create as HTML
664
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
665
+  (0.1ms) BEGIN
666
+  (0.5ms) SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
667
+ SQL (0.4ms) INSERT INTO `users` (`created_at`, `current_sign_in_at`, `current_sign_in_ip`, `email`, `encrypted_password`, `last_sign_in_at`, `last_sign_in_ip`, `remember_created_at`, `reset_password_sent_at`, `reset_password_token`, `sign_in_count`, `updated_at`) VALUES ('2011-11-30 18:57:21', NULL, NULL, 'user@test.com', '$2a$04$yspulCPf0yVOoNcabczC4u1mCRp8lLhFwChHMzQC3FK3dFWYDxfwy', NULL, NULL, NULL, NULL, NULL, 0, '2011-11-30 18:57:21')
668
+  (81.9ms) COMMIT
669
+  (0.2ms) BEGIN
670
+  (0.4ms) UPDATE `users` SET `last_sign_in_at` = '2011-11-30 18:57:21', `current_sign_in_at` = '2011-11-30 18:57:21', `last_sign_in_ip` = '127.0.0.1', `current_sign_in_ip` = '127.0.0.1', `sign_in_count` = 1, `updated_at` = '2011-11-30 18:57:21' WHERE `users`.`id` = 1
671
+  (51.9ms) COMMIT
672
+ Redirected to http://127.0.0.1:50315/user
673
+ Completed 302 Found in 323ms
674
+
675
+
676
+ Started GET "/user" for 127.0.0.1 at 2011-11-30 18:57:21 +0000
677
+ Processing by HomeController#index as HTML
678
+ Rendered home/index.html.erb within layouts/application (0.1ms)
679
+ User Load (0.9ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
680
+ Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.9ms)
681
+
682
+
683
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:57:22 +0000
684
+ Processing by Devise::SessionsController#destroy as HTML
685
+ User Load (0.2ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
686
+  (0.1ms) BEGIN
687
+  (0.1ms) COMMIT
688
+ Redirected to http://127.0.0.1:50315/
689
+ Completed 302 Found in 15ms
690
+
691
+
692
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:57:22 +0000
693
+ Processing by HomeController#index as HTML
694
+ Rendered home/index.html.erb within layouts/application (0.0ms)
695
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
696
+
697
+
698
+ Started GET "/users/sign_in" for 127.0.0.1 at 2011-11-30 18:57:22 +0000
699
+ Processing by Devise::SessionsController#new as HTML
700
+ Rendered devise/sessions/new.html.erb within layouts/application (3.9ms)
701
+ Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.0ms)
702
+  (0.2ms) SELECT @@FOREIGN_KEY_CHECKS
703
+  (0.2ms) SET FOREIGN_KEY_CHECKS = 0
704
+  (0.3ms) SELECT DATABASE() as db
705
+  (1.0ms) select table_name from information_schema.views where table_schema = 'template_test'
706
+  (87.1ms) TRUNCATE TABLE `authentications`;
707
+  (66.8ms) TRUNCATE TABLE `users`;
708
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 1
709
+
710
+
711
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:58:01 +0000
712
+ Processing by Devise::SessionsController#destroy as HTML
713
+ Redirected to http://127.0.0.1:50798/
714
+ Completed 302 Found in 5ms
715
+
716
+
717
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:58:01 +0000
718
+ Processing by HomeController#index as HTML
719
+ Rendered home/index.html.erb within layouts/application (24.1ms)
720
+ Completed 200 OK in 96ms (Views: 95.3ms | ActiveRecord: 0.0ms)
721
+
722
+
723
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:58:02 +0000
724
+ Processing by HomeController#index as HTML
725
+ Rendered home/index.html.erb within layouts/application (0.0ms)
726
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
727
+
728
+
729
+ Started GET "/users/sign_up" for 127.0.0.1 at 2011-11-30 18:58:02 +0000
730
+ Processing by RegistrationsController#new as HTML
731
+ Rendered registrations/new.html.erb within layouts/application (69.9ms)
732
+ Completed 200 OK in 79ms (Views: 74.2ms | ActiveRecord: 2.6ms)
733
+
734
+
735
+ Started POST "/users" for 127.0.0.1 at 2011-11-30 18:58:03 +0000
736
+ Processing by RegistrationsController#create as HTML
737
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
738
+  (0.1ms) BEGIN
739
+  (0.6ms) SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
740
+ SQL (0.4ms) INSERT INTO `users` (`created_at`, `current_sign_in_at`, `current_sign_in_ip`, `email`, `encrypted_password`, `last_sign_in_at`, `last_sign_in_ip`, `remember_created_at`, `reset_password_sent_at`, `reset_password_token`, `sign_in_count`, `updated_at`) VALUES ('2011-11-30 18:58:03', NULL, NULL, 'user@test.com', '$2a$04$V8gbjACqpvoUwNtkxr7wwu4mbX3S0tnCmvCsvKY7Tt3CNNOjPAY7e', NULL, NULL, NULL, NULL, NULL, 0, '2011-11-30 18:58:03')
741
+  (69.8ms) COMMIT
742
+  (0.2ms) BEGIN
743
+  (0.6ms) UPDATE `users` SET `last_sign_in_at` = '2011-11-30 18:58:03', `current_sign_in_at` = '2011-11-30 18:58:03', `last_sign_in_ip` = '127.0.0.1', `current_sign_in_ip` = '127.0.0.1', `sign_in_count` = 1, `updated_at` = '2011-11-30 18:58:03' WHERE `users`.`id` = 1
744
+  (118.6ms) COMMIT
745
+ Redirected to http://127.0.0.1:50798/user
746
+ Completed 302 Found in 330ms
747
+
748
+
749
+ Started GET "/user" for 127.0.0.1 at 2011-11-30 18:58:03 +0000
750
+ Processing by HomeController#index as HTML
751
+ Rendered home/index.html.erb within layouts/application (0.0ms)
752
+ User Load (0.3ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
753
+ Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.3ms)
754
+
755
+
756
+ Started GET "/users/sign_out" for 127.0.0.1 at 2011-11-30 18:58:03 +0000
757
+ Processing by Devise::SessionsController#destroy as HTML
758
+ User Load (0.2ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
759
+  (0.1ms) BEGIN
760
+  (0.0ms) COMMIT
761
+ Redirected to http://127.0.0.1:50798/
762
+ Completed 302 Found in 20ms
763
+
764
+
765
+ Started GET "/" for 127.0.0.1 at 2011-11-30 18:58:03 +0000
766
+ Processing by HomeController#index as HTML
767
+ Rendered home/index.html.erb within layouts/application (0.0ms)
768
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
769
+
770
+
771
+ Started GET "/users/sign_in" for 127.0.0.1 at 2011-11-30 18:58:03 +0000
772
+ Processing by Devise::SessionsController#new as HTML
773
+ Rendered devise/sessions/new.html.erb within layouts/application (2.4ms)
774
+ Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 0.0ms)
775
+
776
+
777
+ Started POST "/users/sign_in" for 127.0.0.1 at 2011-11-30 18:58:04 +0000
778
+ Processing by Devise::SessionsController#create as HTML
779
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user@test.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
780
+ User Load (0.6ms) SELECT `users`.* FROM `users` WHERE `users`.`email` = 'user@test.com' LIMIT 1
781
+  (0.2ms) BEGIN
782
+  (0.6ms) UPDATE `users` SET `current_sign_in_at` = '2011-11-30 18:58:04', `sign_in_count` = 2, `updated_at` = '2011-11-30 18:58:04' WHERE `users`.`id` = 1
783
+  (54.4ms) COMMIT
784
+ Redirected to http://127.0.0.1:50798/user
785
+ Completed 302 Found in 86ms
786
+
787
+
788
+ Started GET "/user" for 127.0.0.1 at 2011-11-30 18:58:04 +0000
789
+ Processing by HomeController#index as HTML
790
+ Rendered home/index.html.erb within layouts/application (0.0ms)
791
+ User Load (0.3ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
792
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.3ms)
793
+  (0.4ms) SELECT @@FOREIGN_KEY_CHECKS
794
+  (0.1ms) SET FOREIGN_KEY_CHECKS = 0
795
+  (0.2ms) SELECT DATABASE() as db
796
+  (0.8ms) select table_name from information_schema.views where table_schema = 'template_test'
797
+  (113.7ms) TRUNCATE TABLE `authentications`;
798
+  (53.2ms) TRUNCATE TABLE `users`;
799
+  (0.2ms) SET FOREIGN_KEY_CHECKS = 1