Skip to content

Commit 70828c0

Browse files
committed
updated gitignore file to ignore tmp/cache
1 parent 96e8b4e commit 70828c0

File tree

3 files changed

+77
-0
lines changed

3 files changed

+77
-0
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tmp/cache

log/development.log

+76
Original file line numberDiff line numberDiff line change
@@ -19645,3 +19645,79 @@ Processing by Devise::RegistrationsController#create as HTML
1964519645
Completed 200 OK in 164ms (Views: 53.3ms | ActiveRecord: 0.5ms)
1964619646

1964719647

19648+
Started GET "/users/sign_up" for ::1 at 2020-05-12 22:16:51 +1000
19649+
Processing by Devise::RegistrationsController#new as HTML
19650+
Rendering devise/registrations/new.html.erb within layouts/application
19651+
Rendered devise/shared/_error_messages.html.erb (0.4ms)
19652+
Rendered devise/shared/_links.html.erb (0.6ms)
19653+
Rendered devise/registrations/new.html.erb within layouts/application (5.3ms)
19654+
Started GET "/users/sign_in" for ::1 at 2020-05-12 22:16:52 +1000
19655+
Rendered shared/_navigation_bar.html.erb (0.9ms)
19656+
Rendered shared/_alerts.html.erb (0.3ms)
19657+
Completed 200 OK in 1572ms (Views: 1551.1ms | ActiveRecord: 12.7ms)
19658+
19659+
19660+
Processing by Devise::SessionsController#new as HTML
19661+
Rendering devise/sessions/new.html.erb within layouts/application
19662+
Rendered devise/shared/_links.html.erb (0.8ms)
19663+
Rendered devise/sessions/new.html.erb within layouts/application (12.2ms)
19664+
Rendered shared/_navigation_bar.html.erb (0.7ms)
19665+
Rendered shared/_alerts.html.erb (0.2ms)
19666+
Completed 200 OK in 77ms (Views: 65.6ms | ActiveRecord: 2.7ms)
19667+
19668+
19669+
Started POST "/users/sign_in" for ::1 at 2020-05-12 22:16:58 +1000
19670+
Processing by Devise::SessionsController#create as HTML
19671+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"UZMn4xSC5ENsC5pTw1oKB2Ad95Evh7nTjNglo8PeIq4a9/jdj4K1WqOsmYTkq2K8CRp0aqA3/E54y0gQJswTAA==", "user"=>{"email"=>"[email protected]", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"}
19672+
User Load (4.8ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["email", "[email protected]"], ["LIMIT", 1]]
19673+
↳ /Users/vincentlieu/.rvm/gems/ruby-2.7.0/gems/activerecord-5.2.4.2/lib/active_record/log_subscriber.rb:98
19674+
Redirected to http://localhost:3000/
19675+
Completed 302 Found in 121ms (ActiveRecord: 4.9ms)
19676+
19677+
19678+
Started GET "/" for ::1 at 2020-05-12 22:16:58 +1000
19679+
Processing by PagesController#home as HTML
19680+
Rendering pages/home.html.erb within layouts/application
19681+
Rendered pages/home.html.erb within layouts/application (0.2ms)
19682+
User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
19683+
↳ app/views/shared/_navigation_bar.html.erb:9
19684+
Rendered shared/_navigation_bar.html.erb (2.5ms)
19685+
Rendered shared/_alerts.html.erb (0.3ms)
19686+
Completed 200 OK in 51ms (Views: 49.9ms | ActiveRecord: 0.3ms)
19687+
19688+
19689+
Started GET "/users/edit" for ::1 at 2020-05-12 22:17:14 +1000
19690+
Processing by Devise::RegistrationsController#edit as HTML
19691+
User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
19692+
↳ /Users/vincentlieu/.rvm/gems/ruby-2.7.0/gems/activerecord-5.2.4.2/lib/active_record/log_subscriber.rb:98
19693+
Rendering devise/registrations/edit.html.erb within layouts/application
19694+
Rendered devise/shared/_error_messages.html.erb (0.5ms)
19695+
ActiveStorage::Attachment Load (3.5ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."record_id" = $1 AND "active_storage_attachments"."record_type" = $2 AND "active_storage_attachments"."name" = $3 LIMIT $4 [["record_id", 1], ["record_type", "User"], ["name", "avatar"], ["LIMIT", 1]]
19696+
↳ app/views/devise/registrations/edit.html.erb:41
19697+
Rendered devise/registrations/edit.html.erb within layouts/application (30.3ms)
19698+
Rendered shared/_navigation_bar.html.erb (0.7ms)
19699+
Rendered shared/_alerts.html.erb (0.3ms)
19700+
Completed 200 OK in 83ms (Views: 76.3ms | ActiveRecord: 4.7ms)
19701+
19702+
19703+
Started PUT "/users" for ::1 at 2020-05-12 22:18:22 +1000
19704+
Processing by Devise::RegistrationsController#update as HTML
19705+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"+37uPr5dQ1vxJ558JxP9GgnxBp1IPo5ZIYFKmcP7ri1/oKCZOk+88oy2qBkkQxCqovY4EmiLcYPIG4cJUws8Cw==", "user"=>{"full_name"=>"", "email"=>"[email protected]", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "biography"=>"Incidunt sequi veniam.", "current_password"=>"[FILTERED]"}, "commit"=>"Update"}
19706+
User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
19707+
↳ /Users/vincentlieu/.rvm/gems/ruby-2.7.0/gems/activerecord-5.2.4.2/lib/active_record/log_subscriber.rb:98
19708+
User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]
19709+
↳ /Users/vincentlieu/.rvm/gems/ruby-2.7.0/gems/activerecord-5.2.4.2/lib/active_record/log_subscriber.rb:98
19710+
 (0.2ms) BEGIN
19711+
↳ /Users/vincentlieu/.rvm/gems/ruby-2.7.0/gems/activerecord-5.2.4.2/lib/active_record/log_subscriber.rb:98
19712+
 (0.1ms) ROLLBACK
19713+
↳ /Users/vincentlieu/.rvm/gems/ruby-2.7.0/gems/activerecord-5.2.4.2/lib/active_record/log_subscriber.rb:98
19714+
Rendering devise/registrations/edit.html.erb within layouts/application
19715+
Rendered devise/shared/_error_messages.html.erb (0.6ms)
19716+
ActiveStorage::Attachment Load (0.3ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."record_id" = $1 AND "active_storage_attachments"."record_type" = $2 AND "active_storage_attachments"."name" = $3 LIMIT $4 [["record_id", 1], ["record_type", "User"], ["name", "avatar"], ["LIMIT", 1]]
19717+
↳ app/views/devise/registrations/edit.html.erb:41
19718+
Rendered devise/registrations/edit.html.erb within layouts/application (4.9ms)
19719+
Rendered shared/_navigation_bar.html.erb (0.6ms)
19720+
Rendered shared/_alerts.html.erb (0.3ms)
19721+
Completed 200 OK in 165ms (Views: 52.9ms | ActiveRecord: 0.9ms)
19722+
19723+

0 commit comments

Comments
 (0)