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.
- data/Gemfile +54 -0
- data/Gemfile.lock +237 -0
- data/Rakefile +7 -0
- data/app/.svn/all-wcprops +5 -0
- data/app/.svn/entries +31 -0
- data/app/assets/images/rails.png +0 -0
- data/app/assets/javascripts/application.js +16 -0
- data/app/assets/javascripts/registrations.js.coffee +3 -0
- data/app/assets/stylesheets/application.css +23 -0
- data/app/assets/stylesheets/bootstrap.scss +29 -0
- data/app/assets/stylesheets/forms.scss +481 -0
- data/app/assets/stylesheets/mixins.scss +220 -0
- data/app/assets/stylesheets/patterns.scss +1061 -0
- data/app/assets/stylesheets/registrations.css.scss +3 -0
- data/app/assets/stylesheets/reset.scss +144 -0
- data/app/assets/stylesheets/scaffolding.scss +144 -0
- data/app/assets/stylesheets/tables.scss +226 -0
- data/app/assets/stylesheets/type.scss +190 -0
- data/app/assets/stylesheets/variables.scss +60 -0
- data/app/controllers/.svn/all-wcprops +11 -0
- data/app/controllers/.svn/entries +62 -0
- data/app/controllers/.svn/text-base/assets_offline_controller.rb.svn-base +85 -0
- data/app/controllers/application_controller.rb +6 -0
- data/app/controllers/authentications_controller.rb +34 -0
- data/app/controllers/home_controller.rb +83 -0
- data/app/controllers/registrations_controller.rb +18 -0
- data/app/helpers/application_helper.rb +2 -0
- data/app/helpers/authentications_helper.rb +2 -0
- data/app/helpers/devise_helper.rb +29 -0
- data/app/helpers/home_helper.rb +2 -0
- data/app/helpers/registrations_helper.rb +2 -0
- data/app/mailers/.gitkeep +0 -0
- data/app/models/.gitkeep +0 -0
- data/app/models/authentication.rb +3 -0
- data/app/models/user.rb +20 -0
- data/app/views/authentications/_form.html.erb +16 -0
- data/app/views/authentications/edit.html.erb +8 -0
- data/app/views/authentications/index.html.erb +22 -0
- data/app/views/authentications/new.html.erb +5 -0
- data/app/views/authentications/show.html.erb +20 -0
- data/app/views/devise/confirmations/new.html.erb +12 -0
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +16 -0
- data/app/views/devise/passwords/new.html.erb +12 -0
- data/app/views/devise/sessions/new.html.erb +58 -0
- data/app/views/devise/shared/_links.erb +25 -0
- data/app/views/devise/unlocks/new.html.erb +12 -0
- data/app/views/home/_form.html.erb +17 -0
- data/app/views/home/edit.html.erb +6 -0
- data/app/views/home/index.html.erb +21 -0
- data/app/views/home/new.html.erb +5 -0
- data/app/views/home/show.html.erb +5 -0
- data/app/views/layouts/application.html.erb +112 -0
- data/app/views/registrations/edit.html.erb +25 -0
- data/app/views/registrations/new.html.erb +47 -0
- data/bootstrap_devise_base.gemspec +20 -0
- data/config.ru +4 -0
- data/config/.svn/all-wcprops +11 -0
- data/config/.svn/entries +62 -0
- data/config/.svn/text-base/routes.rb.svn-base +3 -0
- data/config/application.rb +48 -0
- data/config/boot.rb +6 -0
- data/config/cucumber.yml +8 -0
- data/config/database.yml +45 -0
- data/config/environment.rb +5 -0
- data/config/environments/development.rb +30 -0
- data/config/environments/production.rb +60 -0
- data/config/environments/test.rb +39 -0
- data/config/initializers/backtrace_silencers.rb +7 -0
- data/config/initializers/devise.rb +208 -0
- data/config/initializers/inflections.rb +10 -0
- data/config/initializers/mime_types.rb +5 -0
- data/config/initializers/omniauth.rb +3 -0
- data/config/initializers/secret_token.rb +7 -0
- data/config/initializers/session_store.rb +8 -0
- data/config/initializers/wrap_parameters.rb +14 -0
- data/config/locales/devise.en.yml +58 -0
- data/config/locales/en.yml +13 -0
- data/config/routes.rb +64 -0
- data/db/migrate/20111121201415_create_users.rb +8 -0
- data/db/migrate/20111121201511_add_devise_to_users.rb +31 -0
- data/db/migrate/20111127100158_create_authentications.rb +14 -0
- data/db/schema.rb +42 -0
- data/db/seeds.rb +7 -0
- data/doc/README_FOR_APP +2 -0
- data/features/manage_sign_ups.feature +28 -0
- data/features/step_definitions/sign_up_steps.rb +27 -0
- data/features/step_definitions/web_steps.rb +254 -0
- data/features/support/env.rb +56 -0
- data/features/support/paths.rb +39 -0
- data/features/support/selectors.rb +39 -0
- data/init.rb +1 -0
- data/lib/.svn/all-wcprops +11 -0
- data/lib/.svn/entries +65 -0
- data/lib/.svn/text-base/assets_offline.rb.svn-base +6 -0
- data/lib/assets/.gitkeep +0 -0
- data/lib/bootstap_devise_base.rb~ +6 -0
- data/lib/bootstrap_devise_base.rb +6 -0
- data/lib/bootstrap_devise_base/.svn/all-wcprops +11 -0
- data/lib/bootstrap_devise_base/.svn/entries +62 -0
- data/lib/bootstrap_devise_base/.svn/text-base/version.rb.svn-base +3 -0
- data/lib/bootstrap_devise_base/version.rb +3 -0
- data/lib/tasks/.gitkeep +0 -0
- data/lib/tasks/cucumber.rake +65 -0
- data/log/.gitkeep +0 -0
- data/log/development.log +977 -0
- data/log/production.log +44 -0
- data/log/test.log +799 -0
- data/public/404.html +26 -0
- data/public/422.html +26 -0
- data/public/500.html +26 -0
- data/public/assets/application-902e25928a309d43246c45cd2facd7d3.js +19 -0
- data/public/assets/application-902e25928a309d43246c45cd2facd7d3.js.gz +0 -0
- data/public/assets/application-a5e3fc47c863d5a64c7380ed33b187b6.css +1 -0
- data/public/assets/application-a5e3fc47c863d5a64c7380ed33b187b6.css.gz +0 -0
- data/public/assets/application.css +1 -0
- data/public/assets/application.css.gz +0 -0
- data/public/assets/application.js +19 -0
- data/public/assets/application.js.gz +0 -0
- data/public/assets/manifest.yml +4 -0
- data/public/assets/rails-e4b51606cd77fda2615e7439907bfc92.png +0 -0
- data/public/assets/rails.png +0 -0
- data/public/favicon.ico +0 -0
- data/public/robots.txt +5 -0
- data/script/cucumber +10 -0
- data/script/rails +6 -0
- data/test/fixtures/.gitkeep +0 -0
- data/test/functional/.gitkeep +0 -0
- data/test/integration/.gitkeep +0 -0
- data/test/performance/browsing_test.rb +12 -0
- data/test/test_helper.rb +13 -0
- data/test/unit/.gitkeep +0 -0
- data/vendor/assets/stylesheets/.gitkeep +0 -0
- data/vendor/plugins/.gitkeep +0 -0
- metadata +181 -0
data/log/production.log
ADDED
|
@@ -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)
|
data/log/test.log
ADDED
|
@@ -0,0 +1,799 @@
|
|
|
1
|
+
[1m[36m (188.5ms)[0m [1mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
|
|
2
|
+
[1m[35m (348.5ms)[0m CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
|
|
3
|
+
[1m[36m (0.4ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
|
4
|
+
Migrating to CreateUsers (20111121201415)
|
|
5
|
+
[1m[35m (151.7ms)[0m CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
|
|
6
|
+
[1m[36m (56.9ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20111121201415')[0m
|
|
7
|
+
Migrating to AddDeviseToUsers (20111121201511)
|
|
8
|
+
[1m[35m (322.9ms)[0m ALTER TABLE `users` ADD `email` varchar(255) DEFAULT '' NOT NULL
|
|
9
|
+
[1m[36m (324.5ms)[0m [1mALTER TABLE `users` ADD `encrypted_password` varchar(128) DEFAULT '' NOT NULL[0m
|
|
10
|
+
[1m[35m (357.7ms)[0m ALTER TABLE `users` ADD `reset_password_token` varchar(255)
|
|
11
|
+
[1m[36m (366.5ms)[0m [1mALTER TABLE `users` ADD `reset_password_sent_at` datetime[0m
|
|
12
|
+
[1m[35m (341.4ms)[0m ALTER TABLE `users` ADD `remember_created_at` datetime
|
|
13
|
+
[1m[36m (313.6ms)[0m [1mALTER TABLE `users` ADD `sign_in_count` int(11) DEFAULT 0[0m
|
|
14
|
+
[1m[35m (324.7ms)[0m ALTER TABLE `users` ADD `current_sign_in_at` datetime
|
|
15
|
+
[1m[36m (341.2ms)[0m [1mALTER TABLE `users` ADD `last_sign_in_at` datetime[0m
|
|
16
|
+
[1m[35m (366.3ms)[0m ALTER TABLE `users` ADD `current_sign_in_ip` varchar(255)
|
|
17
|
+
[1m[36m (366.4ms)[0m [1mALTER TABLE `users` ADD `last_sign_in_ip` varchar(255)[0m
|
|
18
|
+
[1m[35m (315.7ms)[0m CREATE UNIQUE INDEX `index_users_on_email` ON `users` (`email`)
|
|
19
|
+
[1m[36m (330.6ms)[0m [1mCREATE UNIQUE INDEX `index_users_on_reset_password_token` ON `users` (`reset_password_token`)[0m
|
|
20
|
+
[1m[35m (57.6ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20111121201511')
|
|
21
|
+
Migrating to CreateAuthentications (20111127100158)
|
|
22
|
+
[1m[36m (153.3ms)[0m [1mCREATE 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[0m
|
|
23
|
+
[1m[35m (56.9ms)[0m INSERT INTO `schema_migrations` (`version`) VALUES ('20111127100158')
|
|
24
|
+
[1m[36m (0.3ms)[0m [1mSELECT `schema_migrations`.`version` FROM `schema_migrations` [0m
|
|
25
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
39
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
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
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
|
59
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
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
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
|
85
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
111
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
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
|
+
[1m[35m (0.1ms)[0m ROLLBACK
|
|
137
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
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
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
168
|
+
[1m[36m (21.1ms)[0m [1mSELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1[0m
|
|
169
|
+
[1m[35mSQL (14.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
171
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
172
|
+
[1m[36m (0.3ms)[0m [1mUPDATE `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[0m
|
|
173
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mUser Load (1.0ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m
|
|
182
|
+
Completed 200 OK in 97ms (Views: 95.9ms | ActiveRecord: 1.0ms)
|
|
183
|
+
[1m[35m (60.2ms)[0m ROLLBACK
|
|
184
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
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
|
+
[1m[35m (0.3ms)[0m SAVEPOINT active_record_1
|
|
215
|
+
[1m[36m (0.5ms)[0m [1mSELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1[0m
|
|
216
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
218
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
219
|
+
[1m[36m (0.3ms)[0m [1mUPDATE `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[0m
|
|
220
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mUser Load (1.3ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 2 LIMIT 1[0m
|
|
229
|
+
Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 1.3ms)
|
|
230
|
+
[1m[35m (108.4ms)[0m ROLLBACK
|
|
231
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
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
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
262
|
+
[1m[36m (1.0ms)[0m [1mSELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1[0m
|
|
263
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
265
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
266
|
+
[1m[36m (0.2ms)[0m [1mUPDATE `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[0m
|
|
267
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mUser Load (0.6ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 3 LIMIT 1[0m
|
|
276
|
+
Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.6ms)
|
|
277
|
+
[1m[35m (71.5ms)[0m ROLLBACK
|
|
278
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
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
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
309
|
+
[1m[36m (0.5ms)[0m [1mSELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1[0m
|
|
310
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
312
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
313
|
+
[1m[36m (1.2ms)[0m [1mUPDATE `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[0m
|
|
314
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mUser Load (0.8ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 4 LIMIT 1[0m
|
|
323
|
+
Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.8ms)
|
|
324
|
+
[1m[35m (86.2ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
355
|
+
[1m[35m (0.6ms)[0m SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
|
|
356
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT 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')[0m
|
|
357
|
+
[1m[35m (81.9ms)[0m COMMIT
|
|
358
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
359
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36m (77.9ms)[0m [1mCOMMIT[0m
|
|
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
|
+
[1m[35mUser Load (0.6ms)[0m SELECT `users`.* FROM `users` WHERE `users`.`id` = 5 LIMIT 1
|
|
369
|
+
Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.6ms)
|
|
370
|
+
[1m[36m (0.2ms)[0m [1mSELECT @@FOREIGN_KEY_CHECKS[0m
|
|
371
|
+
[1m[35m (0.1ms)[0m SET FOREIGN_KEY_CHECKS = 0
|
|
372
|
+
[1m[36m (0.1ms)[0m [1mSELECT DATABASE() as db[0m
|
|
373
|
+
[1m[35m (0.5ms)[0m select table_name from information_schema.views where table_schema = 'template_test'
|
|
374
|
+
[1m[36m (111.7ms)[0m [1mTRUNCATE TABLE `authentications`;[0m
|
|
375
|
+
[1m[35m (65.1ms)[0m TRUNCATE TABLE `users`;
|
|
376
|
+
[1m[36m (0.1ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
|
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
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
407
|
+
[1m[35m (0.3ms)[0m SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
|
|
408
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT 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')[0m
|
|
409
|
+
[1m[35m (68.8ms)[0m COMMIT
|
|
410
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
411
|
+
[1m[35m (1.1ms)[0m 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
|
+
[1m[36m (63.3ms)[0m [1mCOMMIT[0m
|
|
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
|
+
[1m[35mUser Load (0.8ms)[0m SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
|
|
421
|
+
Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.8ms)
|
|
422
|
+
[1m[36m (0.2ms)[0m [1mSELECT @@FOREIGN_KEY_CHECKS[0m
|
|
423
|
+
[1m[35m (0.1ms)[0m SET FOREIGN_KEY_CHECKS = 0
|
|
424
|
+
[1m[36m (0.1ms)[0m [1mSELECT DATABASE() as db[0m
|
|
425
|
+
[1m[35m (0.5ms)[0m select table_name from information_schema.views where table_schema = 'template_test'
|
|
426
|
+
[1m[36m (67.4ms)[0m [1mTRUNCATE TABLE `authentications`;[0m
|
|
427
|
+
[1m[35m (62.1ms)[0m TRUNCATE TABLE `users`;
|
|
428
|
+
[1m[36m (0.3ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|
|
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
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
459
|
+
[1m[35m (0.5ms)[0m SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
|
|
460
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT 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')[0m
|
|
461
|
+
[1m[35m (58.6ms)[0m COMMIT
|
|
462
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
|
463
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36m (58.4ms)[0m [1mCOMMIT[0m
|
|
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
|
+
[1m[35mUser Load (0.6ms)[0m 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
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m
|
|
479
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
480
|
+
[1m[36m (0.0ms)[0m [1mCOMMIT[0m
|
|
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
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
|
490
|
+
[1m[36m (0.1ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
|
491
|
+
[1m[35m (0.1ms)[0m SELECT DATABASE() as db
|
|
492
|
+
[1m[36m (0.5ms)[0m [1mselect table_name from information_schema.views where table_schema = 'template_test'[0m
|
|
493
|
+
[1m[35m (58.1ms)[0m TRUNCATE TABLE `authentications`;
|
|
494
|
+
[1m[36m (57.6ms)[0m [1mTRUNCATE TABLE `users`;[0m
|
|
495
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
|
526
|
+
[1m[35m (0.7ms)[0m SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
|
|
527
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT 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')[0m
|
|
528
|
+
[1m[35m (76.0ms)[0m COMMIT
|
|
529
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
530
|
+
[1m[35m (0.5ms)[0m 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
|
+
[1m[36m (61.0ms)[0m [1mCOMMIT[0m
|
|
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
|
+
[1m[35mUser Load (0.6ms)[0m 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
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m
|
|
546
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
547
|
+
[1m[36m (0.0ms)[0m [1mCOMMIT[0m
|
|
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
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
|
557
|
+
[1m[36m (0.1ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
|
558
|
+
[1m[35m (0.1ms)[0m SELECT DATABASE() as db
|
|
559
|
+
[1m[36m (0.4ms)[0m [1mselect table_name from information_schema.views where table_schema = 'template_test'[0m
|
|
560
|
+
[1m[35m (65.0ms)[0m TRUNCATE TABLE `authentications`;
|
|
561
|
+
[1m[36m (65.9ms)[0m [1mTRUNCATE TABLE `users`;[0m
|
|
562
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
593
|
+
[1m[35m (0.5ms)[0m SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
|
|
594
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT 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')[0m
|
|
595
|
+
[1m[35m (67.8ms)[0m COMMIT
|
|
596
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
|
597
|
+
[1m[35m (0.7ms)[0m 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
|
+
[1m[36m (56.8ms)[0m [1mCOMMIT[0m
|
|
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
|
+
[1m[35mUser Load (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m
|
|
613
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
614
|
+
[1m[36m (0.0ms)[0m [1mCOMMIT[0m
|
|
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
|
+
[1m[35m (0.7ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
|
630
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
|
631
|
+
[1m[35m (0.2ms)[0m SELECT DATABASE() as db
|
|
632
|
+
[1m[36m (0.5ms)[0m [1mselect table_name from information_schema.views where table_schema = 'template_test'[0m
|
|
633
|
+
[1m[35m (57.5ms)[0m TRUNCATE TABLE `authentications`;
|
|
634
|
+
[1m[36m (57.8ms)[0m [1mTRUNCATE TABLE `users`;[0m
|
|
635
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
666
|
+
[1m[35m (0.5ms)[0m SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
|
|
667
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT 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')[0m
|
|
668
|
+
[1m[35m (81.9ms)[0m COMMIT
|
|
669
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
670
|
+
[1m[35m (0.4ms)[0m 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
|
+
[1m[36m (51.9ms)[0m [1mCOMMIT[0m
|
|
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
|
+
[1m[35mUser Load (0.9ms)[0m 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
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m
|
|
686
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
687
|
+
[1m[36m (0.1ms)[0m [1mCOMMIT[0m
|
|
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
|
+
[1m[35m (0.2ms)[0m SELECT @@FOREIGN_KEY_CHECKS
|
|
703
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 0[0m
|
|
704
|
+
[1m[35m (0.3ms)[0m SELECT DATABASE() as db
|
|
705
|
+
[1m[36m (1.0ms)[0m [1mselect table_name from information_schema.views where table_schema = 'template_test'[0m
|
|
706
|
+
[1m[35m (87.1ms)[0m TRUNCATE TABLE `authentications`;
|
|
707
|
+
[1m[36m (66.8ms)[0m [1mTRUNCATE TABLE `users`;[0m
|
|
708
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
|
739
|
+
[1m[35m (0.6ms)[0m SELECT 1 FROM `users` WHERE `users`.`email` = BINARY 'user@test.com' LIMIT 1
|
|
740
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT 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')[0m
|
|
741
|
+
[1m[35m (69.8ms)[0m COMMIT
|
|
742
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
743
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36m (118.6ms)[0m [1mCOMMIT[0m
|
|
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
|
+
[1m[35mUser Load (0.3ms)[0m 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
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1[0m
|
|
759
|
+
[1m[35m (0.1ms)[0m BEGIN
|
|
760
|
+
[1m[36m (0.0ms)[0m [1mCOMMIT[0m
|
|
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
|
+
[1m[35mUser Load (0.6ms)[0m SELECT `users`.* FROM `users` WHERE `users`.`email` = 'user@test.com' LIMIT 1
|
|
781
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
|
782
|
+
[1m[35m (0.6ms)[0m 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
|
+
[1m[36m (54.4ms)[0m [1mCOMMIT[0m
|
|
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
|
+
[1m[35mUser Load (0.3ms)[0m SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 LIMIT 1
|
|
792
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.3ms)
|
|
793
|
+
[1m[36m (0.4ms)[0m [1mSELECT @@FOREIGN_KEY_CHECKS[0m
|
|
794
|
+
[1m[35m (0.1ms)[0m SET FOREIGN_KEY_CHECKS = 0
|
|
795
|
+
[1m[36m (0.2ms)[0m [1mSELECT DATABASE() as db[0m
|
|
796
|
+
[1m[35m (0.8ms)[0m select table_name from information_schema.views where table_schema = 'template_test'
|
|
797
|
+
[1m[36m (113.7ms)[0m [1mTRUNCATE TABLE `authentications`;[0m
|
|
798
|
+
[1m[35m (53.2ms)[0m TRUNCATE TABLE `users`;
|
|
799
|
+
[1m[36m (0.2ms)[0m [1mSET FOREIGN_KEY_CHECKS = 1[0m
|