diff --git a/Gemfile b/Gemfile index 9ceb37c..0eb78f3 100644 --- a/Gemfile +++ b/Gemfile @@ -31,8 +31,6 @@ gem 'stimulus-rails' # Build JSON APIs with ease [https://github.com/rails/jbuilder] gem 'jbuilder' -gem 'devise' - # Use Redis adapter to run Action Cable in production # gem "redis", "~> 4.0" diff --git a/Gemfile.lock b/Gemfile.lock index b98765e..c885d29 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -68,7 +68,6 @@ GEM tzinfo (~> 2.0) addressable (2.8.1) public_suffix (>= 2.0.2, < 6.0) - bcrypt (3.1.18) bindex (0.8.1) bootsnap (1.15.0) msgpack (~> 1.2) @@ -93,12 +92,6 @@ GEM debug (1.6.3) irb (>= 1.3.6) reline (>= 0.3.1) - devise (4.8.1) - bcrypt (~> 3.0) - orm_adapter (~> 0.1) - railties (>= 4.1.0) - responders - warden (~> 1.2.3) diff-lcs (1.5.0) erubi (1.11.0) globalid (1.0.0) @@ -136,7 +129,6 @@ GEM nio4r (2.5.8) nokogiri (1.13.9-x86_64-linux) racc (~> 1.4) - orm_adapter (0.5.0) pg (1.4.5) public_suffix (5.0.1) puma (5.6.5) @@ -179,9 +171,6 @@ GEM regexp_parser (2.6.1) reline (0.3.1) io-console (~> 0.5) - responders (3.0.1) - actionpack (>= 5.0) - railties (>= 5.0) rexml (3.2.5) rspec-core (3.12.0) rspec-support (~> 3.12.0) @@ -222,8 +211,6 @@ GEM railties (>= 6.0.0) tzinfo (2.0.5) concurrent-ruby (~> 1.0) - warden (1.2.9) - rack (>= 2.0.9) web-console (4.2.0) actionview (>= 6.0.0) activemodel (>= 6.0.0) @@ -245,7 +232,6 @@ DEPENDENCIES capybara database_cleaner debug - devise importmap-rails jbuilder pg (~> 1.1) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index ac3dcad..68208d2 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -184,34 +184,3 @@ body { margin-bottom: 4rem; border-radius: 7px; } - -.login { - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; -} - -.login h2 { - color: rgb(255, 255, 255); -} - -.login input { - height: 2rem; - padding: 1rem; - border: 1px solid #000; -} - -.login .action { - background-color: rgb(255, 255, 255); - width: 100%; -} - -.sign-up { - display: flex; - justify-content: center; - align-items: center; - position: absolute; - top: 70%; - left: 43%; -} diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 4f85004..e13f93b 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -1,14 +1,5 @@ class ApplicationController < ActionController::Base - protect_from_forgery with: :exception - - before_action :update_allowed_parameters, if: :devise_controller? - - before_action :authenticate_user! - - protected - - def update_allowed_parameters - devise_parameter_sanitizer.permit(:sign_up) { |u| u.permit(:name, :email, :password) } - devise_parameter_sanitizer.permit(:account_update) { |u| u.permit(:name, :email, :password, :current_password) } + def current_user + @current_user = User.first end end diff --git a/app/models/user.rb b/app/models/user.rb index 93b22a3..cf8e84f 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -1,8 +1,4 @@ class User < ApplicationRecord - # Include default devise modules. Others available are: - # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable - devise :database_authenticatable, :registerable, :confirmable, - :recoverable, :rememberable, :validatable has_many :posts, foreign_key: 'author_id' has_many :likes, foreign_key: 'author_id' has_many :comments, foreign_key: 'author_id' diff --git a/app/views/confirmables/confirmations/new.html.erb b/app/views/confirmables/confirmations/new.html.erb deleted file mode 100644 index 7174fb6..0000000 --- a/app/views/confirmables/confirmations/new.html.erb +++ /dev/null @@ -1,16 +0,0 @@ -

Resend confirmation instructions

- -<%= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f| %> - <%= render "confirmables/shared/error_messages", resource: resource %> - -
- <%= f.label :email %>
- <%= f.email_field :email, autofocus: true, autocomplete: "email", value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email) %> -
- -
- <%= f.submit "Resend confirmation instructions" %> -
-<% end %> - -<%= render "confirmables/shared/links" %> diff --git a/app/views/confirmables/mailer/confirmation_instructions.html.erb b/app/views/confirmables/mailer/confirmation_instructions.html.erb deleted file mode 100644 index dc55f64..0000000 --- a/app/views/confirmables/mailer/confirmation_instructions.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

Welcome <%= @email %>!

- -

You can confirm your account email through the link below:

- -

<%= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @token) %>

diff --git a/app/views/confirmables/mailer/email_changed.html.erb b/app/views/confirmables/mailer/email_changed.html.erb deleted file mode 100644 index 32f4ba8..0000000 --- a/app/views/confirmables/mailer/email_changed.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -

Hello <%= @email %>!

- -<% if @resource.try(:unconfirmed_email?) %> -

We're contacting you to notify you that your email is being changed to <%= @resource.unconfirmed_email %>.

-<% else %> -

We're contacting you to notify you that your email has been changed to <%= @resource.email %>.

-<% end %> diff --git a/app/views/confirmables/mailer/password_change.html.erb b/app/views/confirmables/mailer/password_change.html.erb deleted file mode 100644 index b41daf4..0000000 --- a/app/views/confirmables/mailer/password_change.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -

Hello <%= @resource.email %>!

- -

We're contacting you to notify you that your password has been changed.

diff --git a/app/views/confirmables/mailer/reset_password_instructions.html.erb b/app/views/confirmables/mailer/reset_password_instructions.html.erb deleted file mode 100644 index f667dc1..0000000 --- a/app/views/confirmables/mailer/reset_password_instructions.html.erb +++ /dev/null @@ -1,8 +0,0 @@ -

Hello <%= @resource.email %>!

- -

Someone has requested a link to change your password. You can do this through the link below.

- -

<%= link_to 'Change my password', edit_password_url(@resource, reset_password_token: @token) %>

- -

If you didn't request this, please ignore this email.

-

Your password won't change until you access the link above and create a new one.

diff --git a/app/views/confirmables/mailer/unlock_instructions.html.erb b/app/views/confirmables/mailer/unlock_instructions.html.erb deleted file mode 100644 index 41e148b..0000000 --- a/app/views/confirmables/mailer/unlock_instructions.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -

Hello <%= @resource.email %>!

- -

Your account has been locked due to an excessive number of unsuccessful sign in attempts.

- -

Click the link below to unlock your account:

- -

<%= link_to 'Unlock my account', unlock_url(@resource, unlock_token: @token) %>

diff --git a/app/views/confirmables/passwords/edit.html.erb b/app/views/confirmables/passwords/edit.html.erb deleted file mode 100644 index eb7f9a5..0000000 --- a/app/views/confirmables/passwords/edit.html.erb +++ /dev/null @@ -1,25 +0,0 @@ -

Change your password

- -<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| %> - <%= render "confirmables/shared/error_messages", resource: resource %> - <%= f.hidden_field :reset_password_token %> - -
- <%= f.label :password, "New password" %>
- <% if @minimum_password_length %> - (<%= @minimum_password_length %> characters minimum)
- <% end %> - <%= f.password_field :password, autofocus: true, autocomplete: "new-password" %> -
- -
- <%= f.label :password_confirmation, "Confirm new password" %>
- <%= f.password_field :password_confirmation, autocomplete: "new-password" %> -
- -
- <%= f.submit "Change my password" %> -
-<% end %> - -<%= render "confirmables/shared/links" %> diff --git a/app/views/confirmables/passwords/new.html.erb b/app/views/confirmables/passwords/new.html.erb deleted file mode 100644 index d2a62d2..0000000 --- a/app/views/confirmables/passwords/new.html.erb +++ /dev/null @@ -1,16 +0,0 @@ -

Forgot your password?

- -<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f| %> - <%= render "confirmables/shared/error_messages", resource: resource %> - -
- <%= f.label :email %>
- <%= f.email_field :email, autofocus: true, autocomplete: "email" %> -
- -
- <%= f.submit "Send me reset password instructions" %> -
-<% end %> - -<%= render "confirmables/shared/links" %> diff --git a/app/views/confirmables/registrations/edit.html.erb b/app/views/confirmables/registrations/edit.html.erb deleted file mode 100644 index 1cb07df..0000000 --- a/app/views/confirmables/registrations/edit.html.erb +++ /dev/null @@ -1,43 +0,0 @@ -

Edit <%= resource_name.to_s.humanize %>

- -<%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %> - <%= render "confirmables/shared/error_messages", resource: resource %> - -
- <%= f.label :email %>
- <%= f.email_field :email, autofocus: true, autocomplete: "email" %> -
- - <% if devise_mapping.confirmable? && resource.pending_reconfirmation? %> -
Currently waiting confirmation for: <%= resource.unconfirmed_email %>
- <% end %> - -
- <%= f.label :password %> (leave blank if you don't want to change it)
- <%= f.password_field :password, autocomplete: "new-password" %> - <% if @minimum_password_length %> -
- <%= @minimum_password_length %> characters minimum - <% end %> -
- -
- <%= f.label :password_confirmation %>
- <%= f.password_field :password_confirmation, autocomplete: "new-password" %> -
- -
- <%= f.label :current_password %> (we need your current password to confirm your changes)
- <%= f.password_field :current_password, autocomplete: "current-password" %> -
- -
- <%= f.submit "Update" %> -
-<% end %> - -

Cancel my account

- -

Unhappy? <%= button_to "Cancel my account", registration_path(resource_name), data: { confirm: "Are you sure?" }, method: :delete %>

- -<%= link_to "Back", :back %> diff --git a/app/views/confirmables/registrations/new.html.erb b/app/views/confirmables/registrations/new.html.erb deleted file mode 100644 index ca927e0..0000000 --- a/app/views/confirmables/registrations/new.html.erb +++ /dev/null @@ -1,29 +0,0 @@ -

Sign up

- -<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %> - <%= render "confirmables/shared/error_messages", resource: resource %> - -
- <%= f.label :email %>
- <%= f.email_field :email, autofocus: true, autocomplete: "email" %> -
- -
- <%= f.label :password %> - <% if @minimum_password_length %> - (<%= @minimum_password_length %> characters minimum) - <% end %>
- <%= f.password_field :password, autocomplete: "new-password" %> -
- -
- <%= f.label :password_confirmation %>
- <%= f.password_field :password_confirmation, autocomplete: "new-password" %> -
- -
- <%= f.submit "Sign up" %> -
-<% end %> - -<%= render "confirmables/shared/links" %> diff --git a/app/views/confirmables/sessions/new.html.erb b/app/views/confirmables/sessions/new.html.erb deleted file mode 100644 index e5b23ac..0000000 --- a/app/views/confirmables/sessions/new.html.erb +++ /dev/null @@ -1,26 +0,0 @@ -

Log in

- -<%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %> -
- <%= f.label :email %>
- <%= f.email_field :email, autofocus: true, autocomplete: "email" %> -
- -
- <%= f.label :password %>
- <%= f.password_field :password, autocomplete: "current-password" %> -
- - <% if devise_mapping.rememberable? %> -
- <%= f.check_box :remember_me %> - <%= f.label :remember_me %> -
- <% end %> - -
- <%= f.submit "Log in" %> -
-<% end %> - -<%= render "confirmables/shared/links" %> diff --git a/app/views/confirmables/shared/_error_messages.html.erb b/app/views/confirmables/shared/_error_messages.html.erb deleted file mode 100644 index ba7ab88..0000000 --- a/app/views/confirmables/shared/_error_messages.html.erb +++ /dev/null @@ -1,15 +0,0 @@ -<% if resource.errors.any? %> -
-

- <%= I18n.t("errors.messages.not_saved", - count: resource.errors.count, - resource: resource.class.model_name.human.downcase) - %> -

- -
-<% end %> diff --git a/app/views/confirmables/shared/_links.html.erb b/app/views/confirmables/shared/_links.html.erb deleted file mode 100644 index 96a9412..0000000 --- a/app/views/confirmables/shared/_links.html.erb +++ /dev/null @@ -1,25 +0,0 @@ -<%- if controller_name != 'sessions' %> - <%= link_to "Log in", new_session_path(resource_name) %>
-<% end %> - -<%- if devise_mapping.registerable? && controller_name != 'registrations' %> - <%= link_to "Sign up", new_registration_path(resource_name) %>
-<% end %> - -<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %> - <%= link_to "Forgot your password?", new_password_path(resource_name) %>
-<% end %> - -<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %> - <%= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name) %>
-<% end %> - -<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %> - <%= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name) %>
-<% end %> - -<%- if devise_mapping.omniauthable? %> - <%- resource_class.omniauth_providers.each do |provider| %> - <%= link_to "Sign in with #{OmniAuth::Utils.camelize(provider)}", omniauth_authorize_path(resource_name, provider), method: :post %>
- <% end %> -<% end %> diff --git a/app/views/confirmables/unlocks/new.html.erb b/app/views/confirmables/unlocks/new.html.erb deleted file mode 100644 index fccc6f4..0000000 --- a/app/views/confirmables/unlocks/new.html.erb +++ /dev/null @@ -1,16 +0,0 @@ -

Resend unlock instructions

- -<%= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %> - <%= render "confirmables/shared/error_messages", resource: resource %> - -
- <%= f.label :email %>
- <%= f.email_field :email, autofocus: true, autocomplete: "email" %> -
- -
- <%= f.submit "Resend unlock instructions" %> -
-<% end %> - -<%= render "confirmables/shared/links" %> diff --git a/app/views/devise/confirmations/new.html.erb b/app/views/devise/confirmations/new.html.erb deleted file mode 100644 index b12dd0c..0000000 --- a/app/views/devise/confirmations/new.html.erb +++ /dev/null @@ -1,16 +0,0 @@ -

Resend confirmation instructions

- -<%= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f| %> - <%= render "devise/shared/error_messages", resource: resource %> - -
- <%= f.label :email %>
- <%= f.email_field :email, autofocus: true, autocomplete: "email", value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email) %> -
- -
- <%= f.submit "Resend confirmation instructions" %> -
-<% end %> - -<%= render "devise/shared/links" %> diff --git a/app/views/devise/mailer/confirmation_instructions.html.erb b/app/views/devise/mailer/confirmation_instructions.html.erb deleted file mode 100644 index dc55f64..0000000 --- a/app/views/devise/mailer/confirmation_instructions.html.erb +++ /dev/null @@ -1,5 +0,0 @@ -

Welcome <%= @email %>!

- -

You can confirm your account email through the link below:

- -

<%= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @token) %>

diff --git a/app/views/devise/mailer/email_changed.html.erb b/app/views/devise/mailer/email_changed.html.erb deleted file mode 100644 index 32f4ba8..0000000 --- a/app/views/devise/mailer/email_changed.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -

Hello <%= @email %>!

- -<% if @resource.try(:unconfirmed_email?) %> -

We're contacting you to notify you that your email is being changed to <%= @resource.unconfirmed_email %>.

-<% else %> -

We're contacting you to notify you that your email has been changed to <%= @resource.email %>.

-<% end %> diff --git a/app/views/devise/mailer/password_change.html.erb b/app/views/devise/mailer/password_change.html.erb deleted file mode 100644 index b41daf4..0000000 --- a/app/views/devise/mailer/password_change.html.erb +++ /dev/null @@ -1,3 +0,0 @@ -

Hello <%= @resource.email %>!

- -

We're contacting you to notify you that your password has been changed.

diff --git a/app/views/devise/mailer/reset_password_instructions.html.erb b/app/views/devise/mailer/reset_password_instructions.html.erb deleted file mode 100644 index f667dc1..0000000 --- a/app/views/devise/mailer/reset_password_instructions.html.erb +++ /dev/null @@ -1,8 +0,0 @@ -

Hello <%= @resource.email %>!

- -

Someone has requested a link to change your password. You can do this through the link below.

- -

<%= link_to 'Change my password', edit_password_url(@resource, reset_password_token: @token) %>

- -

If you didn't request this, please ignore this email.

-

Your password won't change until you access the link above and create a new one.

diff --git a/app/views/devise/mailer/unlock_instructions.html.erb b/app/views/devise/mailer/unlock_instructions.html.erb deleted file mode 100644 index 41e148b..0000000 --- a/app/views/devise/mailer/unlock_instructions.html.erb +++ /dev/null @@ -1,7 +0,0 @@ -

Hello <%= @resource.email %>!

- -

Your account has been locked due to an excessive number of unsuccessful sign in attempts.

- -

Click the link below to unlock your account:

- -

<%= link_to 'Unlock my account', unlock_url(@resource, unlock_token: @token) %>

diff --git a/app/views/devise/passwords/edit.html.erb b/app/views/devise/passwords/edit.html.erb deleted file mode 100644 index 5fbb9ff..0000000 --- a/app/views/devise/passwords/edit.html.erb +++ /dev/null @@ -1,25 +0,0 @@ -

Change your password

- -<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| %> - <%= render "devise/shared/error_messages", resource: resource %> - <%= f.hidden_field :reset_password_token %> - -
- <%= f.label :password, "New password" %>
- <% if @minimum_password_length %> - (<%= @minimum_password_length %> characters minimum)
- <% end %> - <%= f.password_field :password, autofocus: true, autocomplete: "new-password" %> -
- -
- <%= f.label :password_confirmation, "Confirm new password" %>
- <%= f.password_field :password_confirmation, autocomplete: "new-password" %> -
- -
- <%= f.submit "Change my password" %> -
-<% end %> - -<%= render "devise/shared/links" %> diff --git a/app/views/devise/passwords/new.html.erb b/app/views/devise/passwords/new.html.erb deleted file mode 100644 index 9b486b8..0000000 --- a/app/views/devise/passwords/new.html.erb +++ /dev/null @@ -1,16 +0,0 @@ -

Forgot your password?

- -<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f| %> - <%= render "devise/shared/error_messages", resource: resource %> - -
- <%= f.label :email %>
- <%= f.email_field :email, autofocus: true, autocomplete: "email" %> -
- -
- <%= f.submit "Send me reset password instructions" %> -
-<% end %> - -<%= render "devise/shared/links" %> diff --git a/app/views/devise/registrations/edit.html.erb b/app/views/devise/registrations/edit.html.erb deleted file mode 100644 index ea378d9..0000000 --- a/app/views/devise/registrations/edit.html.erb +++ /dev/null @@ -1,55 +0,0 @@ -

Edit <%= resource_name.to_s.humanize %>

- -<%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %> - <%= render "devise/shared/error_messages", resource: resource %> - -
- <%= f.label :name %>
- <%= f.text_field :name %> -
-
- <%= f.label :bio %>
- <%= f.text_field :bio, autofocus: true, autocomplete: "bio"%> -
-
- <%= f.label :photo %>
- <%= f.text_field :photo, autofocus: true, autocomplete: "photo" %> -
-
- <%= f.label :email %>
- <%= f.email_field :email, autofocus: true, autocomplete: "email" %> -
- - <% if devise_mapping.confirmable? && resource.pending_reconfirmation? %> -
Currently waiting confirmation for: <%= resource.unconfirmed_email %>
- <% end %> - -
- <%= f.label :password %> (leave blank if you don't want to change it)
- <%= f.password_field :password, autocomplete: "new-password" %> - <% if @minimum_password_length %> -
- <%= @minimum_password_length %> characters minimum - <% end %> -
- -
- <%= f.label :password_confirmation %>
- <%= f.password_field :password_confirmation, autocomplete: "new-password" %> -
- -
- <%= f.label :current_password %> (we need your current password to confirm your changes)
- <%= f.password_field :current_password, autocomplete: "current-password" %> -
- -
- <%= f.submit "Update" %> -
-<% end %> - -

Cancel my account

- -

Unhappy? <%= button_to "Cancel my account", registration_path(resource_name), data: { confirm: "Are you sure?" }, method: :delete %>

- -<%= link_to "Back", :back %> diff --git a/app/views/devise/registrations/new.html.erb b/app/views/devise/registrations/new.html.erb deleted file mode 100644 index 96817d9..0000000 --- a/app/views/devise/registrations/new.html.erb +++ /dev/null @@ -1,34 +0,0 @@ -

Sign up

- -<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %> - <%= render "devise/shared/error_messages", resource: resource %> - -
- <%= f.label :name %>
- <%= f.text_field :name %> -
- -
- <%= f.label :email %>
- <%= f.email_field :email, autofocus: true, autocomplete: "email" %> -
- -
- <%= f.label :password %> - <% if @minimum_password_length %> - (<%= @minimum_password_length %> characters minimum) - <% end %>
- <%= f.password_field :password, autocomplete: "new-password" %> -
- -
- <%= f.label :password_confirmation %>
- <%= f.password_field :password_confirmation, autocomplete: "new-password" %> -
- -
- <%= f.submit "Sign up" %> -
-<% end %> - -<%= render "devise/shared/links" %> diff --git a/app/views/devise/sessions/new.html.erb b/app/views/devise/sessions/new.html.erb deleted file mode 100644 index 43de5de..0000000 --- a/app/views/devise/sessions/new.html.erb +++ /dev/null @@ -1,27 +0,0 @@ -
-

Log in

- - <%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %> -
- <%= f.label :email %>
- <%= f.email_field :email, autofocus: true, autocomplete: "email" %> -
- -
- <%= f.label :password %>
- <%= f.password_field :password, autocomplete: "current-password" %> -
- - <% if devise_mapping.rememberable? %> -
- <%= f.check_box :remember_me %> - <%= f.label :remember_me %> -
- <% end %> - -
- <%= f.submit "Log in", class:"action"%> -
- <% end %> -
-<%= render "devise/shared/links" %> diff --git a/app/views/devise/shared/_error_messages.html.erb b/app/views/devise/shared/_error_messages.html.erb deleted file mode 100644 index ba7ab88..0000000 --- a/app/views/devise/shared/_error_messages.html.erb +++ /dev/null @@ -1,15 +0,0 @@ -<% if resource.errors.any? %> -
-

- <%= I18n.t("errors.messages.not_saved", - count: resource.errors.count, - resource: resource.class.model_name.human.downcase) - %> -

- -
-<% end %> diff --git a/app/views/devise/shared/_links.html.erb b/app/views/devise/shared/_links.html.erb deleted file mode 100644 index df7c08d..0000000 --- a/app/views/devise/shared/_links.html.erb +++ /dev/null @@ -1,27 +0,0 @@ -
- <%- if controller_name != 'sessions' %> - <%= link_to "Log in", new_session_path(resource_name) %>
- <% end %> - - <%- if devise_mapping.registerable? && controller_name != 'registrations' %> - <%= link_to "Sign up", new_registration_path(resource_name)%>
- <% end %> - - <%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %> - <%= link_to "Forgot your password?", new_password_path(resource_name) %>
- <% end %> - - <%- if devise_mapping.confirmable? && controller_name != 'confirmations' %> - <%= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name) %>
- <% end %> - - <%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %> - <%= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name) %>
- <% end %> - - <%- if devise_mapping.omniauthable? %> - <%- resource_class.omniauth_providers.each do |provider| %> - <%= link_to "Sign in with #{OmniAuth::Utils.camelize(provider)}", omniauth_authorize_path(resource_name, provider), method: :post %>
- <% end %> - <% end %> -
diff --git a/app/views/devise/unlocks/new.html.erb b/app/views/devise/unlocks/new.html.erb deleted file mode 100644 index ffc34de..0000000 --- a/app/views/devise/unlocks/new.html.erb +++ /dev/null @@ -1,16 +0,0 @@ -

Resend unlock instructions

- -<%= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %> - <%= render "devise/shared/error_messages", resource: resource %> - -
- <%= f.label :email %>
- <%= f.email_field :email, autofocus: true, autocomplete: "email" %> -
- -
- <%= f.submit "Resend unlock instructions" %> -
-<% end %> - -<%= render "devise/shared/links" %> diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 656d779..6e7f3fa 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -10,8 +10,6 @@ -

<%= notice %>

-

<%= alert %>

<%= yield %> diff --git a/config/database.yml b/config/database.yml index c0cba7d..9f0d32d 100644 --- a/config/database.yml +++ b/config/database.yml @@ -1,23 +1,86 @@ +# PostgreSQL. Versions 9.3 and up are supported. +# +# Install the pg driver: +# gem install pg +# On macOS with Homebrew: +# gem install pg -- --with-pg-config=/usr/local/bin/pg_config +# On macOS with MacPorts: +# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config +# On Windows: +# gem install pg +# Choose the win32 build. +# Install PostgreSQL and put its /bin directory on your path. +# +# Configure Using Gemfile +# gem "pg" +# default: &default adapter: postgresql encoding: unicode - host: localhost - username: postgres - password: benkis - port: 5432 - + # For details on connection pooling, see Rails configuration guide + # https://guides.rubyonrails.org/configuring.html#database-pooling pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> development: <<: *default database: blogApp_development + # The specified database role being used to connect to postgres. + # To create additional roles in postgres see `$ createuser --help`. + # When left blank, postgres will use the default role. This is + # the same name as the operating system user running Rails. + #username: blogApp + + # The password associated with the postgres role (username). + #password: + + # Connect on a TCP socket. Omitted by default since the client uses a + # domain socket that doesn't need configuration. Windows does not have + # domain sockets, so uncomment these lines. + #host: localhost + + # The TCP port the server listens on. Defaults to 5432. + # If your server runs on a different port number, change accordingly. + #port: 5432 + + # Schema search path. The server defaults to $user,public + #schema_search_path: myapp,sharedapp,public + + # Minimum log levels, in increasing order: + # debug5, debug4, debug3, debug2, debug1, + # log, notice, warning, error, fatal, and panic + # Defaults to warning. + #min_messages: notice + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. test: <<: *default database: blogApp_test +# As with config/credentials.yml, you never want to store sensitive information, +# like your database password, in your source code. If your source code is +# ever seen by anyone, they now have access to your database. +# +# Instead, provide the password or a full connection URL as an environment +# variable when you boot the app. For example: +# +# DATABASE_URL="postgres://myuser:mypass@localhost/somedatabase" +# +# If the connection URL is provided in the special DATABASE_URL environment +# variable, Rails will automatically merge its configuration values on top of +# the values provided in this file. Alternatively, you can specify a connection +# URL environment variable explicitly: +# +# production: +# url: <%= ENV["MY_APP_DATABASE_URL"] %> +# +# Read https://guides.rubyonrails.org/configuring.html#configuring-a-database +# for a full overview on how database connection configuration can be specified. +# production: <<: *default database: blogApp_production username: blogApp - password: benkis \ No newline at end of file + password: <%= ENV["BLOGAPP_DATABASE_PASSWORD"] %> diff --git a/config/environments/development.rb b/config/environments/development.rb index 494e2ed..8500f45 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -41,8 +41,6 @@ config.action_mailer.perform_caching = false - config.action_mailer.default_url_options = { host: 'localhost', port: 3000 } - # Print deprecation notices to the Rails logger. config.active_support.deprecation = :log diff --git a/config/initializers/devise.rb b/config/initializers/devise.rb deleted file mode 100644 index db176fe..0000000 --- a/config/initializers/devise.rb +++ /dev/null @@ -1,311 +0,0 @@ -# frozen_string_literal: true - -# Assuming you have not yet modified this file, each configuration option below -# is set to its default value. Note that some are commented out while others -# are not: uncommented lines are intended to protect your configuration from -# breaking changes in upgrades (i.e., in the event that future versions of -# Devise change the default values for those options). -# -# Use this hook to configure devise mailer, warden hooks and so forth. -# Many of these configuration options can be set straight in your model. -Devise.setup do |config| - # The secret key used by Devise. Devise uses this key to generate - # random tokens. Changing this key will render invalid all existing - # confirmation, reset password and unlock tokens in the database. - # Devise will use the `secret_key_base` as its `secret_key` - # by default. You can change it below and use your own secret key. - # config.secret_key = '31b14c3d4616bd96fcd6241e8ac1c1c2f945bd6abaebaa766045186f3e1d10f82893fde153a53bc2fc1afd7bf2f6cf82e7033c76607454ed1a7696da4effe707' - - # ==> Controller configuration - # Configure the parent class to the devise controllers. - # config.parent_controller = 'DeviseController' - - # ==> Mailer Configuration - # Configure the e-mail address which will be shown in Devise::Mailer, - # note that it will be overwritten if you use your own mailer class - # with default "from" parameter. - config.mailer_sender = 'please-change-me-at-config-initializers-devise@example.com' - - # Configure the class responsible to send e-mails. - # config.mailer = 'Devise::Mailer' - - # Configure the parent class responsible to send e-mails. - # config.parent_mailer = 'ActionMailer::Base' - - # ==> ORM configuration - # Load and configure the ORM. Supports :active_record (default) and - # :mongoid (bson_ext recommended) by default. Other ORMs may be - # available as additional gems. - require 'devise/orm/active_record' - - # ==> Configuration for any authentication mechanism - # Configure which keys are used when authenticating a user. The default is - # just :email. You can configure it to use [:username, :subdomain], so for - # authenticating a user, both parameters are required. Remember that those - # parameters are used only when authenticating and not when retrieving from - # session. If you need permissions, you should implement that in a before filter. - # You can also supply a hash where the value is a boolean determining whether - # or not authentication should be aborted when the value is not present. - # config.authentication_keys = [:email] - - # Configure parameters from the request object used for authentication. Each entry - # given should be a request method and it will automatically be passed to the - # find_for_authentication method and considered in your model lookup. For instance, - # if you set :request_keys to [:subdomain], :subdomain will be used on authentication. - # The same considerations mentioned for authentication_keys also apply to request_keys. - # config.request_keys = [] - - # Configure which authentication keys should be case-insensitive. - # These keys will be downcased upon creating or modifying a user and when used - # to authenticate or find a user. Default is :email. - config.case_insensitive_keys = [:email] - - # Configure which authentication keys should have whitespace stripped. - # These keys will have whitespace before and after removed upon creating or - # modifying a user and when used to authenticate or find a user. Default is :email. - config.strip_whitespace_keys = [:email] - - # Tell if authentication through request.params is enabled. True by default. - # It can be set to an array that will enable params authentication only for the - # given strategies, for example, `config.params_authenticatable = [:database]` will - # enable it only for database (email + password) authentication. - # config.params_authenticatable = true - - # Tell if authentication through HTTP Auth is enabled. False by default. - # It can be set to an array that will enable http authentication only for the - # given strategies, for example, `config.http_authenticatable = [:database]` will - # enable it only for database authentication. - # For API-only applications to support authentication "out-of-the-box", you will likely want to - # enable this with :database unless you are using a custom strategy. - # The supported strategies are: - # :database = Support basic authentication with authentication key + password - # config.http_authenticatable = false - - # If 401 status code should be returned for AJAX requests. True by default. - # config.http_authenticatable_on_xhr = true - - # The realm used in Http Basic Authentication. 'Application' by default. - # config.http_authentication_realm = 'Application' - - # It will change confirmation, password recovery and other workflows - # to behave the same regardless if the e-mail provided was right or wrong. - # Does not affect registerable. - # config.paranoid = true - - # By default Devise will store the user in session. You can skip storage for - # particular strategies by setting this option. - # Notice that if you are skipping storage for all authentication paths, you - # may want to disable generating routes to Devise's sessions controller by - # passing skip: :sessions to `devise_for` in your config/routes.rb - config.skip_session_storage = [:http_auth] - - # By default, Devise cleans up the CSRF token on authentication to - # avoid CSRF token fixation attacks. This means that, when using AJAX - # requests for sign in and sign up, you need to get a new CSRF token - # from the server. You can disable this option at your own risk. - # config.clean_up_csrf_token_on_authentication = true - - # When false, Devise will not attempt to reload routes on eager load. - # This can reduce the time taken to boot the app but if your application - # requires the Devise mappings to be loaded during boot time the application - # won't boot properly. - # config.reload_routes = true - - # ==> Configuration for :database_authenticatable - # For bcrypt, this is the cost for hashing the password and defaults to 12. If - # using other algorithms, it sets how many times you want the password to be hashed. - # The number of stretches used for generating the hashed password are stored - # with the hashed password. This allows you to change the stretches without - # invalidating existing passwords. - # - # Limiting the stretches to just one in testing will increase the performance of - # your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use - # a value less than 10 in other environments. Note that, for bcrypt (the default - # algorithm), the cost increases exponentially with the number of stretches (e.g. - # a value of 20 is already extremely slow: approx. 60 seconds for 1 calculation). - config.stretches = Rails.env.test? ? 1 : 12 - - # Set up a pepper to generate the hashed password. - # config.pepper = '20ef1d7e8e8d08a103e4ead4a941d96da0b7decb74802bd5db6b8f44d72ec51c572bbb80a77e0f2c21bc24e9b2265dfb01bd3873bebea05a0ec8c9d975d4fb52' - - # Send a notification to the original email when the user's email is changed. - # config.send_email_changed_notification = false - - # Send a notification email when the user's password is changed. - # config.send_password_change_notification = false - - # ==> Configuration for :confirmable - # A period that the user is allowed to access the website even without - # confirming their account. For instance, if set to 2.days, the user will be - # able to access the website for two days without confirming their account, - # access will be blocked just in the third day. - # You can also set it to nil, which will allow the user to access the website - # without confirming their account. - # Default is 0.days, meaning the user cannot access the website without - # confirming their account. - # config.allow_unconfirmed_access_for = 2.days - - # A period that the user is allowed to confirm their account before their - # token becomes invalid. For example, if set to 3.days, the user can confirm - # their account within 3 days after the mail was sent, but on the fourth day - # their account can't be confirmed with the token any more. - # Default is nil, meaning there is no restriction on how long a user can take - # before confirming their account. - # config.confirm_within = 3.days - - # If true, requires any email changes to be confirmed (exactly the same way as - # initial account confirmation) to be applied. Requires additional unconfirmed_email - # db field (see migrations). Until confirmed, new email is stored in - # unconfirmed_email column, and copied to email column on successful confirmation. - config.reconfirmable = true - - # Defines which key will be used when confirming an account - # config.confirmation_keys = [:email] - - # ==> Configuration for :rememberable - # The time the user will be remembered without asking for credentials again. - # config.remember_for = 2.weeks - - # Invalidates all the remember me tokens when the user signs out. - config.expire_all_remember_me_on_sign_out = true - - # If true, extends the user's remember period when remembered via cookie. - # config.extend_remember_period = false - - # Options to be passed to the created cookie. For instance, you can set - # secure: true in order to force SSL only cookies. - # config.rememberable_options = {} - - # ==> Configuration for :validatable - # Range for password length. - config.password_length = 6..128 - - # Email regex used to validate email formats. It simply asserts that - # one (and only one) @ exists in the given string. This is mainly - # to give user feedback and not to assert the e-mail validity. - config.email_regexp = /\A[^@\s]+@[^@\s]+\z/ - - # ==> Configuration for :timeoutable - # The time you want to timeout the user session without activity. After this - # time the user will be asked for credentials again. Default is 30 minutes. - # config.timeout_in = 30.minutes - - # ==> Configuration for :lockable - # Defines which strategy will be used to lock an account. - # :failed_attempts = Locks an account after a number of failed attempts to sign in. - # :none = No lock strategy. You should handle locking by yourself. - # config.lock_strategy = :failed_attempts - - # Defines which key will be used when locking and unlocking an account - # config.unlock_keys = [:email] - - # Defines which strategy will be used to unlock an account. - # :email = Sends an unlock link to the user email - # :time = Re-enables login after a certain amount of time (see :unlock_in below) - # :both = Enables both strategies - # :none = No unlock strategy. You should handle unlocking by yourself. - # config.unlock_strategy = :both - - # Number of authentication tries before locking an account if lock_strategy - # is failed attempts. - # config.maximum_attempts = 20 - - # Time interval to unlock the account if :time is enabled as unlock_strategy. - # config.unlock_in = 1.hour - - # Warn on the last attempt before the account is locked. - # config.last_attempt_warning = true - - # ==> Configuration for :recoverable - # - # Defines which key will be used when recovering the password for an account - # config.reset_password_keys = [:email] - - # Time interval you can reset your password with a reset password key. - # Don't put a too small interval or your users won't have the time to - # change their passwords. - config.reset_password_within = 6.hours - - # When set to false, does not sign a user in automatically after their password is - # reset. Defaults to true, so a user is signed in automatically after a reset. - # config.sign_in_after_reset_password = true - - # ==> Configuration for :encryptable - # Allow you to use another hashing or encryption algorithm besides bcrypt (default). - # You can use :sha1, :sha512 or algorithms from others authentication tools as - # :clearance_sha1, :authlogic_sha512 (then you should set stretches above to 20 - # for default behavior) and :restful_authentication_sha1 (then you should set - # stretches to 10, and copy REST_AUTH_SITE_KEY to pepper). - # - # Require the `devise-encryptable` gem when using anything other than bcrypt - # config.encryptor = :sha512 - - # ==> Scopes configuration - # Turn scoped views on. Before rendering "sessions/new", it will first check for - # "users/sessions/new". It's turned off by default because it's slower if you - # are using only default views. - # config.scoped_views = false - - # Configure the default scope given to Warden. By default it's the first - # devise role declared in your routes (usually :user). - # config.default_scope = :user - - # Set this configuration to false if you want /users/sign_out to sign out - # only the current scope. By default, Devise signs out all scopes. - # config.sign_out_all_scopes = true - - # ==> Navigation configuration - # Lists the formats that should be treated as navigational. Formats like - # :html, should redirect to the sign in page when the user does not have - # access, but formats like :xml or :json, should return 401. - # - # If you have any extra navigational formats, like :iphone or :mobile, you - # should add them to the navigational formats lists. - # - # The "*/*" below is required to match Internet Explorer requests. - # config.navigational_formats = ['*/*', :html] - - # The default HTTP method used to sign out a resource. Default is :delete. - config.sign_out_via = :delete - - # ==> OmniAuth - # Add a new OmniAuth provider. Check the wiki for more information on setting - # up on your models and hooks. - # config.omniauth :github, 'APP_ID', 'APP_SECRET', scope: 'user,public_repo' - - # ==> Warden configuration - # If you want to use other strategies, that are not supported by Devise, or - # change the failure app, you can configure them inside the config.warden block. - # - # config.warden do |manager| - # manager.intercept_401 = false - # manager.default_strategies(scope: :user).unshift :some_external_strategy - # end - - # ==> Mountable engine configurations - # When using Devise inside an engine, let's call it `MyEngine`, and this engine - # is mountable, there are some extra configurations to be taken into account. - # The following options are available, assuming the engine is mounted as: - # - # mount MyEngine, at: '/my_engine' - # - # The router that invoked `devise_for`, in the example above, would be: - # config.router_name = :my_engine - # - # When using OmniAuth, Devise cannot automatically set OmniAuth path, - # so you need to do it manually. For the users scope, it would be: - # config.omniauth_path_prefix = '/my_engine/users/auth' - - # ==> Turbolinks configuration - # If your app is using Turbolinks, Turbolinks::Controller needs to be included to make redirection work correctly: - # - # ActiveSupport.on_load(:devise_failure_app) do - # include Turbolinks::Controller - # end - - # ==> Configuration for :registerable - - # When set to false, does not sign a user in automatically after their password is - # changed. Defaults to true, so a user is signed in automatically after changing a password. - # config.sign_in_after_change_password = true -end diff --git a/config/locales/devise.en.yml b/config/locales/devise.en.yml deleted file mode 100644 index 260e1c4..0000000 --- a/config/locales/devise.en.yml +++ /dev/null @@ -1,65 +0,0 @@ -# Additional translations at https://github.com/heartcombo/devise/wiki/I18n - -en: - devise: - confirmations: - confirmed: "Your email address has been successfully confirmed." - send_instructions: "You will receive an email with instructions for how to confirm your email address in a few minutes." - send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions for how to confirm your email address in a few minutes." - failure: - already_authenticated: "You are already signed in." - inactive: "Your account is not activated yet." - invalid: "Invalid %{authentication_keys} or password." - locked: "Your account is locked." - last_attempt: "You have one more attempt before your account is locked." - not_found_in_database: "Invalid %{authentication_keys} or password." - timeout: "Your session expired. Please sign in again to continue." - unauthenticated: "You need to sign in or sign up before continuing." - unconfirmed: "You have to confirm your email address before continuing." - mailer: - confirmation_instructions: - subject: "Confirmation instructions" - reset_password_instructions: - subject: "Reset password instructions" - unlock_instructions: - subject: "Unlock instructions" - email_changed: - subject: "Email Changed" - password_change: - subject: "Password Changed" - omniauth_callbacks: - failure: "Could not authenticate you from %{kind} because \"%{reason}\"." - success: "Successfully authenticated from %{kind} account." - passwords: - no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided." - send_instructions: "You will receive an email with instructions on how to reset your password in a few minutes." - send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes." - updated: "Your password has been changed successfully. You are now signed in." - updated_not_active: "Your password has been changed successfully." - registrations: - destroyed: "Bye! Your account has been successfully cancelled. We hope to see you again soon." - signed_up: "Welcome! You have signed up successfully." - signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated." - signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked." - signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please follow the link to activate your account." - update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirmation link to confirm your new email address." - updated: "Your account has been updated successfully." - updated_but_not_signed_in: "Your account has been updated successfully, but since your password was changed, you need to sign in again." - sessions: - signed_in: "Signed in successfully." - signed_out: "Signed out successfully." - already_signed_out: "Signed out successfully." - unlocks: - send_instructions: "You will receive an email with instructions for how to unlock your account in a few minutes." - send_paranoid_instructions: "If your account exists, you will receive an email with instructions for how to unlock it in a few minutes." - unlocked: "Your account has been unlocked successfully. Please sign in to continue." - errors: - messages: - already_confirmed: "was already confirmed, please try signing in" - confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one" - expired: "has expired, please request a new one" - not_found: "not found" - not_locked: "was not locked" - not_saved: - one: "1 error prohibited this %{resource} from being saved:" - other: "%{count} errors prohibited this %{resource} from being saved:" diff --git a/config/routes.rb b/config/routes.rb index 3a17295..a3f3fcd 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,5 +1,4 @@ Rails.application.routes.draw do - devise_for :users # Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html # Defines the root path route ("/") diff --git a/db/migrate/20221201181042_comments.rb b/db/migrate/20221201181042_comments.rb new file mode 100644 index 0000000..a792dac --- /dev/null +++ b/db/migrate/20221201181042_comments.rb @@ -0,0 +1,9 @@ +class Comments < ActiveRecord::Migration[7.0] + def up + drop_table :comments + end + + def down + raise ActiveRecord::IrreversibleMigration + end +end diff --git a/db/migrate/20221201181632_drop_users_table.rb b/db/migrate/20221201181632_drop_users_table.rb new file mode 100644 index 0000000..2541c37 --- /dev/null +++ b/db/migrate/20221201181632_drop_users_table.rb @@ -0,0 +1,9 @@ +class DropUsersTable < ActiveRecord::Migration[7.0] + def up + drop_table :users + end + + def down + raise ActiveRecord::IrreversibleMigration + end +end diff --git a/db/migrate/20221201181750_drop_comments_table.rb b/db/migrate/20221201181750_drop_comments_table.rb new file mode 100644 index 0000000..ccfbf30 --- /dev/null +++ b/db/migrate/20221201181750_drop_comments_table.rb @@ -0,0 +1,9 @@ +class DropCommentsTable < ActiveRecord::Migration[7.0] + def up + drop_table :comments + end + + def down + raise ActiveRecord::IrreversibleMigration + end +end diff --git a/db/migrate/20221201182012_drop_posts_table.rb b/db/migrate/20221201182012_drop_posts_table.rb new file mode 100644 index 0000000..dd319c1 --- /dev/null +++ b/db/migrate/20221201182012_drop_posts_table.rb @@ -0,0 +1,9 @@ +class DropPostsTable < ActiveRecord::Migration[7.0] + def up + drop_table :posts + end + + def down + raise ActiveRecord::IrreversibleMigration + end +end diff --git a/db/migrate/20221201190518_add_foreign_key_to_likes.rb b/db/migrate/20221201190518_add_foreign_key_to_likes.rb new file mode 100644 index 0000000..26983ae --- /dev/null +++ b/db/migrate/20221201190518_add_foreign_key_to_likes.rb @@ -0,0 +1,5 @@ +class AddForeignKeyToLikes < ActiveRecord::Migration[7.0] + def change + add_reference :likes, :posts, null: false, index: true, foreign_key: true + end +end diff --git a/db/migrate/20221201200842_remove_users_from_likes.rb b/db/migrate/20221201200842_remove_users_from_likes.rb new file mode 100644 index 0000000..2de1d54 --- /dev/null +++ b/db/migrate/20221201200842_remove_users_from_likes.rb @@ -0,0 +1,5 @@ +class RemoveUsersFromLikes < ActiveRecord::Migration[7.0] + def change + remove_reference :likes, :users, null: false, foreign_key: true + end +end diff --git a/db/migrate/20221214221212_add_devise_to_users.rb b/db/migrate/20221214221212_add_devise_to_users.rb deleted file mode 100644 index 9256799..0000000 --- a/db/migrate/20221214221212_add_devise_to_users.rb +++ /dev/null @@ -1,51 +0,0 @@ -# frozen_string_literal: true - -class AddDeviseToUsers < ActiveRecord::Migration[7.0] - def self.up - change_table :users do |t| - ## Database authenticatable - t.string :email, null: false, default: "" - t.string :encrypted_password, null: false, default: "" - - ## Recoverable - t.string :reset_password_token - t.datetime :reset_password_sent_at - - ## Rememberable - t.datetime :remember_created_at - - ## Trackable - # t.integer :sign_in_count, default: 0, null: false - # t.datetime :current_sign_in_at - # t.datetime :last_sign_in_at - # t.string :current_sign_in_ip - # t.string :last_sign_in_ip - - ## Confirmable - t.string :confirmation_token - t.datetime :confirmed_at - t.datetime :confirmation_sent_at - t.string :unconfirmed_email # Only if using reconfirmable - - ## Lockable - # t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts - # t.string :unlock_token # Only if unlock strategy is :email or :both - # t.datetime :locked_at - - - # Uncomment below if timestamps were not included in your original model. - # t.timestamps null: false - end - - add_index :users, :email - add_index :users, :reset_password_token, unique: true - # add_index :users, :confirmation_token, unique: true - # add_index :users, :unlock_token, unique: true - end - - def self.down - # By default, we don't want to make any assumption about how to roll back a migration when your - # model already existed. Please edit below which fields you would like to remove in this migration. - raise ActiveRecord::IrreversibleMigration - end -end diff --git a/db/schema.rb b/db/schema.rb index 04c68e0..a47da60 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.0].define(version: 2022_12_14_221212) do +ActiveRecord::Schema[7.0].define(version: 2022_12_03_145008) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -51,17 +51,6 @@ t.integer "posts_counter", default: 0 t.datetime "created_at", null: false t.datetime "updated_at", null: false - t.string "email", default: "", null: false - t.string "encrypted_password", default: "", null: false - t.string "reset_password_token" - t.datetime "reset_password_sent_at" - t.datetime "remember_created_at" - t.string "confirmation_token" - t.datetime "confirmed_at" - t.datetime "confirmation_sent_at" - t.string "unconfirmed_email" - t.index ["email"], name: "index_users_on_email" - t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true end add_foreign_key "comments", "posts" diff --git a/log/development.log b/log/development.log index 399f2d8..0247490 100644 --- a/log/development.log +++ b/log/development.log @@ -29301,4042 +29301,3 @@ Processing by PostsController#index as HTML Completed 200 OK in 74ms (Views: 64.8ms | ActiveRecord: 4.8ms | Allocations: 17691) -  (1055.0ms) CREATE DATABASE "blogApp_development" ENCODING = 'unicode' -  (974.3ms) CREATE DATABASE "blogApp_test" ENCODING = 'unicode' -  (131.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY) -  (109.0ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) -  (0.4ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to Comments (20221201181042) - TRANSACTION (0.4ms) BEGIN -  (1.0ms) DROP TABLE "comments" - TRANSACTION (0.2ms) ROLLBACK -  (0.4ms) SELECT pg_advisory_unlock(4753324116888153030) -  (20.7ms) CREATE DATABASE "blogApp_development" ENCODING = 'unicode' -  (0.7ms) CREATE DATABASE "blogApp_test" ENCODING = 'unicode' -  (1068.5ms) CREATE DATABASE "blogApp_development" ENCODING = 'unicode' -  (1090.4ms) CREATE DATABASE "blogApp_test" ENCODING = 'unicode' -  (159.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY) -  (130.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) -  (0.5ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to CreateUsers (20221201184100) - TRANSACTION (0.3ms) BEGIN -  (125.7ms) CREATE TABLE "users" ("id" bigserial primary key, "name" character varying, "photo" character varying, "bio" character varying, "posts_counter" integer, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::SchemaMigration Create (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201184100"]] - TRANSACTION (21.3ms) COMMIT -Migrating to CreateLikes (20221201190339) - TRANSACTION (0.3ms) BEGIN -  (68.6ms) CREATE TABLE "likes" ("id" bigserial primary key, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201190339"]] - TRANSACTION (21.8ms) COMMIT -Migrating to AddForeignKeyToLikes (20221201190518) - TRANSACTION (0.3ms) BEGIN -  (0.6ms) ALTER TABLE "likes" ADD "posts_id" bigint NOT NULL -  (67.0ms) CREATE INDEX "index_likes_on_posts_id" ON "likes" ("posts_id") -  (1.5ms) ALTER TABLE "likes" ADD CONSTRAINT "fk_rails_b1afef8225" -FOREIGN KEY ("posts_id") - REFERENCES "posts" ("id") - - TRANSACTION (0.3ms) ROLLBACK -  (0.4ms) SELECT pg_advisory_unlock(4753324116888153030) -  (1012.4ms) CREATE DATABASE "blogApp_development" ENCODING = 'unicode' -  (1232.9ms) CREATE DATABASE "blogApp_test" ENCODING = 'unicode' -  (158.5ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY) -  (141.7ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) -  (0.4ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to CreateUsers (20221201184100) - TRANSACTION (0.4ms) BEGIN -  (109.7ms) CREATE TABLE "users" ("id" bigserial primary key, "name" character varying, "photo" character varying, "bio" character varying, "posts_counter" integer, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::SchemaMigration Create (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201184100"]] - TRANSACTION (25.7ms) COMMIT -Migrating to CreateLikes (20221201190339) - TRANSACTION (0.4ms) BEGIN -  (41.3ms) CREATE TABLE "likes" ("id" bigserial primary key, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201190339"]] - TRANSACTION (28.5ms) COMMIT -Migrating to CreatePosts (20221201190905) - TRANSACTION (0.3ms) BEGIN -  (130.0ms) CREATE TABLE "posts" ("id" bigserial primary key, "title" character varying, "text" character varying, "comments_counter" integer, "likes_counter" integer, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201190905"]] - TRANSACTION (26.0ms) COMMIT -Migrating to AddUsersToPosts (20221201191540) - TRANSACTION (0.3ms) BEGIN -  (0.8ms) ALTER TABLE "posts" ADD "users_id" bigint NOT NULL -  (84.2ms) CREATE INDEX "index_posts_on_users_id" ON "posts" ("users_id") -  (32.4ms) ALTER TABLE "posts" ADD CONSTRAINT "fk_rails_403c3577f5" -FOREIGN KEY ("users_id") - REFERENCES "users" ("id") - - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201191540"]] - TRANSACTION (38.3ms) COMMIT -Migrating to AddAuthorToLikes (20221201192340) - TRANSACTION (0.3ms) BEGIN -  (0.6ms) ALTER TABLE "likes" ADD "author_id" bigint NOT NULL -  (50.7ms) CREATE INDEX "index_likes_on_author_id" ON "likes" ("author_id") -  (1.5ms) ALTER TABLE "likes" ADD CONSTRAINT "fk_rails_1f2302367a" -FOREIGN KEY ("author_id") - REFERENCES "users" ("id") - - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201192340"]] - TRANSACTION (20.3ms) COMMIT -Migrating to CreateComments (20221201194057) - TRANSACTION (0.3ms) BEGIN -  (134.8ms) CREATE TABLE "comments" ("id" bigserial primary key, "text" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201194057"]] - TRANSACTION (22.1ms) COMMIT -Migrating to AddAuthorToComments (20221201194313) - TRANSACTION (0.3ms) BEGIN -  (0.6ms) ALTER TABLE "comments" ADD "author_id" bigint NOT NULL -  (88.3ms) CREATE INDEX "index_comments_on_author_id" ON "comments" ("author_id") -  (1.7ms) ALTER TABLE "comments" ADD CONSTRAINT "fk_rails_f44b1e3c8a" -FOREIGN KEY ("author_id") - REFERENCES "users" ("id") - - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201194313"]] - TRANSACTION (17.8ms) COMMIT -Migrating to AddAuthorToPosts (20221201194449) - TRANSACTION (0.4ms) BEGIN -  (0.8ms) ALTER TABLE "posts" ADD "author_id" bigint NOT NULL -  (77.4ms) CREATE INDEX "index_posts_on_author_id" ON "posts" ("author_id") -  (2.0ms) ALTER TABLE "posts" ADD CONSTRAINT "fk_rails_04d13ef8c7" -FOREIGN KEY ("author_id") - REFERENCES "users" ("id") - - ActiveRecord::SchemaMigration Create (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201194449"]] - TRANSACTION (18.0ms) COMMIT -Migrating to AddPostsToComments (20221201194640) - TRANSACTION (0.3ms) BEGIN -  (0.7ms) ALTER TABLE "comments" ADD "posts_id" bigint NOT NULL -  (79.2ms) CREATE INDEX "index_comments_on_posts_id" ON "comments" ("posts_id") -  (2.0ms) ALTER TABLE "comments" ADD CONSTRAINT "fk_rails_581572ac1f" -FOREIGN KEY ("posts_id") - REFERENCES "posts" ("id") - - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201194640"]] - TRANSACTION (15.8ms) COMMIT -Migrating to AddPostsToLikes (20221201194706) - TRANSACTION (0.5ms) BEGIN -  (0.7ms) ALTER TABLE "likes" ADD "posts_id" bigint NOT NULL -  (59.2ms) CREATE INDEX "index_likes_on_posts_id" ON "likes" ("posts_id") -  (1.5ms) ALTER TABLE "likes" ADD CONSTRAINT "fk_rails_b1afef8225" -FOREIGN KEY ("posts_id") - REFERENCES "posts" ("id") - - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201194706"]] - TRANSACTION (25.2ms) COMMIT -Migrating to RemoveUsersFromLikes (20221201200842) - TRANSACTION (0.4ms) BEGIN - TRANSACTION (0.2ms) ROLLBACK -  (0.6ms) SELECT pg_advisory_unlock(4753324116888153030) -  (0.3ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to RemoveUsersFromPosts (20221201200927) - TRANSACTION (0.4ms) BEGIN -  (3.3ms) ALTER TABLE "posts" DROP CONSTRAINT "fk_rails_403c3577f5" -  (42.2ms) ALTER TABLE "posts" DROP COLUMN "users_id" - ActiveRecord::SchemaMigration Create (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201200927"]] - TRANSACTION (36.1ms) COMMIT -Migrating to RemovePostsFromComments (20221202145640) - TRANSACTION (0.5ms) BEGIN -  (1.1ms) ALTER TABLE "comments" DROP CONSTRAINT "fk_rails_581572ac1f" -  (0.6ms) ALTER TABLE "comments" DROP COLUMN "posts_id" - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221202145640"]] - TRANSACTION (38.3ms) COMMIT -Migrating to AddPostToComments (20221202145748) - TRANSACTION (0.4ms) BEGIN -  (0.6ms) ALTER TABLE "comments" ADD "post_id" bigint NOT NULL -  (90.6ms) CREATE INDEX "index_comments_on_post_id" ON "comments" ("post_id") -  (2.0ms) ALTER TABLE "comments" ADD CONSTRAINT "fk_rails_2fd19c0db7" -FOREIGN KEY ("post_id") - REFERENCES "posts" ("id") - - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221202145748"]] - TRANSACTION (26.4ms) COMMIT -Migrating to AddDefaultValueToPostsCounterForUsers (20221203135958) - TRANSACTION (0.3ms) BEGIN -  (0.6ms) ALTER TABLE "users" ALTER COLUMN "posts_counter" SET DEFAULT 0 - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221203135958"]] - TRANSACTION (37.4ms) COMMIT -Migrating to AddDefaultValueToLikesCounterForPosts (20221203140321) - TRANSACTION (0.3ms) BEGIN -  (0.5ms) ALTER TABLE "posts" ALTER COLUMN "likes_counter" SET DEFAULT 0 - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221203140321"]] - TRANSACTION (32.4ms) COMMIT -Migrating to AddDefaultValueToCommentsCounterForPosts (20221203140408) - TRANSACTION (0.3ms) BEGIN -  (0.4ms) ALTER TABLE "posts" ALTER COLUMN "comments_counter" SET DEFAULT 0 - ActiveRecord::SchemaMigration Create (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221203140408"]] - TRANSACTION (44.9ms) COMMIT -Migrating to RemovePostsFromLikes (20221203144840) - TRANSACTION (0.3ms) BEGIN -  (1.1ms) ALTER TABLE "likes" DROP CONSTRAINT "fk_rails_b1afef8225" -  (0.7ms) ALTER TABLE "likes" DROP COLUMN "posts_id" - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221203144840"]] - TRANSACTION (50.1ms) COMMIT -Migrating to AddPostToLikes (20221203145008) - TRANSACTION (0.3ms) BEGIN -  (0.6ms) ALTER TABLE "likes" ADD "post_id" bigint NOT NULL -  (82.5ms) CREATE INDEX "index_likes_on_post_id" ON "likes" ("post_id") -  (1.7ms) ALTER TABLE "likes" ADD CONSTRAINT "fk_rails_87a8aac469" -FOREIGN KEY ("post_id") - REFERENCES "posts" ("id") - - ActiveRecord::SchemaMigration Create (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221203145008"]] - TRANSACTION (23.0ms) COMMIT - ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - TRANSACTION (0.3ms) BEGIN - ActiveRecord::InternalMetadata Create (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2022-12-14 22:00:32.483982"], ["updated_at", "2022-12-14 22:00:32.483982"]] - TRANSACTION (17.1ms) COMMIT -  (0.6ms) SELECT pg_advisory_unlock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - User Load (0.5ms) SELECT "users".* FROM "users" -Started GET "/" for 127.0.0.1 at 2022-12-15 00:01:31 +0200 - ActiveRecord::SchemaMigration Pluck (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Processing by UsersController#index as HTML - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (1.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/index.html.erb within layouts/application (Duration: 5.2ms | Allocations: 1503) - Rendered layout layouts/application.html.erb (Duration: 202.4ms | Allocations: 35519) -Completed 200 OK in 317ms (Views: 206.2ms | ActiveRecord: 7.8ms | Allocations: 46730) - - -Started GET "/posts/new" for 127.0.0.1 at 2022-12-15 00:01:34 +0200 -Processing by PostsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering posts/new.html.erb within layouts/application - Rendered posts/new.html.erb within layouts/application (Duration: 54.2ms | Allocations: 3022) - Rendered layout layouts/application.html.erb (Duration: 57.2ms | Allocations: 4221) -Completed 200 OK in 145ms (Views: 62.0ms | ActiveRecord: 9.1ms | Allocations: 25589) - - -Started POST "/posts/new" for 127.0.0.1 at 2022-12-15 00:01:40 +0200 -Processing by PostsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "post"=>{"title"=>"jjcjc", "text"=>"dffff"}, "commit"=>"Create Post"} - User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' -No template found for PostsController#create, rendering head :no_content -Completed 204 No Content in 112ms (ActiveRecord: 3.9ms | Allocations: 5666) - - -Started POST "/posts/new" for 127.0.0.1 at 2022-12-15 00:01:44 +0200 -Processing by PostsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "post"=>{"title"=>"jjcjc", "text"=>"dffff"}, "commit"=>"Create Post"} - User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' -No template found for PostsController#create, rendering head :no_content -Completed 204 No Content in 7ms (ActiveRecord: 0.5ms | Allocations: 1887) - - -Started POST "/posts/new" for 127.0.0.1 at 2022-12-15 00:01:45 +0200 -Processing by PostsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "post"=>{"title"=>"jjcjc", "text"=>"dffff"}, "commit"=>"Create Post"} - User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' -No template found for PostsController#create, rendering head :no_content -Completed 204 No Content in 5ms (ActiveRecord: 0.4ms | Allocations: 1728) - - -Started POST "/posts/new" for 127.0.0.1 at 2022-12-15 00:01:45 +0200 -Processing by PostsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "post"=>{"title"=>"jjcjc", "text"=>"dffff"}, "commit"=>"Create Post"} - User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' -No template found for PostsController#create, rendering head :no_content -Completed 204 No Content in 6ms (ActiveRecord: 0.4ms | Allocations: 1694) - - -Started POST "/posts/new" for 127.0.0.1 at 2022-12-15 00:01:45 +0200 -Processing by PostsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "post"=>{"title"=>"jjcjc", "text"=>"dffff"}, "commit"=>"Create Post"} - User Load (0.9ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' -No template found for PostsController#create, rendering head :no_content -Completed 204 No Content in 5ms (ActiveRecord: 0.9ms | Allocations: 1692) - - -Started POST "/posts/new" for 127.0.0.1 at 2022-12-15 00:01:45 +0200 -Processing by PostsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "post"=>{"title"=>"jjcjc", "text"=>"dffff"}, "commit"=>"Create Post"} - User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' -No template found for PostsController#create, rendering head :no_content -Completed 204 No Content in 22ms (ActiveRecord: 0.5ms | Allocations: 1697) - - -Started POST "/posts/new" for 127.0.0.1 at 2022-12-15 00:01:46 +0200 -Processing by PostsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "post"=>{"title"=>"jjcjc", "text"=>"dffff"}, "commit"=>"Create Post"} - User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' -No template found for PostsController#create, rendering head :no_content -Completed 204 No Content in 9ms (ActiveRecord: 0.4ms | Allocations: 1703) - - -Started POST "/posts/new" for 127.0.0.1 at 2022-12-15 00:01:46 +0200 -Processing by PostsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "post"=>{"title"=>"jjcjc", "text"=>"dffff"}, "commit"=>"Create Post"} - User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' -No template found for PostsController#create, rendering head :no_content -Completed 204 No Content in 5ms (ActiveRecord: 0.3ms | Allocations: 1700) - - - TRANSACTION (0.2ms) BEGIN - User Create (1.0ms) INSERT INTO "users" ("name", "photo", "bio", "posts_counter", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Tom"], ["photo", "https://unsplash.com/photos/F_-0BxGuVvo"], ["bio", "Teacher from Mexico."], ["posts_counter", 0], ["created_at", "2022-12-14 22:03:15.453972"], ["updated_at", "2022-12-14 22:03:15.453972"]] - TRANSACTION (46.2ms) COMMIT - TRANSACTION (0.6ms) BEGIN - User Create (3.8ms) INSERT INTO "users" ("name", "photo", "bio", "posts_counter", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Lilly"], ["photo", "https://unsplash.com/photos/F_-0BxGuVvo"], ["bio", "Teacher from Poland."], ["posts_counter", 0], ["created_at", "2022-12-14 22:03:31.257229"], ["updated_at", "2022-12-14 22:03:31.257229"]] - TRANSACTION (39.0ms) COMMIT -Started GET "/" for 127.0.0.1 at 2022-12-15 00:03:43 +0200 -Processing by UsersController#index as HTML - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (3.0ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/_user.html.erb (Duration: 1.7ms | Allocations: 366) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 51) - Rendered users/index.html.erb within layouts/application (Duration: 28.1ms | Allocations: 15261) - Rendered layout layouts/application.html.erb (Duration: 31.6ms | Allocations: 16697) -Completed 200 OK in 34ms (Views: 29.6ms | ActiveRecord: 3.0ms | Allocations: 17068) - - -Started GET "/users/2" for 127.0.0.1 at 2022-12-15 00:03:48 +0200 -Processing by UsersController#show as HTML - Parameters: {"id"=>"2"} - User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 2], ["LIMIT", 1]] - ↳ app/controllers/users_controller.rb:7:in `show' - Rendering layout layouts/application.html.erb - Rendering users/show.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 112) - Post Load (0.7ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 2], ["LIMIT", 3]] - ↳ app/views/users/show.html.erb:9 - Rendered users/show.html.erb within layouts/application (Duration: 36.5ms | Allocations: 4629) - Rendered layout layouts/application.html.erb (Duration: 40.0ms | Allocations: 6117) -Completed 200 OK in 57ms (Views: 40.0ms | ActiveRecord: 1.1ms | Allocations: 10897) - - -Started GET "/users/2/posts" for 127.0.0.1 at 2022-12-15 00:03:52 +0200 -Processing by PostsController#index as HTML - Parameters: {"user_id"=>"2"} - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 2], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:3:in `index' - Rendering layout layouts/application.html.erb - Rendering posts/index.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 90) - Post Load (1.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 2], ["LIMIT", 3]] - ↳ app/views/posts/index.html.erb:5:in `each_with_index' - Rendered posts/index.html.erb within layouts/application (Duration: 5.8ms | Allocations: 1188) - Rendered layout layouts/application.html.erb (Duration: 8.4ms | Allocations: 2519) -Completed 200 OK in 12ms (Views: 8.1ms | ActiveRecord: 1.5ms | Allocations: 3451) - - -Started GET "/users/2" for 127.0.0.1 at 2022-12-15 00:03:57 +0200 -Processing by UsersController#show as HTML - Parameters: {"id"=>"2"} - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 2], ["LIMIT", 1]] - ↳ app/controllers/users_controller.rb:7:in `show' - Rendering layout layouts/application.html.erb - Rendering users/show.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 67) - Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 2], ["LIMIT", 3]] - ↳ app/views/users/show.html.erb:9 - Rendered users/show.html.erb within layouts/application (Duration: 4.3ms | Allocations: 869) - Rendered layout layouts/application.html.erb (Duration: 7.5ms | Allocations: 2211) -Completed 200 OK in 12ms (Views: 7.9ms | ActiveRecord: 1.1ms | Allocations: 2981) - - -Started GET "/posts/new" for 127.0.0.1 at 2022-12-15 00:04:10 +0200 -Processing by PostsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering posts/new.html.erb within layouts/application - Rendered posts/new.html.erb within layouts/application (Duration: 1.9ms | Allocations: 873) - Rendered layout layouts/application.html.erb (Duration: 4.3ms | Allocations: 1902) -Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.0ms | Allocations: 2225) - - -Started POST "/posts/new" for 127.0.0.1 at 2022-12-15 00:04:14 +0200 -Processing by PostsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "post"=>{"title"=>"jjcjc", "text"=>"cccc"}, "commit"=>"Create Post"} - User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' - TRANSACTION (0.7ms) BEGIN - ↳ app/controllers/posts_controller.rb:31:in `create' - Post Create (78.0ms) INSERT INTO "posts" ("title", "text", "comments_counter", "likes_counter", "created_at", "updated_at", "author_id") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["title", "jjcjc"], ["text", "cccc"], ["comments_counter", 0], ["likes_counter", 0], ["created_at", "2022-12-14 22:04:14.628258"], ["updated_at", "2022-12-14 22:04:14.628258"], ["author_id", 1]] - ↳ app/controllers/posts_controller.rb:31:in `create' - Post Count (30.3ms) SELECT COUNT(*) FROM "posts" WHERE "posts"."author_id" = $1 [["author_id", 1]] - ↳ app/models/post.rb:13:in `update_posts_counter' - User Update (0.6ms) UPDATE "users" SET "posts_counter" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["posts_counter", 1], ["updated_at", "2022-12-14 22:04:14.745873"], ["id", 1]] - ↳ app/models/post.rb:13:in `update_posts_counter' - TRANSACTION (43.2ms) COMMIT - ↳ app/controllers/posts_controller.rb:31:in `create' -Redirected to http://127.0.0.1:3000/posts/new -Completed 302 Found in 171ms (ActiveRecord: 153.1ms | Allocations: 6052) - - -Started GET "/posts/new" for 127.0.0.1 at 2022-12-15 00:04:14 +0200 -Processing by PostsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering posts/new.html.erb within layouts/application - Rendered posts/new.html.erb within layouts/application (Duration: 2.5ms | Allocations: 820) - Rendered layout layouts/application.html.erb (Duration: 5.8ms | Allocations: 1848) -Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.0ms | Allocations: 2167) - - -Started GET "/users/1" for 127.0.0.1 at 2022-12-15 00:04:21 +0200 -Processing by UsersController#show as HTML - Parameters: {"id"=>"1"} - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/users_controller.rb:7:in `show' - Rendering layout layouts/application.html.erb - Rendering users/show.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 66) - Post Load (1.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 1], ["LIMIT", 3]] - ↳ app/views/users/show.html.erb:9 - Comment Count (0.7ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.8ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 116.1ms | Allocations: 11527) - Rendered users/show.html.erb within layouts/application (Duration: 122.0ms | Allocations: 12573) - Rendered layout layouts/application.html.erb (Duration: 125.7ms | Allocations: 14063) -Completed 200 OK in 130ms (Views: 120.6ms | ActiveRecord: 6.5ms | Allocations: 14848) - - -Started GET "/users/1" for 127.0.0.1 at 2022-12-15 00:04:25 +0200 -Processing by UsersController#show as HTML - Parameters: {"id"=>"1"} - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/users_controller.rb:7:in `show' - Rendering layout layouts/application.html.erb - Rendering users/show.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 76) - Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 1], ["LIMIT", 3]] - ↳ app/views/users/show.html.erb:9 - Comment Count (0.5ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.5ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 5.3ms | Allocations: 1406) - Rendered users/show.html.erb within layouts/application (Duration: 10.1ms | Allocations: 2385) - Rendered layout layouts/application.html.erb (Duration: 13.1ms | Allocations: 3710) -Completed 200 OK in 17ms (Views: 12.6ms | ActiveRecord: 2.0ms | Allocations: 4538) - - -Started GET "/posts/new" for 127.0.0.1 at 2022-12-15 00:04:30 +0200 -Processing by PostsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering posts/new.html.erb within layouts/application - Rendered posts/new.html.erb within layouts/application (Duration: 2.3ms | Allocations: 867) - Rendered layout layouts/application.html.erb (Duration: 5.5ms | Allocations: 1895) -Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms | Allocations: 2218) - - -Started POST "/posts/new" for 127.0.0.1 at 2022-12-15 00:04:33 +0200 -Processing by PostsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "post"=>{"title"=>"ddf", "text"=>"ffff"}, "commit"=>"Create Post"} - User Load (2.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' - TRANSACTION (0.3ms) BEGIN - ↳ app/controllers/posts_controller.rb:31:in `create' - Post Create (0.8ms) INSERT INTO "posts" ("title", "text", "comments_counter", "likes_counter", "created_at", "updated_at", "author_id") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["title", "ddf"], ["text", "ffff"], ["comments_counter", 0], ["likes_counter", 0], ["created_at", "2022-12-14 22:04:33.905141"], ["updated_at", "2022-12-14 22:04:33.905141"], ["author_id", 1]] - ↳ app/controllers/posts_controller.rb:31:in `create' - Post Count (0.8ms) SELECT COUNT(*) FROM "posts" WHERE "posts"."author_id" = $1 [["author_id", 1]] - ↳ app/models/post.rb:13:in `update_posts_counter' - User Update (1.4ms) UPDATE "users" SET "posts_counter" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["posts_counter", 2], ["updated_at", "2022-12-14 22:04:33.915267"], ["id", 1]] - ↳ app/models/post.rb:13:in `update_posts_counter' - TRANSACTION (186.9ms) COMMIT - ↳ app/controllers/posts_controller.rb:31:in `create' -Redirected to http://127.0.0.1:3000/posts/new -Completed 302 Found in 219ms (ActiveRecord: 192.6ms | Allocations: 4610) - - -Started GET "/posts/new" for 127.0.0.1 at 2022-12-15 00:04:34 +0200 -Processing by PostsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering posts/new.html.erb within layouts/application - Rendered posts/new.html.erb within layouts/application (Duration: 2.6ms | Allocations: 824) - Rendered layout layouts/application.html.erb (Duration: 6.1ms | Allocations: 1852) -Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.0ms | Allocations: 2171) - - -Started POST "/posts/new" for 127.0.0.1 at 2022-12-15 00:04:38 +0200 -Processing by PostsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "post"=>{"title"=>"gtgtrg", "text"=>"fffgg"}, "commit"=>"Create Post"} - User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' - TRANSACTION (0.4ms) BEGIN - ↳ app/controllers/posts_controller.rb:31:in `create' - Post Create (1.8ms) INSERT INTO "posts" ("title", "text", "comments_counter", "likes_counter", "created_at", "updated_at", "author_id") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["title", "gtgtrg"], ["text", "fffgg"], ["comments_counter", 0], ["likes_counter", 0], ["created_at", "2022-12-14 22:04:38.286407"], ["updated_at", "2022-12-14 22:04:38.286407"], ["author_id", 1]] - ↳ app/controllers/posts_controller.rb:31:in `create' - Post Count (0.6ms) SELECT COUNT(*) FROM "posts" WHERE "posts"."author_id" = $1 [["author_id", 1]] - ↳ app/models/post.rb:13:in `update_posts_counter' - User Update (0.6ms) UPDATE "users" SET "posts_counter" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["posts_counter", 3], ["updated_at", "2022-12-14 22:04:38.297699"], ["id", 1]] - ↳ app/models/post.rb:13:in `update_posts_counter' - TRANSACTION (117.3ms) COMMIT - ↳ app/controllers/posts_controller.rb:31:in `create' -Redirected to http://127.0.0.1:3000/posts/new -Completed 302 Found in 141ms (ActiveRecord: 121.3ms | Allocations: 4460) - - -Started GET "/posts/new" for 127.0.0.1 at 2022-12-15 00:04:38 +0200 -Processing by PostsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering posts/new.html.erb within layouts/application - Rendered posts/new.html.erb within layouts/application (Duration: 3.0ms | Allocations: 826) - Rendered layout layouts/application.html.erb (Duration: 8.0ms | Allocations: 1854) -Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.0ms | Allocations: 2173) - - -Started POST "/posts/new" for 127.0.0.1 at 2022-12-15 00:04:41 +0200 -Processing by PostsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "post"=>{"title"=>"ttgdf", "text"=>"gggg"}, "commit"=>"Create Post"} - User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' - TRANSACTION (0.3ms) BEGIN - ↳ app/controllers/posts_controller.rb:31:in `create' - Post Create (0.9ms) INSERT INTO "posts" ("title", "text", "comments_counter", "likes_counter", "created_at", "updated_at", "author_id") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["title", "ttgdf"], ["text", "gggg"], ["comments_counter", 0], ["likes_counter", 0], ["created_at", "2022-12-14 22:04:41.979389"], ["updated_at", "2022-12-14 22:04:41.979389"], ["author_id", 1]] - ↳ app/controllers/posts_controller.rb:31:in `create' - Post Count (2.2ms) SELECT COUNT(*) FROM "posts" WHERE "posts"."author_id" = $1 [["author_id", 1]] - ↳ app/models/post.rb:13:in `update_posts_counter' - User Update (0.8ms) UPDATE "users" SET "posts_counter" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["posts_counter", 4], ["updated_at", "2022-12-14 22:04:41.990466"], ["id", 1]] - ↳ app/models/post.rb:13:in `update_posts_counter' - TRANSACTION (97.7ms) COMMIT - ↳ app/controllers/posts_controller.rb:31:in `create' -Redirected to http://127.0.0.1:3000/posts/new -Completed 302 Found in 135ms (ActiveRecord: 102.3ms | Allocations: 4477) - - -Started GET "/posts/new" for 127.0.0.1 at 2022-12-15 00:04:42 +0200 -Processing by PostsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering posts/new.html.erb within layouts/application - Rendered posts/new.html.erb within layouts/application (Duration: 4.7ms | Allocations: 828) - Rendered layout layouts/application.html.erb (Duration: 9.5ms | Allocations: 1856) -Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms | Allocations: 2175) - - -Started GET "/" for 127.0.0.1 at 2022-12-15 00:04:49 +0200 -Processing by UsersController#index as HTML - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (2.7ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 66) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 51) - Rendered users/index.html.erb within layouts/application (Duration: 6.0ms | Allocations: 810) - Rendered layout layouts/application.html.erb (Duration: 23.5ms | Allocations: 2154) -Completed 200 OK in 26ms (Views: 21.9ms | ActiveRecord: 2.7ms | Allocations: 2488) - - -Started GET "/users/1" for 127.0.0.1 at 2022-12-15 00:04:50 +0200 -Processing by UsersController#show as HTML - Parameters: {"id"=>"1"} - User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/users_controller.rb:7:in `show' - Rendering layout layouts/application.html.erb - Rendering users/show.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.5ms | Allocations: 66) - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 1], ["LIMIT", 3]] - ↳ app/views/users/show.html.erb:9 - Comment Count (1.6ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.6ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 8.5ms | Allocations: 1405) - Comment Count (2.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 2]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.6ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 2]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 8.3ms | Allocations: 1408) - Comment Count (0.9ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 3]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.6ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 3]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 6.9ms | Allocations: 1407) - Rendered users/show.html.erb within layouts/application (Duration: 29.4ms | Allocations: 5289) - Rendered layout layouts/application.html.erb (Duration: 33.9ms | Allocations: 6616) -Completed 200 OK in 42ms (Views: 29.5ms | ActiveRecord: 7.7ms | Allocations: 7385) - - -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:04:52 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"1", "id"=>"1"} - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (0.6ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:6 - Like Count (0.6ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.4ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 63.1ms | Allocations: 7178) - Rendered layout layouts/application.html.erb (Duration: 66.2ms | Allocations: 8314) -Completed 200 OK in 107ms (Views: 65.6ms | ActiveRecord: 9.6ms | Allocations: 24555) - - -Started POST "/users/1/posts/1/likes" for 127.0.0.1 at 2022-12-15 00:04:54 +0200 -Processing by PostsController#create_like as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "commit"=>"Like post", "user_id"=>"1", "id"=>"1"} - User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' - Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:22:in `create_like' - TRANSACTION (0.4ms) BEGIN - ↳ app/controllers/posts_controller.rb:23:in `create_like' - Like Create (1.3ms) INSERT INTO "likes" ("created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2022-12-14 22:04:54.610046"], ["updated_at", "2022-12-14 22:04:54.610046"], ["author_id", 1], ["post_id", 1]] - ↳ app/controllers/posts_controller.rb:23:in `create_like' - Like Load (0.4ms) SELECT "likes".* FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - Post Update (0.6ms) UPDATE "posts" SET "likes_counter" = $1, "updated_at" = $2 WHERE "posts"."id" = $3 [["likes_counter", 1], ["updated_at", "2022-12-14 22:04:54.630008"], ["id", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - Post Count (0.6ms) SELECT COUNT(*) FROM "posts" WHERE "posts"."author_id" = $1 [["author_id", 1]] - ↳ app/models/post.rb:13:in `update_posts_counter' - TRANSACTION (42.8ms) COMMIT - ↳ app/controllers/posts_controller.rb:23:in `create_like' -Redirected to http://127.0.0.1:3000/users/1/posts/1 -Completed 302 Found in 87ms (ActiveRecord: 47.6ms | Allocations: 8942) - - -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:04:54 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"1", "id"=>"1"} - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (0.6ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:6 - Like Count (0.7ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (3.0ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 15.0ms | Allocations: 2885) - Rendered layout layouts/application.html.erb (Duration: 18.1ms | Allocations: 3907) -Completed 200 OK in 25ms (Views: 14.8ms | ActiveRecord: 5.2ms | Allocations: 5191) - - -Started POST "/users/1/posts/1/likes" for 127.0.0.1 at 2022-12-15 00:04:55 +0200 -Processing by PostsController#create_like as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "commit"=>"Like post", "user_id"=>"1", "id"=>"1"} - User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' - Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:22:in `create_like' - TRANSACTION (0.2ms) BEGIN - ↳ app/controllers/posts_controller.rb:23:in `create_like' - Like Create (0.9ms) INSERT INTO "likes" ("created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2022-12-14 22:04:55.983827"], ["updated_at", "2022-12-14 22:04:55.983827"], ["author_id", 1], ["post_id", 1]] - ↳ app/controllers/posts_controller.rb:23:in `create_like' - Like Load (0.4ms) SELECT "likes".* FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - Post Update (0.6ms) UPDATE "posts" SET "likes_counter" = $1, "updated_at" = $2 WHERE "posts"."id" = $3 [["likes_counter", 2], ["updated_at", "2022-12-14 22:04:55.997034"], ["id", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - Post Count (0.6ms) SELECT COUNT(*) FROM "posts" WHERE "posts"."author_id" = $1 [["author_id", 1]] - ↳ app/models/post.rb:13:in `update_posts_counter' - TRANSACTION (9.4ms) COMMIT - ↳ app/controllers/posts_controller.rb:23:in `create_like' -Redirected to http://127.0.0.1:3000/users/1/posts/1 -Completed 302 Found in 41ms (ActiveRecord: 14.6ms | Allocations: 6487) - - -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:04:56 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"1", "id"=>"1"} - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (3.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (0.7ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:6 - Like Count (2.0ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.5ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 13.5ms | Allocations: 2882) - Rendered layout layouts/application.html.erb (Duration: 16.9ms | Allocations: 3902) -Completed 200 OK in 27ms (Views: 14.8ms | ActiveRecord: 6.7ms | Allocations: 5151) - - -Started POST "/users/1/posts/1/likes" for 127.0.0.1 at 2022-12-15 00:04:56 +0200 -Processing by PostsController#create_like as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "commit"=>"Like post", "user_id"=>"1", "id"=>"1"} - User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:22:in `create_like' - TRANSACTION (0.3ms) BEGIN - ↳ app/controllers/posts_controller.rb:23:in `create_like' - Like Create (1.1ms) INSERT INTO "likes" ("created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2022-12-14 22:04:56.192302"], ["updated_at", "2022-12-14 22:04:56.192302"], ["author_id", 1], ["post_id", 1]] - ↳ app/controllers/posts_controller.rb:23:in `create_like' - Like Load (0.5ms) SELECT "likes".* FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - Post Update (0.7ms) UPDATE "posts" SET "likes_counter" = $1, "updated_at" = $2 WHERE "posts"."id" = $3 [["likes_counter", 3], ["updated_at", "2022-12-14 22:04:56.208198"], ["id", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - Post Count (1.0ms) SELECT COUNT(*) FROM "posts" WHERE "posts"."author_id" = $1 [["author_id", 1]] - ↳ app/models/post.rb:13:in `update_posts_counter' - TRANSACTION (74.8ms) COMMIT - ↳ app/controllers/posts_controller.rb:23:in `create_like' -Redirected to http://127.0.0.1:3000/users/1/posts/1 -Completed 302 Found in 108ms (ActiveRecord: 80.6ms | Allocations: 6494) - - -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:04:56 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"1", "id"=>"1"} - Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (0.7ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:6 - Like Count (0.6ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.5ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 11.3ms | Allocations: 2856) - Rendered layout layouts/application.html.erb (Duration: 15.2ms | Allocations: 3876) -Completed 200 OK in 23ms (Views: 14.7ms | ActiveRecord: 3.0ms | Allocations: 5125) - - -Started POST "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:04:58 +0200 -Processing by PostsController#create_comment as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "comment"=>{"text"=>"ffff"}, "commit"=>"Comment", "user_id"=>"1", "id"=>"1"} - Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:16:in `create_comment' - User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' - TRANSACTION (0.3ms) BEGIN - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Comment Create (1.2ms) INSERT INTO "comments" ("text", "created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["text", "ffff"], ["created_at", "2022-12-14 22:04:58.348232"], ["updated_at", "2022-12-14 22:04:58.348232"], ["author_id", 1], ["post_id", 1]] - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Post Update All (0.8ms) UPDATE "posts" SET "comments_counter" = COALESCE("comments_counter", 0) + $1 WHERE "posts"."id" = $2 [["comments_counter", 1], ["id", 1]] - ↳ app/models/comment.rb:8:in `update_comments_counter' - TRANSACTION (45.5ms) COMMIT - ↳ app/controllers/posts_controller.rb:18:in `create_comment' -Redirected to http://127.0.0.1:3000/users/1/posts/1 -Completed 302 Found in 67ms (ActiveRecord: 48.7ms | Allocations: 5220) - - -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:04:58 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"1", "id"=>"1"} - Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (0.7ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:6 - Like Count (0.8ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.6ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:14 - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 [["id", 1]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 48.9ms | Allocations: 5455) - Rendered layout layouts/application.html.erb (Duration: 53.8ms | Allocations: 6576) -Completed 200 OK in 61ms (Views: 52.3ms | ActiveRecord: 3.4ms | Allocations: 7844) - - -Started POST "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:04:59 +0200 -Processing by PostsController#create_comment as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "comment"=>{"text"=>""}, "commit"=>"Comment", "user_id"=>"1", "id"=>"1"} - Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:16:in `create_comment' - User Load (2.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' - TRANSACTION (1.5ms) BEGIN - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Comment Create (0.9ms) INSERT INTO "comments" ("text", "created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["text", ""], ["created_at", "2022-12-14 22:04:59.182248"], ["updated_at", "2022-12-14 22:04:59.182248"], ["author_id", 1], ["post_id", 1]] - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Post Update All (2.1ms) UPDATE "posts" SET "comments_counter" = COALESCE("comments_counter", 0) + $1 WHERE "posts"."id" = $2 [["comments_counter", 1], ["id", 1]] - ↳ app/models/comment.rb:8:in `update_comments_counter' - TRANSACTION (131.6ms) COMMIT - ↳ app/controllers/posts_controller.rb:18:in `create_comment' -Redirected to http://127.0.0.1:3000/users/1/posts/1 -Completed 302 Found in 154ms (ActiveRecord: 139.4ms | Allocations: 4007) - - -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:04:59 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"1", "id"=>"1"} - Post Load (1.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (0.8ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:6 - Like Count (2.8ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.8ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:14 - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 [["id", 1]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 18.7ms | Allocations: 3728) - Rendered layout layouts/application.html.erb (Duration: 21.7ms | Allocations: 4749) -Completed 200 OK in 30ms (Views: 17.8ms | ActiveRecord: 6.8ms | Allocations: 6032) - - -Started POST "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:05:01 +0200 -Processing by PostsController#create_comment as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "comment"=>{"text"=>"ffff"}, "commit"=>"Comment", "user_id"=>"1", "id"=>"1"} - Post Load (3.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:16:in `create_comment' - User Load (4.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' - TRANSACTION (0.5ms) BEGIN - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Comment Create (2.6ms) INSERT INTO "comments" ("text", "created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["text", "ffff"], ["created_at", "2022-12-14 22:05:01.985289"], ["updated_at", "2022-12-14 22:05:01.985289"], ["author_id", 1], ["post_id", 1]] - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Post Update All (0.6ms) UPDATE "posts" SET "comments_counter" = COALESCE("comments_counter", 0) + $1 WHERE "posts"."id" = $2 [["comments_counter", 1], ["id", 1]] - ↳ app/models/comment.rb:8:in `update_comments_counter' - TRANSACTION (16.9ms) COMMIT - ↳ app/controllers/posts_controller.rb:18:in `create_comment' -Redirected to http://127.0.0.1:3000/users/1/posts/1 -Completed 302 Found in 50ms (ActiveRecord: 28.4ms | Allocations: 3799) - - -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:05:02 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"1", "id"=>"1"} - Post Load (0.7ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (3.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (0.6ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:6 - Like Count (0.6ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (1.6ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:14 - User Load (3.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 [["id", 1]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 20.4ms | Allocations: 3725) - Rendered layout layouts/application.html.erb (Duration: 23.6ms | Allocations: 4750) -Completed 200 OK in 35ms (Views: 18.1ms | ActiveRecord: 10.6ms | Allocations: 6000) - - -Started POST "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:05:03 +0200 -Processing by PostsController#create_comment as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "comment"=>{"text"=>"wweweg"}, "commit"=>"Comment", "user_id"=>"1", "id"=>"1"} - Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:16:in `create_comment' - User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' - TRANSACTION (0.3ms) BEGIN - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Comment Create (2.0ms) INSERT INTO "comments" ("text", "created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["text", "wweweg"], ["created_at", "2022-12-14 22:05:04.003852"], ["updated_at", "2022-12-14 22:05:04.003852"], ["author_id", 1], ["post_id", 1]] - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Post Update All (0.8ms) UPDATE "posts" SET "comments_counter" = COALESCE("comments_counter", 0) + $1 WHERE "posts"."id" = $2 [["comments_counter", 1], ["id", 1]] - ↳ app/models/comment.rb:8:in `update_comments_counter' - TRANSACTION (45.1ms) COMMIT - ↳ app/controllers/posts_controller.rb:18:in `create_comment' -Redirected to http://127.0.0.1:3000/users/1/posts/1 -Completed 302 Found in 62ms (ActiveRecord: 48.9ms | Allocations: 3840) - - -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:05:04 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"1", "id"=>"1"} - Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (1.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:6 - Like Count (1.4ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.8ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:14 - User Load (5.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 [["id", 1]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 27.5ms | Allocations: 3737) - Rendered layout layouts/application.html.erb (Duration: 30.8ms | Allocations: 4757) -Completed 200 OK in 38ms (Views: 22.5ms | ActiveRecord: 10.5ms | Allocations: 6006) - - -Started POST "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:05:06 +0200 -Processing by PostsController#create_comment as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "comment"=>{"text"=>"gwwefwe"}, "commit"=>"Comment", "user_id"=>"1", "id"=>"1"} - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:16:in `create_comment' - User Load (0.8ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' - TRANSACTION (0.3ms) BEGIN - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Comment Create (1.1ms) INSERT INTO "comments" ("text", "created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["text", "gwwefwe"], ["created_at", "2022-12-14 22:05:06.683404"], ["updated_at", "2022-12-14 22:05:06.683404"], ["author_id", 1], ["post_id", 1]] - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Post Update All (0.8ms) UPDATE "posts" SET "comments_counter" = COALESCE("comments_counter", 0) + $1 WHERE "posts"."id" = $2 [["comments_counter", 1], ["id", 1]] - ↳ app/models/comment.rb:8:in `update_comments_counter' - TRANSACTION (31.3ms) COMMIT - ↳ app/controllers/posts_controller.rb:18:in `create_comment' -Redirected to http://127.0.0.1:3000/users/1/posts/1 -Completed 302 Found in 56ms (ActiveRecord: 34.7ms | Allocations: 3851) - - -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:05:06 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"1", "id"=>"1"} - Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (1.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:6 - Like Count (1.4ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (2.3ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:14 - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 [["id", 1]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 21.5ms | Allocations: 3770) - Rendered layout layouts/application.html.erb (Duration: 25.0ms | Allocations: 4795) -Completed 200 OK in 36ms (Views: 22.0ms | ActiveRecord: 6.3ms | Allocations: 6045) - - -  (0.3ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to AddDeviseToUsers (20221214221212) - TRANSACTION (0.3ms) BEGIN -  (0.7ms) ALTER TABLE "users" ADD "email" character varying DEFAULT '' NOT NULL -  (0.4ms) ALTER TABLE "users" ADD "encrypted_password" character varying DEFAULT '' NOT NULL -  (0.3ms) ALTER TABLE "users" ADD "reset_password_token" character varying -  (0.4ms) ALTER TABLE "users" ADD "reset_password_sent_at" timestamp(6) -  (0.3ms) ALTER TABLE "users" ADD "remember_created_at" timestamp(6) -  (22.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email") - TRANSACTION (0.3ms) ROLLBACK -  (1.1ms) SELECT pg_advisory_unlock(4753324116888153030) -  (0.4ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to AddDeviseToUsers (20221214221212) - TRANSACTION (0.3ms) BEGIN -  (1.1ms) ALTER TABLE "users" ADD "email" character varying DEFAULT '' NOT NULL -  (93.7ms) ALTER TABLE "users" ADD "encrypted_password" character varying DEFAULT '' NOT NULL -  (0.4ms) ALTER TABLE "users" ADD "reset_password_token" character varying -  (0.4ms) ALTER TABLE "users" ADD "reset_password_sent_at" timestamp(6) -  (0.4ms) ALTER TABLE "users" ADD "remember_created_at" timestamp(6) -  (67.6ms) CREATE INDEX "index_users_on_email" ON "users" ("email") -  (54.8ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token") - ActiveRecord::SchemaMigration Create (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221214221212"]] - TRANSACTION (26.6ms) COMMIT - ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (0.5ms) SELECT pg_advisory_unlock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -  (0.4ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (0.5ms) SELECT pg_advisory_unlock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:21:48 +0200 - -NoMethodError (undefined method `devise_for' for #, @draw_paths=[#], @scope=#{:new=>"new", :edit=>"edit"}}, @parent=#, @scope_level=nil>, @concerns={}>): - -config/routes.rb:2:in `block in
' -config/routes.rb:1:in `
' -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:23:07 +0200 - ActiveRecord::SchemaMigration Pluck (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"1", "id"=>"1"} - Post Load (0.7ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (1.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:6 - Like Count (0.9ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.4ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:14 - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 [["id", 1]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 169.3ms | Allocations: 14848) - Rendered layout layouts/application.html.erb (Duration: 262.1ms | Allocations: 35964) -Completed 200 OK in 442ms (Views: 265.4ms | ActiveRecord: 25.9ms | Allocations: 103236) - - -Started POST "/users/1/posts/1/likes" for 127.0.0.1 at 2022-12-15 00:23:10 +0200 -Processing by PostsController#create_like as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "commit"=>"Like post", "user_id"=>"1", "id"=>"1"} - User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:22:in `create_like' - TRANSACTION (0.5ms) BEGIN - ↳ app/controllers/posts_controller.rb:23:in `create_like' - Like Create (1.4ms) INSERT INTO "likes" ("created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2022-12-14 22:23:10.798569"], ["updated_at", "2022-12-14 22:23:10.798569"], ["author_id", 1], ["post_id", 1]] - ↳ app/controllers/posts_controller.rb:23:in `create_like' - Like Load (0.5ms) SELECT "likes".* FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - Post Update (0.9ms) UPDATE "posts" SET "likes_counter" = $1, "updated_at" = $2 WHERE "posts"."id" = $3 [["likes_counter", 4], ["updated_at", "2022-12-14 22:23:10.819170"], ["id", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - Post Count (0.7ms) SELECT COUNT(*) FROM "posts" WHERE "posts"."author_id" = $1 [["author_id", 1]] - ↳ app/models/post.rb:13:in `update_posts_counter' - TRANSACTION (23.8ms) COMMIT - ↳ app/controllers/posts_controller.rb:23:in `create_like' -Redirected to http://127.0.0.1:3000/users/1/posts/1 -Completed 302 Found in 67ms (ActiveRecord: 29.9ms | Allocations: 12883) - - -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:23:10 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"1", "id"=>"1"} - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (0.7ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:6 - Like Count (0.8ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (1.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:14 - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 [["id", 1]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 18.1ms | Allocations: 3859) - Rendered layout layouts/application.html.erb (Duration: 21.5ms | Allocations: 4969) -Completed 200 OK in 33ms (Views: 20.6ms | ActiveRecord: 4.2ms | Allocations: 6286) - - -Started POST "/users/1/posts/1/likes" for 127.0.0.1 at 2022-12-15 00:23:12 +0200 -Processing by PostsController#create_like as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "commit"=>"Like post", "user_id"=>"1", "id"=>"1"} - User Load (0.8ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' - Post Load (1.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:22:in `create_like' - TRANSACTION (0.2ms) BEGIN - ↳ app/controllers/posts_controller.rb:23:in `create_like' - Like Create (0.8ms) INSERT INTO "likes" ("created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2022-12-14 22:23:12.187112"], ["updated_at", "2022-12-14 22:23:12.187112"], ["author_id", 1], ["post_id", 1]] - ↳ app/controllers/posts_controller.rb:23:in `create_like' - Like Load (0.5ms) SELECT "likes".* FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - Post Update (0.6ms) UPDATE "posts" SET "likes_counter" = $1, "updated_at" = $2 WHERE "posts"."id" = $3 [["likes_counter", 5], ["updated_at", "2022-12-14 22:23:12.200113"], ["id", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - Post Count (0.6ms) SELECT COUNT(*) FROM "posts" WHERE "posts"."author_id" = $1 [["author_id", 1]] - ↳ app/models/post.rb:13:in `update_posts_counter' - TRANSACTION (21.1ms) COMMIT - ↳ app/controllers/posts_controller.rb:23:in `create_like' -Redirected to http://127.0.0.1:3000/users/1/posts/1 -Completed 302 Found in 55ms (ActiveRecord: 26.6ms | Allocations: 7502) - - -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:23:12 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"1", "id"=>"1"} - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (1.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:6 - Like Count (0.6ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.6ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:14 - User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 [["id", 1]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 16.7ms | Allocations: 3772) - Rendered layout layouts/application.html.erb (Duration: 19.9ms | Allocations: 4793) -Completed 200 OK in 30ms (Views: 16.8ms | ActiveRecord: 5.1ms | Allocations: 6064) - - -Started POST "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:23:14 +0200 -Processing by PostsController#create_comment as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "comment"=>{"text"=>"fdddf"}, "commit"=>"Comment", "user_id"=>"1", "id"=>"1"} - Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:16:in `create_comment' - User Load (0.9ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT $1 [["LIMIT", 1]] - ↳ app/controllers/application_controller.rb:3:in `current_user' - TRANSACTION (0.3ms) BEGIN - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Comment Create (1.2ms) INSERT INTO "comments" ("text", "created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["text", "fdddf"], ["created_at", "2022-12-14 22:23:14.640077"], ["updated_at", "2022-12-14 22:23:14.640077"], ["author_id", 1], ["post_id", 1]] - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Post Update All (0.7ms) UPDATE "posts" SET "comments_counter" = COALESCE("comments_counter", 0) + $1 WHERE "posts"."id" = $2 [["comments_counter", 1], ["id", 1]] - ↳ app/models/comment.rb:8:in `update_comments_counter' - TRANSACTION (35.3ms) COMMIT - ↳ app/controllers/posts_controller.rb:18:in `create_comment' -Redirected to http://127.0.0.1:3000/users/1/posts/1 -Completed 302 Found in 58ms (ActiveRecord: 39.0ms | Allocations: 5028) - - -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:23:14 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"1", "id"=>"1"} - Post Load (0.7ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (0.7ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:6 - Like Count (0.7ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.6ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:14 - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 [["id", 1]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 20.6ms | Allocations: 3824) - Rendered layout layouts/application.html.erb (Duration: 23.6ms | Allocations: 4845) -Completed 200 OK in 31ms (Views: 22.1ms | ActiveRecord: 3.8ms | Allocations: 6116) - - -Started GET "/users/" for 127.0.0.1 at 2022-12-15 00:23:19 +0200 -Processing by UsersController#index as HTML -Completed 401 Unauthorized in 223ms (ActiveRecord: 0.0ms | Allocations: 4241) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 00:23:20 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/sessions/new.html.erb within layouts/application - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/shared/_links.html.erb (Duration: 3.3ms | Allocations: 910) - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/sessions/new.html.erb within layouts/application (Duration: 42.0ms | Allocations: 4961) - Rendered layout layouts/application.html.erb (Duration: 45.7ms | Allocations: 6131) -Completed 200 OK in 143ms (Views: 49.2ms | ActiveRecord: 0.0ms | Allocations: 8697) - - -Started POST "/users/sign_in" for 127.0.0.1 at 2022-12-15 00:23:34 +0200 -Processing by Devise::SessionsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"} - User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] -Completed 401 Unauthorized in 69ms (ActiveRecord: 0.3ms | Allocations: 4582) - - -Processing by Devise::SessionsController#new as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"} - Rendering layout layouts/application.html.erb - Rendering /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/sessions/new.html.erb within layouts/application - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 140) - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/sessions/new.html.erb within layouts/application (Duration: 3.3ms | Allocations: 1377) - Rendered layout layouts/application.html.erb (Duration: 6.2ms | Allocations: 2493) -Completed 200 OK in 513ms (Views: 7.1ms | ActiveRecord: 0.0ms | Allocations: 4835) - - -Started GET "/users/1" for 127.0.0.1 at 2022-12-15 00:23:50 +0200 -Processing by UsersController#show as HTML - Parameters: {"id"=>"1"} -Completed 401 Unauthorized in 2ms (ActiveRecord: 0.0ms | Allocations: 469) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 00:23:50 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/sessions/new.html.erb within layouts/application - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/sessions/new.html.erb within layouts/application (Duration: 7.8ms | Allocations: 1255) - Rendered layout layouts/application.html.erb (Duration: 10.3ms | Allocations: 2267) -Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.0ms | Allocations: 3091) - - -Started GET "/users/1/posts/" for 127.0.0.1 at 2022-12-15 00:24:05 +0200 -Processing by PostsController#index as HTML - Parameters: {"user_id"=>"1"} - User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:3:in `index' - Rendering layout layouts/application.html.erb - Rendering posts/index.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 1.2ms | Allocations: 305) - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 1], ["LIMIT", 3]] - ↳ app/views/posts/index.html.erb:5:in `each_with_index' - Comment Count (0.6ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.6ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 8.8ms | Allocations: 1620) - Comment Load (60.8ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 ORDER BY "comments"."created_at" DESC LIMIT $2 [["post_id", 1], ["LIMIT", 5]] - ↳ app/views/posts/index.html.erb:9 - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/views/posts/index.html.erb:12 - CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/views/posts/index.html.erb:12 - CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/views/posts/index.html.erb:12 - CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/views/posts/index.html.erb:12 - CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/views/posts/index.html.erb:12 - Comment Count (0.5ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 2]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.5ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 2]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 5.8ms | Allocations: 1418) - Comment Load (0.7ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 ORDER BY "comments"."created_at" DESC LIMIT $2 [["post_id", 2], ["LIMIT", 5]] - ↳ app/views/posts/index.html.erb:9 - Comment Count (0.6ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 3]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.5ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 3]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 6.5ms | Allocations: 1415) - Comment Load (0.5ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 ORDER BY "comments"."created_at" DESC LIMIT $2 [["post_id", 3], ["LIMIT", 5]] - ↳ app/views/posts/index.html.erb:9 - Rendered posts/index.html.erb within layouts/application (Duration: 111.9ms | Allocations: 12151) - Rendered layout layouts/application.html.erb (Duration: 115.7ms | Allocations: 13483) -Completed 200 OK in 120ms (Views: 50.3ms | ActiveRecord: 66.6ms | Allocations: 14442) - - -Started GET "/users/2/posts/" for 127.0.0.1 at 2022-12-15 00:24:13 +0200 -Processing by PostsController#index as HTML - Parameters: {"user_id"=>"2"} - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 2], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:3:in `index' - Rendering layout layouts/application.html.erb - Rendering posts/index.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 67) - Post Load (2.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 2], ["LIMIT", 3]] - ↳ app/views/posts/index.html.erb:5:in `each_with_index' - Rendered posts/index.html.erb within layouts/application (Duration: 6.2ms | Allocations: 812) - Rendered layout layouts/application.html.erb (Duration: 9.6ms | Allocations: 2138) -Completed 200 OK in 17ms (Views: 8.5ms | ActiveRecord: 2.7ms | Allocations: 2960) - - -Started GET "/users" for 127.0.0.1 at 2022-12-15 00:24:22 +0200 -Processing by UsersController#index as HTML -Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms | Allocations: 428) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 00:24:22 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/sessions/new.html.erb within layouts/application - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/shared/_links.html.erb (Duration: 0.3ms | Allocations: 138) - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/sessions/new.html.erb within layouts/application (Duration: 4.7ms | Allocations: 1253) - Rendered layout layouts/application.html.erb (Duration: 7.8ms | Allocations: 2265) -Completed 200 OK in 11ms (Views: 8.9ms | ActiveRecord: 0.0ms | Allocations: 3088) - - - User Load (0.9ms) SELECT "users".* FROM "users" -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 00:38:12 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/sessions/new.html.erb within layouts/application - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/shared/_links.html.erb (Duration: 1.3ms | Allocations: 591) - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/sessions/new.html.erb within layouts/application (Duration: 5.4ms | Allocations: 2359) - Rendered layout layouts/application.html.erb (Duration: 8.3ms | Allocations: 3778) -Completed 200 OK in 51ms (Views: 10.9ms | ActiveRecord: 6.2ms | Allocations: 12047) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 00:38:17 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/sessions/new.html.erb within layouts/application - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/shared/_links.html.erb (Duration: 0.3ms | Allocations: 138) - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/sessions/new.html.erb within layouts/application (Duration: 3.6ms | Allocations: 1253) - Rendered layout layouts/application.html.erb (Duration: 6.4ms | Allocations: 2281) -Completed 200 OK in 10ms (Views: 7.5ms | ActiveRecord: 0.0ms | Allocations: 3175) - - -Started POST "/users/sign_in" for 127.0.0.1 at 2022-12-15 00:38:26 +0200 -Processing by Devise::SessionsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} - User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] -Completed 401 Unauthorized in 8ms (ActiveRecord: 1.2ms | Allocations: 2136) - - -Processing by Devise::SessionsController#new as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} - Rendering layout layouts/application.html.erb - Rendering /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/sessions/new.html.erb within layouts/application - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/sessions/new.html.erb within layouts/application (Duration: 3.3ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 5.4ms | Allocations: 2271) -Completed 200 OK in 310ms (Views: 7.0ms | ActiveRecord: 0.0ms | Allocations: 2906) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2022-12-15 00:38:35 +0200 -Processing by Devise::RegistrationsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/registrations/new.html.erb within layouts/application - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/shared/_error_messages.html.erb (Duration: 1.2ms | Allocations: 232) - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/shared/_links.html.erb (Duration: 1.0ms | Allocations: 228) - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/registrations/new.html.erb within layouts/application (Duration: 17.6ms | Allocations: 2415) - Rendered layout layouts/application.html.erb (Duration: 20.1ms | Allocations: 3616) -Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.0ms | Allocations: 5278) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 00:38:48 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} - TRANSACTION (0.3ms) BEGIN - User Exists? (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.5ms) ROLLBACK - Rendering layout layouts/application.html.erb - Rendering /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/registrations/new.html.erb within layouts/application - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/shared/_error_messages.html.erb (Duration: 1.7ms | Allocations: 1077) - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/shared/_links.html.erb (Duration: 0.2ms | Allocations: 97) - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/registrations/new.html.erb within layouts/application (Duration: 6.5ms | Allocations: 3030) - Rendered layout layouts/application.html.erb (Duration: 8.7ms | Allocations: 4208) -Completed 200 OK in 363ms (Views: 9.4ms | ActiveRecord: 1.3ms | Allocations: 13205) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 00:39:06 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} - TRANSACTION (0.3ms) BEGIN - User Exists? (0.9ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.3ms) ROLLBACK - Rendering layout layouts/application.html.erb - Rendering /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/registrations/new.html.erb within layouts/application - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/shared/_error_messages.html.erb (Duration: 1.0ms | Allocations: 466) - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/shared/_links.html.erb (Duration: 0.2ms | Allocations: 82) - Rendered /home/benkis/.rbenv/versions/3.0.1/lib/ruby/gems/3.0.0/gems/devise-4.8.1/app/views/devise/registrations/new.html.erb within layouts/application (Duration: 3.6ms | Allocations: 1684) - Rendered layout layouts/application.html.erb (Duration: 16.5ms | Allocations: 2712) -Completed 200 OK in 326ms (Views: 17.2ms | ActiveRecord: 1.6ms | Allocations: 7635) - - -  (0.4ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (0.4ms) SELECT pg_advisory_unlock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Started POST "/users" for 127.0.0.1 at 2022-12-15 00:42:58 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} - TRANSACTION (0.3ms) BEGIN - User Exists? (0.6ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.3ms) ROLLBACK - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 1.6ms | Allocations: 725) - Rendered devise/shared/_links.html.erb (Duration: 2.1ms | Allocations: 533) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 10.2ms | Allocations: 3967) - Rendered layout layouts/application.html.erb (Duration: 14.1ms | Allocations: 5382) -Completed 200 OK in 341ms (Views: 15.6ms | ActiveRecord: 7.1ms | Allocations: 15761) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 00:43:15 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :name. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.4ms) BEGIN - User Exists? (1.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.3ms) ROLLBACK - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 2.0ms | Allocations: 919) - Rendered devise/shared/_links.html.erb (Duration: 0.2ms | Allocations: 96) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 8.0ms | Allocations: 3594) - Rendered layout layouts/application.html.erb (Duration: 10.3ms | Allocations: 4674) -Completed 200 OK in 328ms (Views: 11.0ms | ActiveRecord: 1.8ms | Allocations: 9780) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 00:43:23 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :name. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.3ms) BEGIN - User Exists? (1.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.3ms) ROLLBACK - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 2.1ms | Allocations: 465) - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 96) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 9.1ms | Allocations: 2536) - Rendered layout layouts/application.html.erb (Duration: 12.1ms | Allocations: 3616) -Completed 200 OK in 339ms (Views: 13.1ms | ActiveRecord: 2.0ms | Allocations: 8357) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 00:43:35 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :name. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.2ms) BEGIN - User Exists? (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.2ms) ROLLBACK - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 1.8ms | Allocations: 865) - Rendered devise/shared/_links.html.erb (Duration: 0.2ms | Allocations: 96) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 6.7ms | Allocations: 3540) - Rendered layout layouts/application.html.erb (Duration: 9.0ms | Allocations: 4620) -Completed 200 OK in 342ms (Views: 9.6ms | ActiveRecord: 0.9ms | Allocations: 9446) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 00:44:01 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :name. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.5ms) BEGIN - User Exists? (1.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.5ms) ROLLBACK - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 0.9ms | Allocations: 465) - Rendered devise/shared/_links.html.erb (Duration: 0.2ms | Allocations: 96) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 5.2ms | Allocations: 2536) - Rendered layout layouts/application.html.erb (Duration: 7.3ms | Allocations: 3616) -Completed 200 OK in 320ms (Views: 7.9ms | ActiveRecord: 2.1ms | Allocations: 8353) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 00:44:22 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :name. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.5ms) BEGIN - User Exists? (0.9ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.6ms) ROLLBACK - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 1.0ms | Allocations: 465) - Rendered devise/shared/_links.html.erb (Duration: 0.2ms | Allocations: 96) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 5.7ms | Allocations: 2536) - Rendered layout layouts/application.html.erb (Duration: 7.8ms | Allocations: 3621) -Completed 200 OK in 331ms (Views: 8.5ms | ActiveRecord: 2.1ms | Allocations: 8366) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 00:45:47 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :name. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.5ms) BEGIN - User Exists? (1.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.5ms) ROLLBACK - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 3.1ms | Allocations: 720) - Rendered devise/shared/_links.html.erb (Duration: 1.3ms | Allocations: 522) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 10.6ms | Allocations: 3893) - Rendered layout layouts/application.html.erb (Duration: 13.7ms | Allocations: 5307) -Completed 200 OK in 338ms (Views: 14.9ms | ActiveRecord: 2.1ms | Allocations: 11187) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 00:45:51 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :name. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.2ms) BEGIN - User Exists? (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.3ms) ROLLBACK - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 0.9ms | Allocations: 465) - Rendered devise/shared/_links.html.erb (Duration: 0.2ms | Allocations: 96) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 5.2ms | Allocations: 2536) - Rendered layout layouts/application.html.erb (Duration: 7.9ms | Allocations: 3620) -Completed 200 OK in 326ms (Views: 8.6ms | ActiveRecord: 1.0ms | Allocations: 8629) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 00:45:59 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :name. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.3ms) BEGIN - User Exists? (0.6ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.4ms) ROLLBACK - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 1.9ms | Allocations: 465) - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 96) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 7.0ms | Allocations: 2536) - Rendered layout layouts/application.html.erb (Duration: 9.8ms | Allocations: 3617) -Completed 200 OK in 360ms (Views: 10.7ms | ActiveRecord: 1.2ms | Allocations: 8367) - - -  (0.2ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (0.4ms) SELECT pg_advisory_unlock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Started GET "/users" for 127.0.0.1 at 2022-12-15 00:46:26 +0200 -Processing by UsersController#index as HTML -Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms | Allocations: 3610) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 00:46:26 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 2.7ms | Allocations: 591) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 7.7ms | Allocations: 2336) - Rendered layout layouts/application.html.erb (Duration: 11.5ms | Allocations: 3754) -Completed 200 OK in 36ms (Views: 14.6ms | ActiveRecord: 6.3ms | Allocations: 9266) - - -Started POST "/users/sign_in" for 127.0.0.1 at 2022-12-15 00:46:30 +0200 -Processing by Devise::SessionsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] -Completed 401 Unauthorized in 9ms (ActiveRecord: 0.6ms | Allocations: 2069) - - -Processing by Devise::SessionsController#new as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.3ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 2.7ms | Allocations: 1253) - Rendered layout layouts/application.html.erb (Duration: 5.2ms | Allocations: 2280) -Completed 200 OK in 345ms (Views: 6.0ms | ActiveRecord: 0.0ms | Allocations: 2941) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2022-12-15 00:46:33 +0200 -Processing by Devise::RegistrationsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 1.3ms | Allocations: 225) - Rendered devise/shared/_links.html.erb (Duration: 0.7ms | Allocations: 104) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 8.7ms | Allocations: 2371) - Rendered layout layouts/application.html.erb (Duration: 11.5ms | Allocations: 3580) -Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.0ms | Allocations: 5211) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 00:46:41 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :name. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.2ms) BEGIN - User Exists? (0.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.4ms) ROLLBACK - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 1.5ms | Allocations: 478) - Rendered devise/shared/_links.html.erb (Duration: 0.2ms | Allocations: 96) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 6.1ms | Allocations: 2551) - Rendered layout layouts/application.html.erb (Duration: 8.1ms | Allocations: 3631) -Completed 200 OK in 326ms (Views: 8.7ms | ActiveRecord: 1.0ms | Allocations: 9332) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 00:48:18 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :name. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.3ms) BEGIN - User Exists? (0.9ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.5ms) ROLLBACK - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 2.4ms | Allocations: 720) - Rendered devise/shared/_links.html.erb (Duration: 1.5ms | Allocations: 522) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 10.7ms | Allocations: 3891) - Rendered layout layouts/application.html.erb (Duration: 14.2ms | Allocations: 5305) -Completed 200 OK in 347ms (Views: 16.1ms | ActiveRecord: 1.7ms | Allocations: 11175) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 00:48:24 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :name. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.2ms) BEGIN - User Exists? (0.8ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.4ms) ROLLBACK - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 1.7ms | Allocations: 465) - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 96) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 8.3ms | Allocations: 2536) - Rendered layout layouts/application.html.erb (Duration: 11.2ms | Allocations: 3616) -Completed 200 OK in 368ms (Views: 12.2ms | ActiveRecord: 1.4ms | Allocations: 8622) - - -Started GET "/users" for 127.0.0.1 at 2022-12-15 00:48:30 +0200 -Processing by UsersController#index as HTML -Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms | Allocations: 395) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 00:48:30 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 150) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 7.0ms | Allocations: 1818) - Rendered layout layouts/application.html.erb (Duration: 11.0ms | Allocations: 3020) -Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.0ms | Allocations: 4478) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2022-12-15 00:48:33 +0200 -Processing by Devise::RegistrationsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 0.1ms | Allocations: 14) - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 91) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 9.0ms | Allocations: 1480) - Rendered layout layouts/application.html.erb (Duration: 18.3ms | Allocations: 2569) -Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.0ms | Allocations: 3384) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2022-12-15 00:55:24 +0200 -Processing by Devise::RegistrationsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 1.0ms | Allocations: 226) - Rendered devise/shared/_links.html.erb (Duration: 1.3ms | Allocations: 529) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 7.5ms | Allocations: 2878) - Rendered layout layouts/application.html.erb (Duration: 10.7ms | Allocations: 4292) -Completed 200 OK in 111ms (Views: 13.2ms | ActiveRecord: 11.4ms | Allocations: 12316) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 00:55:34 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :password_confirmation. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.3ms) BEGIN - User Exists? (2.8ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - User Create (1.5ms) INSERT INTO "users" ("name", "photo", "bio", "posts_counter", "created_at", "updated_at", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11) RETURNING "id" [["name", "Benjamin Kisenge"], ["photo", nil], ["bio", nil], ["posts_counter", 0], ["created_at", "2022-12-14 22:55:34.575796"], ["updated_at", "2022-12-14 22:55:34.575796"], ["email", "benkisenge03@gmail.com"], ["encrypted_password", "$2a$12$7HCjC/nfvxgLfomoBTDW7OLlA9Mw6YczkTW/86OSVb90zjrlWXLni"], ["reset_password_token", nil], ["reset_password_sent_at", nil], ["remember_created_at", nil]] - TRANSACTION (125.1ms) COMMIT -Redirected to http://127.0.0.1:3000/users -Completed 302 Found in 470ms (ActiveRecord: 129.8ms | Allocations: 7247) - - -Started GET "/users" for 127.0.0.1 at 2022-12-15 00:55:34 +0200 -Processing by UsersController#index as HTML - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/_user.html.erb (Duration: 13.3ms | Allocations: 327) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 51) - Rendered users/_user.html.erb (Duration: 0.2ms | Allocations: 48) - Rendered users/index.html.erb within layouts/application (Duration: 19.9ms | Allocations: 1622) - Rendered layout layouts/application.html.erb (Duration: 23.2ms | Allocations: 2868) -Completed 200 OK in 34ms (Views: 24.8ms | ActiveRecord: 1.3ms | Allocations: 5817) - - -Started GET "/users/3" for 127.0.0.1 at 2022-12-15 00:55:46 +0200 -Processing by UsersController#show as HTML - Parameters: {"id"=>"3"} - User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] - ↳ app/controllers/users_controller.rb:7:in `show' - Rendering layout layouts/application.html.erb - Rendering users/show.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 64) - Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 3], ["LIMIT", 3]] - ↳ app/views/users/show.html.erb:9 - Rendered users/show.html.erb within layouts/application (Duration: 20.2ms | Allocations: 5963) - Rendered layout layouts/application.html.erb (Duration: 23.3ms | Allocations: 7133) -Completed 200 OK in 36ms (Views: 21.0ms | ActiveRecord: 5.2ms | Allocations: 9979) - - -Started GET "/users/3/posts" for 127.0.0.1 at 2022-12-15 00:55:50 +0200 -Processing by PostsController#index as HTML - Parameters: {"user_id"=>"3"} - User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:3:in `index' - Rendering layout layouts/application.html.erb - Rendering posts/index.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 134) - Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 3], ["LIMIT", 3]] - ↳ app/views/posts/index.html.erb:5:in `each_with_index' - Rendered posts/index.html.erb within layouts/application (Duration: 4.6ms | Allocations: 1388) - Rendered layout layouts/application.html.erb (Duration: 7.2ms | Allocations: 2614) -Completed 200 OK in 18ms (Views: 8.6ms | ActiveRecord: 1.9ms | Allocations: 5629) - - -Started GET "/users/3/posts" for 127.0.0.1 at 2022-12-15 00:55:58 +0200 -Processing by PostsController#index as HTML - Parameters: {"user_id"=>"3"} - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:3:in `index' - Rendering layout layouts/application.html.erb - Rendering posts/index.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 64) - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 3], ["LIMIT", 3]] - ↳ app/views/posts/index.html.erb:5:in `each_with_index' - Rendered posts/index.html.erb within layouts/application (Duration: 4.2ms | Allocations: 808) - Rendered layout layouts/application.html.erb (Duration: 7.9ms | Allocations: 1856) -Completed 200 OK in 20ms (Views: 8.6ms | ActiveRecord: 1.8ms | Allocations: 4046) - - -Started GET "/users/3" for 127.0.0.1 at 2022-12-15 00:56:02 +0200 -Processing by UsersController#show as HTML - Parameters: {"id"=>"3"} - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] - ↳ app/controllers/users_controller.rb:7:in `show' - Rendering layout layouts/application.html.erb - Rendering users/show.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 64) - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 3], ["LIMIT", 3]] - ↳ app/views/users/show.html.erb:9 - Rendered users/show.html.erb within layouts/application (Duration: 3.7ms | Allocations: 867) - Rendered layout layouts/application.html.erb (Duration: 6.1ms | Allocations: 1919) -Completed 200 OK in 15ms (Views: 6.5ms | ActiveRecord: 1.5ms | Allocations: 4013) - - -Started GET "/users/" for 127.0.0.1 at 2022-12-15 00:56:34 +0200 -Processing by UsersController#index as HTML - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (0.8ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 66) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 51) - Rendered users/_user.html.erb (Duration: 0.2ms | Allocations: 48) - Rendered users/index.html.erb within layouts/application (Duration: 4.3ms | Allocations: 943) - Rendered layout layouts/application.html.erb (Duration: 6.7ms | Allocations: 1999) -Completed 200 OK in 14ms (Views: 6.7ms | ActiveRecord: 1.4ms | Allocations: 3623) - - -Started GET "/users" for 127.0.0.1 at 2022-12-15 00:56:38 +0200 -Processing by UsersController#index as HTML - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 66) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 51) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 48) - Rendered users/index.html.erb within layouts/application (Duration: 5.1ms | Allocations: 938) - Rendered layout layouts/application.html.erb (Duration: 9.2ms | Allocations: 1995) -Completed 200 OK in 17ms (Views: 10.2ms | ActiveRecord: 0.9ms | Allocations: 3633) - - -Started GET "/" for 127.0.0.1 at 2022-12-15 00:56:43 +0200 -Processing by UsersController#index as HTML - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/_user.html.erb (Duration: 0.5ms | Allocations: 66) - Rendered users/_user.html.erb (Duration: 0.6ms | Allocations: 51) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 48) - Rendered users/index.html.erb within layouts/application (Duration: 6.5ms | Allocations: 938) - Rendered layout layouts/application.html.erb (Duration: 10.5ms | Allocations: 1994) -Completed 200 OK in 19ms (Views: 10.8ms | ActiveRecord: 1.0ms | Allocations: 3613) - - -Started GET "/" for 127.0.0.1 at 2022-12-15 00:56:45 +0200 -Processing by UsersController#index as HTML - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (0.8ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 66) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 51) - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 48) - Rendered users/index.html.erb within layouts/application (Duration: 5.6ms | Allocations: 938) - Rendered layout layouts/application.html.erb (Duration: 8.8ms | Allocations: 1994) -Completed 200 OK in 16ms (Views: 9.3ms | ActiveRecord: 1.2ms | Allocations: 3619) - - -Started GET "/users/3" for 127.0.0.1 at 2022-12-15 00:56:48 +0200 -Processing by UsersController#show as HTML - Parameters: {"id"=>"3"} - User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] - ↳ app/controllers/users_controller.rb:7:in `show' - Rendering layout layouts/application.html.erb - Rendering users/show.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 64) - Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 3], ["LIMIT", 3]] - ↳ app/views/users/show.html.erb:9 - Rendered users/show.html.erb within layouts/application (Duration: 3.7ms | Allocations: 866) - Rendered layout layouts/application.html.erb (Duration: 6.3ms | Allocations: 1914) -Completed 200 OK in 15ms (Views: 6.7ms | ActiveRecord: 1.3ms | Allocations: 3998) - - -Started GET "/users" for 127.0.0.1 at 2022-12-15 00:56:57 +0200 -Processing by UsersController#index as HTML - User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 66) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 51) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 48) - Rendered users/index.html.erb within layouts/application (Duration: 8.1ms | Allocations: 938) - Rendered layout layouts/application.html.erb (Duration: 13.5ms | Allocations: 1994) -Completed 200 OK in 25ms (Views: 15.0ms | ActiveRecord: 1.3ms | Allocations: 3613) - - -Started GET "/users" for 127.0.0.1 at 2022-12-15 00:56:58 +0200 -Processing by UsersController#index as HTML - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (1.0ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 66) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 51) - Rendered users/_user.html.erb (Duration: 0.5ms | Allocations: 48) - Rendered users/index.html.erb within layouts/application (Duration: 10.6ms | Allocations: 938) - Rendered layout layouts/application.html.erb (Duration: 14.5ms | Allocations: 1994) -Completed 200 OK in 28ms (Views: 19.5ms | ActiveRecord: 1.4ms | Allocations: 3623) - - - User Load (0.4ms) SELECT "users".* FROM "users" -Started GET "/posts/new" for 127.0.0.1 at 2022-12-15 00:57:36 +0200 -Processing by PostsController#new as HTML - User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering posts/new.html.erb within layouts/application - Rendered posts/new.html.erb within layouts/application (Duration: 4.3ms | Allocations: 872) - Rendered layout layouts/application.html.erb (Duration: 7.9ms | Allocations: 1916) -Completed 200 OK in 32ms (Views: 9.2ms | ActiveRecord: 6.2ms | Allocations: 5420) - - -Started POST "/posts/new" for 127.0.0.1 at 2022-12-15 00:57:41 +0200 -Processing by PostsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "post"=>{"title"=>"fff", "text"=>"ggg"}, "commit"=>"Create Post"} - User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - TRANSACTION (0.3ms) BEGIN - ↳ app/controllers/posts_controller.rb:31:in `create' - Post Create (0.9ms) INSERT INTO "posts" ("title", "text", "comments_counter", "likes_counter", "created_at", "updated_at", "author_id") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["title", "fff"], ["text", "ggg"], ["comments_counter", 0], ["likes_counter", 0], ["created_at", "2022-12-14 22:57:41.748553"], ["updated_at", "2022-12-14 22:57:41.748553"], ["author_id", 3]] - ↳ app/controllers/posts_controller.rb:31:in `create' - Post Count (0.6ms) SELECT COUNT(*) FROM "posts" WHERE "posts"."author_id" = $1 [["author_id", 3]] - ↳ app/models/post.rb:13:in `update_posts_counter' - User Update (0.7ms) UPDATE "users" SET "posts_counter" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["posts_counter", 1], ["updated_at", "2022-12-14 22:57:41.759722"], ["id", 3]] - ↳ app/models/post.rb:13:in `update_posts_counter' - TRANSACTION (174.9ms) COMMIT - ↳ app/controllers/posts_controller.rb:31:in `create' -Redirected to http://127.0.0.1:3000/posts/new -Completed 302 Found in 200ms (ActiveRecord: 177.7ms | Allocations: 6037) - - -Started GET "/posts/new" for 127.0.0.1 at 2022-12-15 00:57:41 +0200 -Processing by PostsController#new as HTML - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering posts/new.html.erb within layouts/application - Rendered posts/new.html.erb within layouts/application (Duration: 1.7ms | Allocations: 522) - Rendered layout layouts/application.html.erb (Duration: 5.5ms | Allocations: 1567) -Completed 200 OK in 12ms (Views: 6.6ms | ActiveRecord: 0.4ms | Allocations: 3203) - - -Started GET "/users/1" for 127.0.0.1 at 2022-12-15 00:57:47 +0200 -Processing by UsersController#show as HTML - Parameters: {"id"=>"1"} - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/users_controller.rb:7:in `show' - Rendering layout layouts/application.html.erb - Rendering users/show.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.5ms | Allocations: 66) - Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 1], ["LIMIT", 3]] - ↳ app/views/users/show.html.erb:9 - Comment Count (1.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (1.0ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 47.3ms | Allocations: 11500) - Comment Count (0.7ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 2]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.7ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 2]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 7.3ms | Allocations: 1446) - Comment Count (0.9ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 3]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.6ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 3]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 7.6ms | Allocations: 1413) - Rendered users/show.html.erb within layouts/application (Duration: 68.7ms | Allocations: 15513) - Rendered layout layouts/application.html.erb (Duration: 72.4ms | Allocations: 16672) -Completed 200 OK in 86ms (Views: 64.1ms | ActiveRecord: 10.8ms | Allocations: 18757) - - -Started GET "/users/1/posts" for 127.0.0.1 at 2022-12-15 00:57:50 +0200 -Processing by PostsController#index as HTML - Parameters: {"user_id"=>"1"} - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:3:in `index' - Rendering layout layouts/application.html.erb - Rendering posts/index.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 74) - Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 1], ["LIMIT", 3]] - ↳ app/views/posts/index.html.erb:5:in `each_with_index' - Comment Count (0.7ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.7ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 10.0ms | Allocations: 1414) - Comment Load (1.1ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 ORDER BY "comments"."created_at" DESC LIMIT $2 [["post_id", 1], ["LIMIT", 5]] - ↳ app/views/posts/index.html.erb:9 - User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/views/posts/index.html.erb:12 - CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/views/posts/index.html.erb:12 - CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/views/posts/index.html.erb:12 - CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/views/posts/index.html.erb:12 - CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/views/posts/index.html.erb:12 - Comment Count (0.7ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 2]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.6ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 2]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 7.5ms | Allocations: 1415) - Comment Load (0.6ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 ORDER BY "comments"."created_at" DESC LIMIT $2 [["post_id", 2], ["LIMIT", 5]] - ↳ app/views/posts/index.html.erb:9 - Comment Count (0.5ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 3]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.7ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 3]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 8.7ms | Allocations: 1415) - Comment Load (1.8ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 ORDER BY "comments"."created_at" DESC LIMIT $2 [["post_id", 3], ["LIMIT", 5]] - ↳ app/views/posts/index.html.erb:9 - Rendered posts/index.html.erb within layouts/application (Duration: 69.3ms | Allocations: 13020) - Rendered layout layouts/application.html.erb (Duration: 73.2ms | Allocations: 14069) -Completed 200 OK in 84ms (Views: 63.8ms | ActiveRecord: 12.5ms | Allocations: 16307) - - -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:57:53 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"1", "id"=>"1"} - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (0.6ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:6 - Like Count (0.7ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.5ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:14 - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 [["id", 1]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 20.9ms | Allocations: 4248) - Rendered layout layouts/application.html.erb (Duration: 23.9ms | Allocations: 5284) -Completed 200 OK in 47ms (Views: 22.8ms | ActiveRecord: 6.5ms | Allocations: 9684) - - -Started POST "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:57:56 +0200 -Processing by PostsController#create_comment as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "comment"=>{"text"=>"vvv"}, "commit"=>"Comment", "user_id"=>"1", "id"=>"1"} - User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:16:in `create_comment' - TRANSACTION (0.2ms) BEGIN - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Comment Create (1.1ms) INSERT INTO "comments" ("text", "created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["text", "vvv"], ["created_at", "2022-12-14 22:57:56.836793"], ["updated_at", "2022-12-14 22:57:56.836793"], ["author_id", 3], ["post_id", 1]] - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Post Update All (0.6ms) UPDATE "posts" SET "comments_counter" = COALESCE("comments_counter", 0) + $1 WHERE "posts"."id" = $2 [["comments_counter", 1], ["id", 1]] - ↳ app/models/comment.rb:8:in `update_comments_counter' - TRANSACTION (38.6ms) COMMIT - ↳ app/controllers/posts_controller.rb:18:in `create_comment' -Redirected to http://127.0.0.1:3000/users/1/posts/1 -Completed 302 Found in 59ms (ActiveRecord: 41.4ms | Allocations: 5007) - - -Started GET "/users/1/posts/1" for 127.0.0.1 at 2022-12-15 00:57:56 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"1", "id"=>"1"} - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (0.7ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:6 - Like Count (1.3ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.7ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 1]] - ↳ app/views/posts/show.html.erb:14 - User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" IN ($1, $2) [["id", 1], ["id", 3]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 17.7ms | Allocations: 3587) - Rendered layout layouts/application.html.erb (Duration: 21.0ms | Allocations: 4623) -Completed 200 OK in 34ms (Views: 18.6ms | ActiveRecord: 4.7ms | Allocations: 7188) - - -Started GET "/users" for 127.0.0.1 at 2022-12-15 00:58:04 +0200 -Processing by UsersController#index as HTML - User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (2.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 66) - Rendered users/_user.html.erb (Duration: 0.2ms | Allocations: 51) - Rendered users/_user.html.erb (Duration: 0.2ms | Allocations: 47) - Rendered users/index.html.erb within layouts/application (Duration: 5.5ms | Allocations: 938) - Rendered layout layouts/application.html.erb (Duration: 8.9ms | Allocations: 1994) -Completed 200 OK in 15ms (Views: 7.5ms | ActiveRecord: 2.6ms | Allocations: 3630) - - -Started GET "/users/3" for 127.0.0.1 at 2022-12-15 01:03:38 +0200 -Processing by UsersController#show as HTML - Parameters: {"id"=>"3"} - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] - ↳ app/controllers/users_controller.rb:7:in `show' - Rendering layout layouts/application.html.erb - Rendering users/show.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 63) - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 3], ["LIMIT", 3]] - ↳ app/views/users/show.html.erb:9 - Comment Count (0.7ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.7ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 7.9ms | Allocations: 1411) - Rendered users/show.html.erb within layouts/application (Duration: 12.8ms | Allocations: 2348) - Rendered layout layouts/application.html.erb (Duration: 16.0ms | Allocations: 3396) -Completed 200 OK in 30ms (Views: 15.5ms | ActiveRecord: 2.6ms | Allocations: 5465) - - -Started GET "/users/3/posts/5" for 127.0.0.1 at 2022-12-15 01:03:41 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"3", "id"=>"5"} - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Post Load (0.7ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 5], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (0.8ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/show.html.erb:6 - Like Count (0.5ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.5ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 14.0ms | Allocations: 2578) - Rendered layout layouts/application.html.erb (Duration: 17.8ms | Allocations: 3614) -Completed 200 OK in 35ms (Views: 17.7ms | ActiveRecord: 3.4ms | Allocations: 6183) - - -Started POST "/users/3/posts/5/likes" for 127.0.0.1 at 2022-12-15 01:03:42 +0200 -Processing by PostsController#create_like as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "commit"=>"Like post", "user_id"=>"3", "id"=>"5"} - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 5], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:22:in `create_like' - TRANSACTION (0.8ms) BEGIN - ↳ app/controllers/posts_controller.rb:23:in `create_like' - Like Create (1.9ms) INSERT INTO "likes" ("created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2022-12-14 23:03:42.698875"], ["updated_at", "2022-12-14 23:03:42.698875"], ["author_id", 3], ["post_id", 5]] - ↳ app/controllers/posts_controller.rb:23:in `create_like' - Like Load (0.3ms) SELECT "likes".* FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 5]] - ↳ app/models/like.rb:8:in `update_likes_counter' - User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] - ↳ app/models/like.rb:8:in `update_likes_counter' - Post Update (0.6ms) UPDATE "posts" SET "likes_counter" = $1, "updated_at" = $2 WHERE "posts"."id" = $3 [["likes_counter", 1], ["updated_at", "2022-12-14 23:03:42.713446"], ["id", 5]] - ↳ app/models/like.rb:8:in `update_likes_counter' - Post Count (0.5ms) SELECT COUNT(*) FROM "posts" WHERE "posts"."author_id" = $1 [["author_id", 3]] - ↳ app/models/post.rb:13:in `update_posts_counter' - TRANSACTION (37.2ms) COMMIT - ↳ app/controllers/posts_controller.rb:23:in `create_like' -Redirected to http://127.0.0.1:3000/users/3/posts/5 -Completed 302 Found in 73ms (ActiveRecord: 42.7ms | Allocations: 9096) - - -Started GET "/users/3/posts/5" for 127.0.0.1 at 2022-12-15 01:03:42 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"3", "id"=>"5"} - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 5], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (0.6ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/show.html.erb:6 - Like Count (0.6ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.7ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 10.9ms | Allocations: 2577) - Rendered layout layouts/application.html.erb (Duration: 13.9ms | Allocations: 3613) -Completed 200 OK in 28ms (Views: 14.0ms | ActiveRecord: 3.1ms | Allocations: 6174) - - -Started POST "/users/3/posts/5" for 127.0.0.1 at 2022-12-15 01:03:46 +0200 -Processing by PostsController#create_comment as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "comment"=>{"text"=>"erhhhh"}, "commit"=>"Comment", "user_id"=>"3", "id"=>"5"} - User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 5], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:16:in `create_comment' - TRANSACTION (0.2ms) BEGIN - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Comment Create (1.4ms) INSERT INTO "comments" ("text", "created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["text", "erhhhh"], ["created_at", "2022-12-14 23:03:46.662241"], ["updated_at", "2022-12-14 23:03:46.662241"], ["author_id", 3], ["post_id", 5]] - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Post Update All (0.6ms) UPDATE "posts" SET "comments_counter" = COALESCE("comments_counter", 0) + $1 WHERE "posts"."id" = $2 [["comments_counter", 1], ["id", 5]] - ↳ app/models/comment.rb:8:in `update_comments_counter' - TRANSACTION (21.2ms) COMMIT - ↳ app/controllers/posts_controller.rb:18:in `create_comment' -Redirected to http://127.0.0.1:3000/users/3/posts/5 -Completed 302 Found in 42ms (ActiveRecord: 24.1ms | Allocations: 4322) - - -Started GET "/users/3/posts/5" for 127.0.0.1 at 2022-12-15 01:03:46 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"3", "id"=>"5"} - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 5], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (0.6ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/show.html.erb:6 - Like Count (0.6ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.4ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/show.html.erb:14 - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 [["id", 3]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 15.4ms | Allocations: 3401) - Rendered layout layouts/application.html.erb (Duration: 18.2ms | Allocations: 4437) -Completed 200 OK in 29ms (Views: 17.1ms | ActiveRecord: 3.2ms | Allocations: 6994) - - -Started POST "/users/3/posts/5" for 127.0.0.1 at 2022-12-15 01:03:49 +0200 -Processing by PostsController#create_comment as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "comment"=>{"text"=>"fffff"}, "commit"=>"Comment", "user_id"=>"3", "id"=>"5"} - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Post Load (1.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 5], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:16:in `create_comment' - TRANSACTION (1.5ms) BEGIN - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Comment Create (0.9ms) INSERT INTO "comments" ("text", "created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["text", "fffff"], ["created_at", "2022-12-14 23:03:49.173824"], ["updated_at", "2022-12-14 23:03:49.173824"], ["author_id", 3], ["post_id", 5]] - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Post Update All (1.6ms) UPDATE "posts" SET "comments_counter" = COALESCE("comments_counter", 0) + $1 WHERE "posts"."id" = $2 [["comments_counter", 1], ["id", 5]] - ↳ app/models/comment.rb:8:in `update_comments_counter' - TRANSACTION (51.0ms) COMMIT - ↳ app/controllers/posts_controller.rb:18:in `create_comment' -Redirected to http://127.0.0.1:3000/users/3/posts/5 -Completed 302 Found in 92ms (ActiveRecord: 56.4ms | Allocations: 4332) - - -Started GET "/users/3/posts/5" for 127.0.0.1 at 2022-12-15 01:03:49 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"3", "id"=>"5"} - User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 5], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (0.7ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/show.html.erb:6 - Like Count (0.7ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.7ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/show.html.erb:14 - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 [["id", 3]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 15.5ms | Allocations: 3423) - Rendered layout layouts/application.html.erb (Duration: 19.0ms | Allocations: 4464) -Completed 200 OK in 33ms (Views: 18.3ms | ActiveRecord: 4.3ms | Allocations: 7025) - - -Started POST "/users/3/posts/5" for 127.0.0.1 at 2022-12-15 01:03:51 +0200 -Processing by PostsController#create_comment as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "comment"=>{"text"=>"fff"}, "commit"=>"Comment", "user_id"=>"3", "id"=>"5"} - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 5], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:16:in `create_comment' - TRANSACTION (0.5ms) BEGIN - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Comment Create (0.9ms) INSERT INTO "comments" ("text", "created_at", "updated_at", "author_id", "post_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["text", "fff"], ["created_at", "2022-12-14 23:03:51.298594"], ["updated_at", "2022-12-14 23:03:51.298594"], ["author_id", 3], ["post_id", 5]] - ↳ app/controllers/posts_controller.rb:18:in `create_comment' - Post Update All (0.6ms) UPDATE "posts" SET "comments_counter" = COALESCE("comments_counter", 0) + $1 WHERE "posts"."id" = $2 [["comments_counter", 1], ["id", 5]] - ↳ app/models/comment.rb:8:in `update_comments_counter' - TRANSACTION (40.3ms) COMMIT - ↳ app/controllers/posts_controller.rb:18:in `create_comment' -Redirected to http://127.0.0.1:3000/users/3/posts/5 -Completed 302 Found in 89ms (ActiveRecord: 43.3ms | Allocations: 4334) - - -Started GET "/users/3/posts/5" for 127.0.0.1 at 2022-12-15 01:03:51 +0200 -Processing by PostsController#show as HTML - Parameters: {"user_id"=>"3", "id"=>"5"} - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = $1 LIMIT $2 [["id", 5], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:8:in `show' - User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] - ↳ app/controllers/posts_controller.rb:9:in `show' - Rendering layout layouts/application.html.erb - Rendering posts/show.html.erb within layouts/application - Comment Count (2.0ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/show.html.erb:6 - Like Count (1.1ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/show.html.erb:7 - Comment Load (0.8ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/show.html.erb:14 - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 [["id", 3]] - ↳ app/views/posts/show.html.erb:14 - Rendered posts/show.html.erb within layouts/application (Duration: 16.2ms | Allocations: 3444) - Rendered layout layouts/application.html.erb (Duration: 19.1ms | Allocations: 4485) -Completed 200 OK in 32ms (Views: 15.4ms | ActiveRecord: 6.2ms | Allocations: 7041) - - -Started GET "/users" for 127.0.0.1 at 2022-12-15 01:04:01 +0200 -Processing by UsersController#index as HTML - User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (0.7ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/_user.html.erb (Duration: 0.8ms | Allocations: 66) - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 51) - Rendered users/_user.html.erb (Duration: 0.5ms | Allocations: 47) - Rendered users/index.html.erb within layouts/application (Duration: 13.3ms | Allocations: 937) - Rendered layout layouts/application.html.erb (Duration: 19.7ms | Allocations: 1993) -Completed 200 OK in 39ms (Views: 24.7ms | ActiveRecord: 1.4ms | Allocations: 3623) - - -Started GET "/users/3" for 127.0.0.1 at 2022-12-15 01:04:04 +0200 -Processing by UsersController#show as HTML - Parameters: {"id"=>"3"} - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] - ↳ app/controllers/users_controller.rb:7:in `show' - Rendering layout layouts/application.html.erb - Rendering users/show.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 63) - Post Load (0.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 3], ["LIMIT", 3]] - ↳ app/views/users/show.html.erb:9 - Comment Count (2.1ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.7ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 9.8ms | Allocations: 1409) - Rendered users/show.html.erb within layouts/application (Duration: 16.2ms | Allocations: 2346) - Rendered layout layouts/application.html.erb (Duration: 21.0ms | Allocations: 3398) -Completed 200 OK in 33ms (Views: 19.6ms | ActiveRecord: 4.7ms | Allocations: 5464) - - -Started GET "/posts/new" for 127.0.0.1 at 2022-12-15 01:04:09 +0200 -Processing by PostsController#new as HTML - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering posts/new.html.erb within layouts/application - Rendered posts/new.html.erb within layouts/application (Duration: 1.6ms | Allocations: 551) - Rendered layout layouts/application.html.erb (Duration: 8.8ms | Allocations: 1595) -Completed 200 OK in 15ms (Views: 10.4ms | ActiveRecord: 0.4ms | Allocations: 3220) - - -Started POST "/posts/new" for 127.0.0.1 at 2022-12-15 01:04:19 +0200 -Processing by PostsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "post"=>{"title"=>"Benjkkd", "text"=>"gjndfsbv "}, "commit"=>"Create Post"} - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - TRANSACTION (0.3ms) BEGIN - ↳ app/controllers/posts_controller.rb:31:in `create' - Post Create (0.8ms) INSERT INTO "posts" ("title", "text", "comments_counter", "likes_counter", "created_at", "updated_at", "author_id") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["title", "Benjkkd"], ["text", "gjndfsbv "], ["comments_counter", 0], ["likes_counter", 0], ["created_at", "2022-12-14 23:04:19.102098"], ["updated_at", "2022-12-14 23:04:19.102098"], ["author_id", 3]] - ↳ app/controllers/posts_controller.rb:31:in `create' - Post Count (0.7ms) SELECT COUNT(*) FROM "posts" WHERE "posts"."author_id" = $1 [["author_id", 3]] - ↳ app/models/post.rb:13:in `update_posts_counter' - User Update (0.7ms) UPDATE "users" SET "posts_counter" = $1, "updated_at" = $2 WHERE "users"."id" = $3 [["posts_counter", 2], ["updated_at", "2022-12-14 23:04:19.116646"], ["id", 3]] - ↳ app/models/post.rb:13:in `update_posts_counter' - TRANSACTION (58.1ms) COMMIT - ↳ app/controllers/posts_controller.rb:31:in `create' -Redirected to http://127.0.0.1:3000/posts/new -Completed 302 Found in 87ms (ActiveRecord: 60.9ms | Allocations: 5029) - - -Started GET "/posts/new" for 127.0.0.1 at 2022-12-15 01:04:19 +0200 -Processing by PostsController#new as HTML - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering posts/new.html.erb within layouts/application - Rendered posts/new.html.erb within layouts/application (Duration: 2.3ms | Allocations: 522) - Rendered layout layouts/application.html.erb (Duration: 5.1ms | Allocations: 1568) -Completed 200 OK in 13ms (Views: 6.1ms | ActiveRecord: 0.4ms | Allocations: 3202) - - -Started GET "/users" for 127.0.0.1 at 2022-12-15 01:04:23 +0200 -Processing by UsersController#index as HTML - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/_user.html.erb (Duration: 0.4ms | Allocations: 66) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 51) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 47) - Rendered users/index.html.erb within layouts/application (Duration: 4.6ms | Allocations: 937) - Rendered layout layouts/application.html.erb (Duration: 10.1ms | Allocations: 1993) -Completed 200 OK in 16ms (Views: 10.2ms | ActiveRecord: 1.0ms | Allocations: 3613) - - -Started GET "/users/3" for 127.0.0.1 at 2022-12-15 01:04:29 +0200 -Processing by UsersController#show as HTML - Parameters: {"id"=>"3"} - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] - ↳ app/controllers/users_controller.rb:7:in `show' - Rendering layout layouts/application.html.erb - Rendering users/show.html.erb within layouts/application - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 63) - Post Load (0.8ms) SELECT "posts".* FROM "posts" WHERE "posts"."author_id" = $1 ORDER BY "posts"."id" ASC LIMIT $2 [["author_id", 3], ["LIMIT", 3]] - ↳ app/views/users/show.html.erb:9 - Comment Count (0.7ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.5ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 5]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 5.5ms | Allocations: 1409) - Comment Count (0.6ms) SELECT COUNT(*) FROM "comments" WHERE "comments"."post_id" = $1 [["post_id", 6]] - ↳ app/views/posts/_post.html.erb:7 - Like Count (0.6ms) SELECT COUNT(*) FROM "likes" WHERE "likes"."post_id" = $1 [["post_id", 6]] - ↳ app/views/posts/_post.html.erb:8 - Rendered posts/_post.html.erb (Duration: 6.5ms | Allocations: 1414) - Rendered users/show.html.erb within layouts/application (Duration: 17.2ms | Allocations: 3825) - Rendered layout layouts/application.html.erb (Duration: 19.4ms | Allocations: 4873) -Completed 200 OK in 27ms (Views: 16.9ms | ActiveRecord: 4.4ms | Allocations: 6945) - - - User Load (1.5ms) SELECT "users".* FROM "users" -Started GET "/posts/new" for 127.0.0.1 at 2022-12-15 01:07:55 +0200 -Processing by PostsController#new as HTML - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering posts/new.html.erb within layouts/application - Rendered posts/new.html.erb within layouts/application (Duration: 1.8ms | Allocations: 522) - Rendered layout layouts/application.html.erb (Duration: 5.0ms | Allocations: 1566) -Completed 200 OK in 12ms (Views: 6.0ms | ActiveRecord: 0.4ms | Allocations: 3186) - - -Started GET "/posts/new" for 127.0.0.1 at 2022-12-15 01:09:00 +0200 -Processing by PostsController#new as HTML -Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms | Allocations: 209) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:09:00 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 167) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.5ms | Allocations: 1852) - Rendered layout layouts/application.html.erb (Duration: 7.7ms | Allocations: 3054) -Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.0ms | Allocations: 4682) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:10:27 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.7ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 5.1ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 77.0ms | Allocations: 12934) -Completed 200 OK in 80ms (Views: 78.2ms | ActiveRecord: 0.0ms | Allocations: 13709) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:10:42 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.3ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.6ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 54.4ms | Allocations: 5266) -Completed 200 OK in 57ms (Views: 55.1ms | ActiveRecord: 0.0ms | Allocations: 5946) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:11:35 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.7ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 6.7ms | Allocations: 2286) -Completed 200 OK in 10ms (Views: 7.9ms | ActiveRecord: 0.0ms | Allocations: 2964) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:18:49 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.6ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 6.5ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 42.1ms | Allocations: 5301) -Completed 200 OK in 45ms (Views: 43.2ms | Allocations: 5977) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:18:50 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.7ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 6.1ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 10.3ms | Allocations: 2286) -Completed 200 OK in 20ms (Views: 18.0ms | Allocations: 2970) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:18:50 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 6.7ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 13.4ms | Allocations: 2286) -Completed 200 OK in 19ms (Views: 17.2ms | Allocations: 2962) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:18:51 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 1.8ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 8.5ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 11.4ms | Allocations: 2286) -Completed 200 OK in 14ms (Views: 12.3ms | Allocations: 2966) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:20:08 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 2.6ms | Allocations: 574) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 9.2ms | Allocations: 2309) - Rendered layout layouts/application.html.erb (Duration: 22.0ms | Allocations: 6289) -Completed 200 OK in 29ms (Views: 26.7ms | Allocations: 7868) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:20:10 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.4ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 10.7ms | Allocations: 2286) -Completed 200 OK in 15ms (Views: 12.1ms | Allocations: 3060) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:20:16 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 2.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 5.7ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 103.3ms | Allocations: 4807) -Completed 200 OK in 106ms (Views: 104.4ms | Allocations: 5489) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:20:17 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 7.0ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 11.2ms | Allocations: 2286) -Completed 200 OK in 15ms (Views: 12.9ms | Allocations: 2960) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:20:17 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.3ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.7ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 6.8ms | Allocations: 2286) -Completed 200 OK in 10ms (Views: 8.2ms | Allocations: 2970) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:20:40 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.6ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.3ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 110.7ms | Allocations: 5313) -Completed 200 OK in 114ms (Views: 111.9ms | Allocations: 5991) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2022-12-15 01:20:58 +0200 -Processing by Devise::RegistrationsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 2.0ms | Allocations: 225) - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 93) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 11.8ms | Allocations: 2351) - Rendered layout layouts/application.html.erb (Duration: 17.2ms | Allocations: 3547) -Completed 200 OK in 23ms (Views: 20.7ms | Allocations: 4839) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:21:01 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.6ms | Allocations: 1256) - Rendered layout layouts/application.html.erb (Duration: 5.9ms | Allocations: 2290) -Completed 200 OK in 8ms (Views: 6.7ms | Allocations: 3057) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:22:53 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 2.5ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 71.6ms | Allocations: 4865) -Completed 200 OK in 75ms (Views: 72.6ms | Allocations: 5539) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:23:03 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.7ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.4ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 87.7ms | Allocations: 5745) -Completed 200 OK in 92ms (Views: 89.5ms | Allocations: 6419) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:23:13 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.1ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 13.9ms | Allocations: 4826) -Completed 200 OK in 17ms (Views: 15.0ms | Allocations: 5502) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:23:28 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.3ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 75.6ms | Allocations: 5757) -Completed 200 OK in 78ms (Views: 76.3ms | Allocations: 6434) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:23:46 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.7ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 13.9ms | Allocations: 4315) -Completed 200 OK in 17ms (Views: 15.3ms | Allocations: 4990) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:23:59 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.3ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.3ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 77.5ms | Allocations: 4785) -Completed 200 OK in 82ms (Views: 79.7ms | Allocations: 5463) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:24:13 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.3ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 2.8ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 222.4ms | Allocations: 2948) -Completed 200 OK in 225ms (Views: 223.2ms | Allocations: 3625) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:24:55 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 5.3ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 21.5ms | Allocations: 5275) -Completed 200 OK in 25ms (Views: 22.9ms | Allocations: 5965) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2022-12-15 01:24:57 +0200 -Processing by Devise::RegistrationsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 0.1ms | Allocations: 14) - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 82) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 6.0ms | Allocations: 1447) - Rendered layout layouts/application.html.erb (Duration: 9.8ms | Allocations: 2481) -Completed 200 OK in 13ms (Views: 11.3ms | Allocations: 3113) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2022-12-15 01:24:59 +0200 -Processing by Devise::RegistrationsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 0.0ms | Allocations: 14) - Rendered devise/shared/_links.html.erb (Duration: 0.3ms | Allocations: 82) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 4.1ms | Allocations: 1447) - Rendered layout layouts/application.html.erb (Duration: 6.8ms | Allocations: 2481) -Completed 200 OK in 10ms (Views: 8.2ms | Allocations: 3106) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:34:13 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.3ms | Allocations: 1252) - Rendered layout layouts/application.html.erb (Duration: 7.8ms | Allocations: 2286) -Completed 200 OK in 11ms (Views: 9.0ms | Allocations: 2956) - - -Started POST "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:37:24 +0200 -Processing by Devise::SessionsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} - User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] -Redirected to http://127.0.0.1:3000/posts/new -Completed 302 Found in 563ms (ActiveRecord: 71.2ms | Allocations: 5924) - - -Started GET "/posts/new" for 127.0.0.1 at 2022-12-15 01:37:25 +0200 -Processing by PostsController#new as HTML - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering posts/new.html.erb within layouts/application - Rendered posts/new.html.erb within layouts/application (Duration: 2.3ms | Allocations: 914) - Rendered layout layouts/application.html.erb (Duration: 4.5ms | Allocations: 2129) -Completed 200 OK in 11ms (Views: 6.2ms | ActiveRecord: 0.5ms | Allocations: 4271) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:37:30 +0200 -Processing by Devise::SessionsController#new as HTML - User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] -Redirected to http://127.0.0.1:3000/ -Filter chain halted as :require_no_authentication rendered or redirected -Completed 302 Found in 5ms (ActiveRecord: 0.4ms | Allocations: 1638) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:37:42 +0200 -Processing by Devise::SessionsController#new as HTML - User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] -Redirected to http://127.0.0.1:3000/ -Filter chain halted as :require_no_authentication rendered or redirected -Completed 302 Found in 7ms (ActiveRecord: 0.7ms | Allocations: 1379) - - -Started GET "/" for 127.0.0.1 at 2022-12-15 01:37:43 +0200 -Processing by UsersController#index as HTML - User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/_user.html.erb (Duration: 1.2ms | Allocations: 320) - Rendered users/_user.html.erb (Duration: 0.2ms | Allocations: 51) - Rendered users/_user.html.erb (Duration: 0.5ms | Allocations: 47) - Rendered users/index.html.erb within layouts/application (Duration: 41.1ms | Allocations: 1610) - Rendered layout layouts/application.html.erb (Duration: 44.4ms | Allocations: 2849) -Completed 200 OK in 54ms (Views: 46.9ms | ActiveRecord: 1.2ms | Allocations: 5039) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2022-12-15 01:38:00 +0200 -Processing by Devise::RegistrationsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 0.1ms | Allocations: 15) - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 82) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 5.0ms | Allocations: 1533) - Rendered layout layouts/application.html.erb (Duration: 7.6ms | Allocations: 2567) -Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.0ms | Allocations: 3172) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 01:38:04 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.2ms | Allocations: 1256) - Rendered layout layouts/application.html.erb (Duration: 7.6ms | Allocations: 2290) -Completed 200 OK in 11ms (Views: 8.8ms | ActiveRecord: 0.0ms | Allocations: 2986) - - -Started GET "/" for 127.0.0.1 at 2022-12-15 12:53:01 +0200 - ActiveRecord::SchemaMigration Pluck (35.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Processing by UsersController#index as HTML -Completed 401 Unauthorized in 238ms (ActiveRecord: 0.0ms | Allocations: 6494) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 12:53:05 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 25.4ms | Allocations: 913) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 274.9ms | Allocations: 4912) - Rendered layout layouts/application.html.erb (Duration: 2184.2ms | Allocations: 37089) -Completed 200 OK in 2975ms (Views: 2575.2ms | ActiveRecord: 185.0ms | Allocations: 60034) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 12:57:22 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.6ms | Allocations: 1266) - Rendered layout layouts/application.html.erb (Duration: 241.8ms | Allocations: 5373) -Completed 200 OK in 247ms (Views: 243.9ms | ActiveRecord: 0.0ms | Allocations: 6187) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 12:57:58 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 1.6ms | Allocations: 574) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 6.6ms | Allocations: 2318) - Rendered layout layouts/application.html.erb (Duration: 11.1ms | Allocations: 3731) -Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.0ms | Allocations: 5317) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 12:58:00 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.7ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 8.4ms | Allocations: 2297) -Completed 200 OK in 14ms (Views: 11.6ms | ActiveRecord: 0.0ms | Allocations: 3081) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 12:58:09 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.7ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.5ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 92.4ms | Allocations: 4456) -Completed 200 OK in 98ms (Views: 96.6ms | ActiveRecord: 0.0ms | Allocations: 5153) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 12:58:26 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.9ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 149.6ms | Allocations: 6265) -Completed 200 OK in 153ms (Views: 151.6ms | ActiveRecord: 0.0ms | Allocations: 6962) - - -Started POST "/users/sign_in" for 127.0.0.1 at 2022-12-15 12:58:32 +0200 -Processing by Devise::SessionsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} - User Load (55.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] -Redirected to http://127.0.0.1:3000/ -Completed 302 Found in 668ms (ActiveRecord: 56.1ms | Allocations: 7330) - - -Started GET "/" for 127.0.0.1 at 2022-12-15 12:58:32 +0200 -Processing by UsersController#index as HTML - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (0.8ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/_user.html.erb (Duration: 3.5ms | Allocations: 356) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 51) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 47) - Rendered users/index.html.erb within layouts/application (Duration: 10.3ms | Allocations: 1658) - Rendered layout layouts/application.html.erb (Duration: 13.8ms | Allocations: 2906) -Completed 200 OK in 29ms (Views: 18.2ms | ActiveRecord: 1.3ms | Allocations: 5312) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 12:58:35 +0200 -Processing by Devise::SessionsController#new as HTML - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] -Redirected to http://127.0.0.1:3000/ -Filter chain halted as :require_no_authentication rendered or redirected -Completed 302 Found in 8ms (ActiveRecord: 0.6ms | Allocations: 1590) - - -Started GET "/" for 127.0.0.1 at 2022-12-15 12:58:51 +0200 -Processing by UsersController#index as HTML -Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms | Allocations: 202) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 12:58:51 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.4ms | Allocations: 1298) - Rendered layout layouts/application.html.erb (Duration: 6.3ms | Allocations: 2334) -Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.0ms | Allocations: 3057) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 12:59:07 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.1ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 80.9ms | Allocations: 4428) -Completed 200 OK in 84ms (Views: 82.4ms | ActiveRecord: 0.0ms | Allocations: 5118) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 12:59:16 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.6ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 108.3ms | Allocations: 4800) -Completed 200 OK in 114ms (Views: 112.7ms | ActiveRecord: 0.0ms | Allocations: 5488) - - -Started GET "/users/password/new" for 127.0.0.1 at 2022-12-15 12:59:18 +0200 -Processing by Devise::PasswordsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/passwords/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 1.2ms | Allocations: 233) - Rendered devise/shared/_links.html.erb (Duration: 2.7ms | Allocations: 280) - Rendered devise/passwords/new.html.erb within layouts/application (Duration: 9.7ms | Allocations: 1838) - Rendered layout layouts/application.html.erb (Duration: 14.8ms | Allocations: 3034) -Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.0ms | Allocations: 4550) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 12:59:22 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 9.3ms | Allocations: 1269) - Rendered layout layouts/application.html.erb (Duration: 12.0ms | Allocations: 2303) -Completed 200 OK in 19ms (Views: 15.0ms | ActiveRecord: 0.0ms | Allocations: 3093) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 12:59:25 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 6.7ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 9.6ms | Allocations: 2297) -Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.0ms | Allocations: 2971) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 12:59:26 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.6ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 9.6ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 15.7ms | Allocations: 2297) -Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.0ms | Allocations: 2985) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2022-12-15 13:00:00 +0200 -Processing by Devise::RegistrationsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 0.1ms | Allocations: 18) - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 102) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 10.4ms | Allocations: 2326) - Rendered layout layouts/application.html.erb (Duration: 13.7ms | Allocations: 3522) -Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 0.0ms | Allocations: 5084) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:07:13 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 3.8ms | Allocations: 590) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 9.6ms | Allocations: 2332) - Rendered layout layouts/application.html.erb (Duration: 70.0ms | Allocations: 6374) -Completed 200 OK in 79ms (Views: 73.6ms | Allocations: 8041) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:07:28 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 149) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 5.0ms | Allocations: 1274) - Rendered layout layouts/application.html.erb (Duration: 64.0ms | Allocations: 5329) -Completed 200 OK in 69ms (Views: 66.2ms | Allocations: 6101) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:08:37 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 2.0ms | Allocations: 615) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 6.9ms | Allocations: 2357) - Rendered layout layouts/application.html.erb (Duration: 11.6ms | Allocations: 3769) -Completed 200 OK in 17ms (Views: 14.9ms | Allocations: 5342) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:09:53 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.3ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 5.2ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 92.4ms | Allocations: 4426) -Completed 200 OK in 100ms (Views: 98.1ms | Allocations: 5201) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:10:09 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.3ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.1ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 401.8ms | Allocations: 5308) -Completed 200 OK in 404ms (Views: 402.6ms | Allocations: 5978) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:10:11 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.5ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 7.4ms | Allocations: 2298) -Completed 200 OK in 16ms (Views: 14.2ms | Allocations: 2971) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:10:12 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.7ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 12.0ms | Allocations: 2302) -Completed 200 OK in 22ms (Views: 13.1ms | Allocations: 2976) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:10:23 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.3ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.6ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 130.5ms | Allocations: 4851) -Completed 200 OK in 133ms (Views: 131.5ms | Allocations: 5531) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:10:24 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 8.4ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 13.3ms | Allocations: 2297) -Completed 200 OK in 19ms (Views: 18.0ms | Allocations: 2971) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:10:30 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 7.1ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 112.0ms | Allocations: 4876) -Completed 200 OK in 116ms (Views: 114.2ms | Allocations: 5552) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:10:47 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 8.2ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 92.6ms | Allocations: 5320) -Completed 200 OK in 95ms (Views: 93.6ms | Allocations: 5992) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:11:05 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 8.9ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 84.1ms | Allocations: 4842) -Completed 200 OK in 88ms (Views: 85.5ms | Allocations: 5518) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:11:11 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 6.4ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 79.5ms | Allocations: 5269) -Completed 200 OK in 84ms (Views: 82.7ms | Allocations: 5941) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:11:36 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.6ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 6.9ms | Allocations: 2337) -Completed 200 OK in 10ms (Views: 7.9ms | Allocations: 3005) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:14:39 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.9ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 21.5ms | Allocations: 4800) -Completed 200 OK in 31ms (Views: 22.7ms | Allocations: 5472) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:14:47 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.5ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 128.8ms | Allocations: 5822) -Completed 200 OK in 132ms (Views: 129.9ms | Allocations: 6502) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:14:54 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.2ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 40.2ms | Allocations: 4850) -Completed 200 OK in 42ms (Views: 41.0ms | Allocations: 5522) - - -Started POST "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:15:01 +0200 -Processing by Devise::SessionsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} - User Load (38.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] -Redirected to http://127.0.0.1:3000/ -Completed 302 Found in 631ms (ActiveRecord: 44.9ms | Allocations: 5837) - - -Started GET "/" for 127.0.0.1 at 2022-12-15 13:15:02 +0200 -Processing by UsersController#index as HTML - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]] - Rendering layout layouts/application.html.erb - Rendering users/index.html.erb within layouts/application - User Load (1.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC - ↳ app/views/users/index.html.erb:2 - Rendered users/_user.html.erb (Duration: 1.6ms | Allocations: 320) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 51) - Rendered users/_user.html.erb (Duration: 0.3ms | Allocations: 47) - Rendered users/index.html.erb within layouts/application (Duration: 8.2ms | Allocations: 1615) - Rendered layout layouts/application.html.erb (Duration: 13.0ms | Allocations: 2865) -Completed 200 OK in 26ms (Views: 16.0ms | ActiveRecord: 1.6ms | Allocations: 5003) - - -Started GET "/" for 127.0.0.1 at 2022-12-15 13:15:21 +0200 -Processing by UsersController#index as HTML -Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms | Allocations: 231) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:15:21 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 8.7ms | Allocations: 1298) - Rendered layout layouts/application.html.erb (Duration: 12.7ms | Allocations: 2334) -Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.0ms | Allocations: 3075) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:17:37 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.3ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.6ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 6.5ms | Allocations: 2297) -Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.0ms | Allocations: 2967) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:18:19 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.3ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.8ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 40.6ms | Allocations: 5401) -Completed 200 OK in 43ms (Views: 41.5ms | ActiveRecord: 0.0ms | Allocations: 6073) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:18:30 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.8ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 7.0ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 19.6ms | Allocations: 4852) -Completed 200 OK in 25ms (Views: 21.7ms | ActiveRecord: 0.0ms | Allocations: 5540) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:18:42 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 14.2ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 27.2ms | Allocations: 5805) -Completed 200 OK in 31ms (Views: 28.8ms | ActiveRecord: 0.0ms | Allocations: 6477) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:18:56 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 7.4ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 48.1ms | Allocations: 4374) -Completed 200 OK in 54ms (Views: 52.1ms | ActiveRecord: 0.0ms | Allocations: 5050) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:19:04 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 8.7ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 14.9ms | Allocations: 2337) -Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.0ms | Allocations: 3015) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:19:17 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.9ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.7ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 14.1ms | Allocations: 5312) -Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.0ms | Allocations: 5998) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:19:32 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.8ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 8.1ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 39.1ms | Allocations: 4845) -Completed 200 OK in 42ms (Views: 40.1ms | ActiveRecord: 0.0ms | Allocations: 5527) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 13:19:43 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.3ms | Allocations: 138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.1ms | Allocations: 1263) - Rendered layout layouts/application.html.erb (Duration: 33.2ms | Allocations: 5355) -Completed 200 OK in 36ms (Views: 34.2ms | ActiveRecord: 0.0ms | Allocations: 6033) - - -Started GET "/" for 127.0.0.1 at 2022-12-15 16:16:05 +0200 - ActiveRecord::SchemaMigration Pluck (1.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Processing by UsersController#index as HTML -Completed 401 Unauthorized in 171ms (ActiveRecord: 0.0ms | Allocations: 6501) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 16:16:07 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 23.8ms | Allocations: 1138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 230.9ms | Allocations: 5153) - Rendered layout layouts/application.html.erb (Duration: 888.6ms | Allocations: 37942) -Completed 200 OK in 1249ms (Views: 1082.4ms | ActiveRecord: 10.4ms | Allocations: 60891) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2022-12-15 16:16:18 +0200 -Processing by Devise::RegistrationsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 8.8ms | Allocations: 232) - Rendered devise/shared/_links.html.erb (Duration: 3.5ms | Allocations: 284) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 88.5ms | Allocations: 2789) - Rendered layout layouts/application.html.erb (Duration: 122.4ms | Allocations: 3986) -Completed 200 OK in 130ms (Views: 128.1ms | ActiveRecord: 0.0ms | Allocations: 5575) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2022-12-15 16:16:33 +0200 -Processing by Devise::RegistrationsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 0.1ms | Allocations: 14) - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 139) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 8.4ms | Allocations: 1528) - Rendered layout layouts/application.html.erb (Duration: 11.5ms | Allocations: 2563) -Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.0ms | Allocations: 3182) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 16:16:37 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 195) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.9ms | Allocations: 1325) - Rendered layout layouts/application.html.erb (Duration: 8.1ms | Allocations: 2360) -Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.0ms | Allocations: 3066) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2022-12-15 16:16:40 +0200 -Processing by Devise::RegistrationsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 0.4ms | Allocations: 14) - Rendered devise/shared/_links.html.erb (Duration: 1.2ms | Allocations: 139) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 13.1ms | Allocations: 1504) - Rendered layout layouts/application.html.erb (Duration: 27.8ms | Allocations: 2539) -Completed 200 OK in 34ms (Views: 32.5ms | ActiveRecord: 0.0ms | Allocations: 3179) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 16:16:52 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :password_confirmation. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin Kisenge", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.3ms) BEGIN - User Exists? (2.4ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.3ms) ROLLBACK - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 2.5ms | Allocations: 614) - Rendered devise/shared/_links.html.erb (Duration: 0.9ms | Allocations: 155) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 13.4ms | Allocations: 2838) - Rendered layout layouts/application.html.erb (Duration: 16.8ms | Allocations: 4021) -Completed 200 OK in 705ms (Views: 18.0ms | ActiveRecord: 3.0ms | Allocations: 13676) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 16:17:16 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.6ms | Allocations: 195) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 8.6ms | Allocations: 1328) - Rendered layout layouts/application.html.erb (Duration: 12.2ms | Allocations: 2362) -Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.0ms | Allocations: 3131) - - -Started POST "/users/sign_in" for 127.0.0.1 at 2022-12-15 16:17:19 +0200 -Processing by Devise::SessionsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] -Completed 500 Internal Server Error in 609ms (ActiveRecord: 1.1ms | Allocations: 7420) - - - -NameError (undefined local variable or method `confirmed_at' for # -Did you mean? confirmed?): - -activemodel (7.0.4) lib/active_model/attribute_methods.rb:458:in `method_missing' -devise (4.8.1) lib/devise/models/confirmable.rb:107:in `confirmed?' -devise (4.8.1) lib/devise/models/confirmable.rb:188:in `confirmation_required?' -devise (4.8.1) lib/devise/models/confirmable.rb:145:in `active_for_authentication?' -devise (4.8.1) lib/devise/hooks/activatable.rb:7:in `block in
' -warden (1.2.9) lib/warden/hooks.rb:15:in `block in _run_callbacks' -warden (1.2.9) lib/warden/hooks.rb:10:in `each' -warden (1.2.9) lib/warden/hooks.rb:10:in `_run_callbacks' -warden (1.2.9) lib/warden/manager.rb:52:in `_run_callbacks' -warden (1.2.9) lib/warden/proxy.rb:191:in `set_user' -warden (1.2.9) lib/warden/proxy.rb:339:in `_perform_authentication' -warden (1.2.9) lib/warden/proxy.rb:133:in `authenticate!' -devise (4.8.1) app/controllers/devise/sessions_controller.rb:19:in `create' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/mapper.rb:18:in `block in ' -actionpack (7.0.4) lib/action_dispatch/routing/mapper.rb:48:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -warden (1.2.9) lib/warden/manager.rb:36:in `block in call' -warden (1.2.9) lib/warden/manager.rb:34:in `catch' -warden (1.2.9) lib/warden/manager.rb:34:in `call' -rack (2.2.4) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.4) lib/rack/etag.rb:27:in `call' -rack (2.2.4) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.4) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.4) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.4) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.4) lib/rack/method_override.rb:24:in `call' -rack (2.2.4) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.4) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -Started GET "/users/sign_up" for 127.0.0.1 at 2022-12-15 16:17:52 +0200 -Processing by Devise::RegistrationsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 0.1ms | Allocations: 15) - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 140) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 12.9ms | Allocations: 1613) - Rendered layout layouts/application.html.erb (Duration: 21.1ms | Allocations: 2750) -Completed 200 OK in 28ms (Views: 26.1ms | ActiveRecord: 0.0ms | Allocations: 3500) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 16:18:17 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Alan", "email"=>"alanluqman2016@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :password_confirmation. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Alan", "email"=>"alanluqman2016@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.8ms) BEGIN - User Exists? (0.6ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "alanluqman2016@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.5ms) ROLLBACK -Completed 500 Internal Server Error in 390ms (ActiveRecord: 1.9ms | Allocations: 8826) - - - -NameError (undefined local variable or method `confirmed_at' for # -Did you mean? confirmed?): - -activemodel (7.0.4) lib/active_model/attribute_methods.rb:458:in `method_missing' -devise (4.8.1) lib/devise/models/confirmable.rb:107:in `confirmed?' -devise (4.8.1) lib/devise/models/confirmable.rb:188:in `confirmation_required?' -activesupport (7.0.4) lib/active_support/callbacks.rb:400:in `block in make_lambda' -activesupport (7.0.4) lib/active_support/callbacks.rb:179:in `block (2 levels) in halting_and_conditional' -activesupport (7.0.4) lib/active_support/callbacks.rb:179:in `all?' -activesupport (7.0.4) lib/active_support/callbacks.rb:179:in `block in halting_and_conditional' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `block in invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `each' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:106:in `run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:929:in `_run_create_callbacks' -activerecord (7.0.4) lib/active_record/callbacks.rb:461:in `_create_record' -activerecord (7.0.4) lib/active_record/timestamp.rb:108:in `_create_record' -activerecord (7.0.4) lib/active_record/persistence.rb:1067:in `create_or_update' -activerecord (7.0.4) lib/active_record/callbacks.rb:457:in `block in create_or_update' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -activerecord (7.0.4) lib/active_record/autosave_association.rb:370:in `around_save_collection_association' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:929:in `_run_save_callbacks' -activerecord (7.0.4) lib/active_record/callbacks.rb:457:in `create_or_update' -activerecord (7.0.4) lib/active_record/timestamp.rb:126:in `create_or_update' -activerecord (7.0.4) lib/active_record/persistence.rb:615:in `save' -activerecord (7.0.4) lib/active_record/validations.rb:47:in `save' -activerecord (7.0.4) lib/active_record/transactions.rb:298:in `block in save' -activerecord (7.0.4) lib/active_record/transactions.rb:354:in `block in with_transaction_returning_status' -activerecord (7.0.4) lib/active_record/connection_adapters/abstract/transaction.rb:319:in `block in within_new_transaction' -activesupport (7.0.4) lib/active_support/concurrency/load_interlock_aware_monitor.rb:25:in `handle_interrupt' -activesupport (7.0.4) lib/active_support/concurrency/load_interlock_aware_monitor.rb:25:in `block in synchronize' -activesupport (7.0.4) lib/active_support/concurrency/load_interlock_aware_monitor.rb:21:in `handle_interrupt' -activesupport (7.0.4) lib/active_support/concurrency/load_interlock_aware_monitor.rb:21:in `synchronize' -activerecord (7.0.4) lib/active_record/connection_adapters/abstract/transaction.rb:317:in `within_new_transaction' -activerecord (7.0.4) lib/active_record/connection_adapters/abstract/database_statements.rb:316:in `transaction' -activerecord (7.0.4) lib/active_record/transactions.rb:350:in `with_transaction_returning_status' -activerecord (7.0.4) lib/active_record/transactions.rb:298:in `save' -activerecord (7.0.4) lib/active_record/suppressor.rb:50:in `save' -devise (4.8.1) app/controllers/devise/registrations_controller.rb:19:in `create' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/mapper.rb:18:in `block in ' -actionpack (7.0.4) lib/action_dispatch/routing/mapper.rb:48:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -warden (1.2.9) lib/warden/manager.rb:36:in `block in call' -warden (1.2.9) lib/warden/manager.rb:34:in `catch' -warden (1.2.9) lib/warden/manager.rb:34:in `call' -rack (2.2.4) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.4) lib/rack/etag.rb:27:in `call' -rack (2.2.4) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.4) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.4) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.4) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.4) lib/rack/method_override.rb:24:in `call' -rack (2.2.4) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.4) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' -  (0.3ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to AddConfirmableToDeviseV1 (20221215142016) -  (3.6ms) SELECT pg_advisory_unlock(4753324116888153030) -  (0.2ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to AddConfirmableToDeviseV1 (20221215142016) -  (0.5ms) SELECT pg_advisory_unlock(4753324116888153030) -  (0.2ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to AddConfirmableToDeviseV1 (20221215142016) -  (0.4ms) SELECT pg_advisory_unlock(4753324116888153030) -  (0.2ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (0.5ms) SELECT pg_advisory_unlock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -  (1.3ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (2.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Load (1.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (2.2ms) SELECT pg_advisory_unlock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (2.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Started POST "/users" for 127.0.0.1 at 2022-12-15 16:24:37 +0200 - ActiveRecord::SchemaMigration Pluck (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Alan", "email"=>"alanluqman2016@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :password_confirmation. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Alan", "email"=>"alanluqman2016@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.8ms) BEGIN - User Exists? (1.8ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "alanluqman2016@gmail.com"], ["LIMIT", 1]] - TRANSACTION (0.8ms) ROLLBACK -Completed 500 Internal Server Error in 413ms (ActiveRecord: 3.3ms | Allocations: 12664) - - - -NameError (undefined local variable or method `confirmed_at' for # -Did you mean? confirmed?): - -activemodel (7.0.4) lib/active_model/attribute_methods.rb:458:in `method_missing' -devise (4.8.1) lib/devise/models/confirmable.rb:107:in `confirmed?' -devise (4.8.1) lib/devise/models/confirmable.rb:188:in `confirmation_required?' -activesupport (7.0.4) lib/active_support/callbacks.rb:400:in `block in make_lambda' -activesupport (7.0.4) lib/active_support/callbacks.rb:179:in `block (2 levels) in halting_and_conditional' -activesupport (7.0.4) lib/active_support/callbacks.rb:179:in `all?' -activesupport (7.0.4) lib/active_support/callbacks.rb:179:in `block in halting_and_conditional' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `block in invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `each' -activesupport (7.0.4) lib/active_support/callbacks.rb:595:in `invoke_before' -activesupport (7.0.4) lib/active_support/callbacks.rb:106:in `run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:929:in `_run_create_callbacks' -activerecord (7.0.4) lib/active_record/callbacks.rb:461:in `_create_record' -activerecord (7.0.4) lib/active_record/timestamp.rb:108:in `_create_record' -activerecord (7.0.4) lib/active_record/persistence.rb:1067:in `create_or_update' -activerecord (7.0.4) lib/active_record/callbacks.rb:457:in `block in create_or_update' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -activerecord (7.0.4) lib/active_record/autosave_association.rb:370:in `around_save_collection_association' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:929:in `_run_save_callbacks' -activerecord (7.0.4) lib/active_record/callbacks.rb:457:in `create_or_update' -activerecord (7.0.4) lib/active_record/timestamp.rb:126:in `create_or_update' -activerecord (7.0.4) lib/active_record/persistence.rb:615:in `save' -activerecord (7.0.4) lib/active_record/validations.rb:47:in `save' -activerecord (7.0.4) lib/active_record/transactions.rb:298:in `block in save' -activerecord (7.0.4) lib/active_record/transactions.rb:354:in `block in with_transaction_returning_status' -activerecord (7.0.4) lib/active_record/connection_adapters/abstract/transaction.rb:319:in `block in within_new_transaction' -activesupport (7.0.4) lib/active_support/concurrency/load_interlock_aware_monitor.rb:25:in `handle_interrupt' -activesupport (7.0.4) lib/active_support/concurrency/load_interlock_aware_monitor.rb:25:in `block in synchronize' -activesupport (7.0.4) lib/active_support/concurrency/load_interlock_aware_monitor.rb:21:in `handle_interrupt' -activesupport (7.0.4) lib/active_support/concurrency/load_interlock_aware_monitor.rb:21:in `synchronize' -activerecord (7.0.4) lib/active_record/connection_adapters/abstract/transaction.rb:317:in `within_new_transaction' -activerecord (7.0.4) lib/active_record/connection_adapters/abstract/database_statements.rb:316:in `transaction' -activerecord (7.0.4) lib/active_record/transactions.rb:350:in `with_transaction_returning_status' -activerecord (7.0.4) lib/active_record/transactions.rb:298:in `save' -activerecord (7.0.4) lib/active_record/suppressor.rb:50:in `save' -devise (4.8.1) app/controllers/devise/registrations_controller.rb:19:in `create' -actionpack (7.0.4) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:215:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rendering.rb:53:in `process_action' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:234:in `block in process_action' -activesupport (7.0.4) lib/active_support/callbacks.rb:118:in `block in run_callbacks' -actiontext (7.0.4) lib/action_text/rendering.rb:20:in `with_renderer' -actiontext (7.0.4) lib/action_text/engine.rb:69:in `block (4 levels) in ' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `instance_exec' -activesupport (7.0.4) lib/active_support/callbacks.rb:127:in `block in run_callbacks' -activesupport (7.0.4) lib/active_support/callbacks.rb:138:in `run_callbacks' -actionpack (7.0.4) lib/abstract_controller/callbacks.rb:233:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/rescue.rb:22:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `block in instrument' -activesupport (7.0.4) lib/active_support/notifications/instrumenter.rb:24:in `instrument' -activesupport (7.0.4) lib/active_support/notifications.rb:206:in `instrument' -actionpack (7.0.4) lib/action_controller/metal/instrumentation.rb:66:in `process_action' -actionpack (7.0.4) lib/action_controller/metal/params_wrapper.rb:259:in `process_action' -activerecord (7.0.4) lib/active_record/railties/controller_runtime.rb:27:in `process_action' -actionpack (7.0.4) lib/abstract_controller/base.rb:151:in `process' -actionview (7.0.4) lib/action_view/rendering.rb:39:in `process' -actionpack (7.0.4) lib/action_controller/metal.rb:188:in `dispatch' -actionpack (7.0.4) lib/action_controller/metal.rb:251:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/mapper.rb:18:in `block in ' -actionpack (7.0.4) lib/action_dispatch/routing/mapper.rb:48:in `serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `each' -actionpack (7.0.4) lib/action_dispatch/journey/router.rb:32:in `serve' -actionpack (7.0.4) lib/action_dispatch/routing/route_set.rb:852:in `call' -warden (1.2.9) lib/warden/manager.rb:36:in `block in call' -warden (1.2.9) lib/warden/manager.rb:34:in `catch' -warden (1.2.9) lib/warden/manager.rb:34:in `call' -rack (2.2.4) lib/rack/tempfile_reaper.rb:15:in `call' -rack (2.2.4) lib/rack/etag.rb:27:in `call' -rack (2.2.4) lib/rack/conditional_get.rb:40:in `call' -rack (2.2.4) lib/rack/head.rb:12:in `call' -actionpack (7.0.4) lib/action_dispatch/http/permissions_policy.rb:38:in `call' -actionpack (7.0.4) lib/action_dispatch/http/content_security_policy.rb:36:in `call' -rack (2.2.4) lib/rack/session/abstract/id.rb:266:in `context' -rack (2.2.4) lib/rack/session/abstract/id.rb:260:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/cookies.rb:696:in `call' -activerecord (7.0.4) lib/active_record/migration.rb:603:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call' -activesupport (7.0.4) lib/active_support/callbacks.rb:99:in `run_callbacks' -actionpack (7.0.4) lib/action_dispatch/middleware/callbacks.rb:26:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/actionable_exceptions.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call' -web-console (4.2.0) lib/web_console/middleware.rb:132:in `call_app' -web-console (4.2.0) lib/web_console/middleware.rb:28:in `block in call' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `catch' -web-console (4.2.0) lib/web_console/middleware.rb:17:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call' -railties (7.0.4) lib/rails/rack/logger.rb:40:in `call_app' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `block in call' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `block in tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:37:in `tagged' -activesupport (7.0.4) lib/active_support/tagged_logging.rb:99:in `tagged' -railties (7.0.4) lib/rails/rack/logger.rb:25:in `call' -sprockets-rails (3.4.2) lib/sprockets/rails/quiet_assets.rb:13:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/remote_ip.rb:93:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/request_id.rb:26:in `call' -rack (2.2.4) lib/rack/method_override.rb:24:in `call' -rack (2.2.4) lib/rack/runtime.rb:22:in `call' -activesupport (7.0.4) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:61:in `block in call' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:26:in `collect_events' -actionpack (7.0.4) lib/action_dispatch/middleware/server_timing.rb:60:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/executor.rb:14:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/static.rb:23:in `call' -rack (2.2.4) lib/rack/sendfile.rb:110:in `call' -actionpack (7.0.4) lib/action_dispatch/middleware/host_authorization.rb:137:in `call' -railties (7.0.4) lib/rails/engine.rb:530:in `call' -puma (5.6.5) lib/puma/configuration.rb:252:in `call' -puma (5.6.5) lib/puma/request.rb:77:in `block in handle_request' -puma (5.6.5) lib/puma/thread_pool.rb:340:in `with_force_shutdown' -puma (5.6.5) lib/puma/request.rb:76:in `handle_request' -puma (5.6.5) lib/puma/server.rb:443:in `process_client' -puma (5.6.5) lib/puma/thread_pool.rb:147:in `block in spawn_thread' - ActiveRecord::SchemaMigration Pluck (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (5083.1ms) DROP DATABASE IF EXISTS "blogApp_development" - ActiveRecord::SchemaMigration Pluck (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (5008.0ms) DROP DATABASE IF EXISTS "blogApp_development" -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 16:27:52 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.6ms | Allocations: 229) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 5.1ms | Allocations: 1593) - Rendered layout layouts/application.html.erb (Duration: 8.3ms | Allocations: 2794) -Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.0ms | Allocations: 4163) - - - ActiveRecord::SchemaMigration Pluck (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.7ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.6ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (5047.7ms) DROP DATABASE IF EXISTS "blogApp_development" - ActiveRecord::SchemaMigration Pluck (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.6ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (5009.1ms) DROP DATABASE IF EXISTS "blogApp_development" - ActiveRecord::SchemaMigration Pluck (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - ActiveRecord::SchemaMigration Pluck (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Pluck (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (559.3ms) DROP DATABASE IF EXISTS "blogApp_development" -  (620.8ms) DROP DATABASE IF EXISTS "blogApp_test" -  (2414.0ms) CREATE DATABASE "blogApp_development" ENCODING = 'unicode' -  (1197.1ms) CREATE DATABASE "blogApp_test" ENCODING = 'unicode' -  (171.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY) -  (143.5ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) -  (0.3ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Migrating to CreateUsers (20221201184100) - TRANSACTION (0.5ms) BEGIN -  (165.7ms) CREATE TABLE "users" ("id" bigserial primary key, "name" character varying, "photo" character varying, "bio" character varying, "posts_counter" integer, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::SchemaMigration Create (15.8ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201184100"]] - TRANSACTION (17.2ms) COMMIT -Migrating to CreateLikes (20221201190339) - TRANSACTION (0.5ms) BEGIN -  (64.7ms) CREATE TABLE "likes" ("id" bigserial primary key, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201190339"]] - TRANSACTION (30.1ms) COMMIT -Migrating to CreatePosts (20221201190905) - TRANSACTION (0.4ms) BEGIN -  (121.6ms) CREATE TABLE "posts" ("id" bigserial primary key, "title" character varying, "text" character varying, "comments_counter" integer, "likes_counter" integer, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::SchemaMigration Create (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201190905"]] - TRANSACTION (18.4ms) COMMIT -Migrating to AddUsersToPosts (20221201191540) - TRANSACTION (0.4ms) BEGIN -  (0.7ms) ALTER TABLE "posts" ADD "users_id" bigint NOT NULL -  (63.9ms) CREATE INDEX "index_posts_on_users_id" ON "posts" ("users_id") -  (24.3ms) ALTER TABLE "posts" ADD CONSTRAINT "fk_rails_403c3577f5" -FOREIGN KEY ("users_id") - REFERENCES "users" ("id") - - ActiveRecord::SchemaMigration Create (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201191540"]] - TRANSACTION (19.3ms) COMMIT -Migrating to AddAuthorToLikes (20221201192340) - TRANSACTION (0.6ms) BEGIN -  (0.8ms) ALTER TABLE "likes" ADD "author_id" bigint NOT NULL -  (46.9ms) CREATE INDEX "index_likes_on_author_id" ON "likes" ("author_id") -  (3.5ms) ALTER TABLE "likes" ADD CONSTRAINT "fk_rails_1f2302367a" -FOREIGN KEY ("author_id") - REFERENCES "users" ("id") - - ActiveRecord::SchemaMigration Create (1.9ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201192340"]] - TRANSACTION (20.5ms) COMMIT -Migrating to CreateComments (20221201194057) - TRANSACTION (0.5ms) BEGIN -  (139.3ms) CREATE TABLE "comments" ("id" bigserial primary key, "text" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL) - ActiveRecord::SchemaMigration Create (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201194057"]] - TRANSACTION (20.9ms) COMMIT -Migrating to AddAuthorToComments (20221201194313) - TRANSACTION (0.7ms) BEGIN -  (1.3ms) ALTER TABLE "comments" ADD "author_id" bigint NOT NULL -  (47.1ms) CREATE INDEX "index_comments_on_author_id" ON "comments" ("author_id") -  (3.3ms) ALTER TABLE "comments" ADD CONSTRAINT "fk_rails_f44b1e3c8a" -FOREIGN KEY ("author_id") - REFERENCES "users" ("id") - - ActiveRecord::SchemaMigration Create (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201194313"]] - TRANSACTION (23.3ms) COMMIT -Migrating to AddAuthorToPosts (20221201194449) - TRANSACTION (0.3ms) BEGIN -  (0.5ms) ALTER TABLE "posts" ADD "author_id" bigint NOT NULL -  (60.7ms) CREATE INDEX "index_posts_on_author_id" ON "posts" ("author_id") -  (1.1ms) ALTER TABLE "posts" ADD CONSTRAINT "fk_rails_04d13ef8c7" -FOREIGN KEY ("author_id") - REFERENCES "users" ("id") - - ActiveRecord::SchemaMigration Create (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201194449"]] - TRANSACTION (24.3ms) COMMIT -Migrating to AddPostsToComments (20221201194640) - TRANSACTION (0.4ms) BEGIN -  (0.5ms) ALTER TABLE "comments" ADD "posts_id" bigint NOT NULL -  (61.7ms) CREATE INDEX "index_comments_on_posts_id" ON "comments" ("posts_id") -  (2.4ms) ALTER TABLE "comments" ADD CONSTRAINT "fk_rails_581572ac1f" -FOREIGN KEY ("posts_id") - REFERENCES "posts" ("id") - - ActiveRecord::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201194640"]] - TRANSACTION (26.2ms) COMMIT -Migrating to AddPostsToLikes (20221201194706) - TRANSACTION (0.3ms) BEGIN -  (0.5ms) ALTER TABLE "likes" ADD "posts_id" bigint NOT NULL -  (60.5ms) CREATE INDEX "index_likes_on_posts_id" ON "likes" ("posts_id") -  (1.4ms) ALTER TABLE "likes" ADD CONSTRAINT "fk_rails_b1afef8225" -FOREIGN KEY ("posts_id") - REFERENCES "posts" ("id") - - ActiveRecord::SchemaMigration Create (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201194706"]] - TRANSACTION (19.7ms) COMMIT -Migrating to RemoveUsersFromPosts (20221201200927) - TRANSACTION (0.4ms) BEGIN -  (0.9ms) ALTER TABLE "posts" DROP CONSTRAINT "fk_rails_403c3577f5" -  (1.3ms) ALTER TABLE "posts" DROP COLUMN "users_id" - ActiveRecord::SchemaMigration Create (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221201200927"]] - TRANSACTION (8.4ms) COMMIT -Migrating to RemovePostsFromComments (20221202145640) - TRANSACTION (0.3ms) BEGIN -  (0.7ms) ALTER TABLE "comments" DROP CONSTRAINT "fk_rails_581572ac1f" -  (0.5ms) ALTER TABLE "comments" DROP COLUMN "posts_id" - ActiveRecord::SchemaMigration Create (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221202145640"]] - TRANSACTION (10.4ms) COMMIT -Migrating to AddPostToComments (20221202145748) - TRANSACTION (0.2ms) BEGIN -  (0.6ms) ALTER TABLE "comments" ADD "post_id" bigint NOT NULL -  (66.6ms) CREATE INDEX "index_comments_on_post_id" ON "comments" ("post_id") -  (1.5ms) ALTER TABLE "comments" ADD CONSTRAINT "fk_rails_2fd19c0db7" -FOREIGN KEY ("post_id") - REFERENCES "posts" ("id") - - ActiveRecord::SchemaMigration Create (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221202145748"]] - TRANSACTION (24.6ms) COMMIT -Migrating to AddDefaultValueToPostsCounterForUsers (20221203135958) - TRANSACTION (0.3ms) BEGIN -  (0.4ms) ALTER TABLE "users" ALTER COLUMN "posts_counter" SET DEFAULT 0 - ActiveRecord::SchemaMigration Create (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221203135958"]] - TRANSACTION (24.0ms) COMMIT -Migrating to AddDefaultValueToLikesCounterForPosts (20221203140321) - TRANSACTION (0.5ms) BEGIN -  (0.3ms) ALTER TABLE "posts" ALTER COLUMN "likes_counter" SET DEFAULT 0 - ActiveRecord::SchemaMigration Create (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221203140321"]] - TRANSACTION (10.6ms) COMMIT -Migrating to AddDefaultValueToCommentsCounterForPosts (20221203140408) - TRANSACTION (0.4ms) BEGIN -  (0.7ms) ALTER TABLE "posts" ALTER COLUMN "comments_counter" SET DEFAULT 0 - ActiveRecord::SchemaMigration Create (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221203140408"]] - TRANSACTION (6.3ms) COMMIT -Migrating to RemovePostsFromLikes (20221203144840) - TRANSACTION (0.4ms) BEGIN -  (0.9ms) ALTER TABLE "likes" DROP CONSTRAINT "fk_rails_b1afef8225" -  (0.7ms) ALTER TABLE "likes" DROP COLUMN "posts_id" - ActiveRecord::SchemaMigration Create (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221203144840"]] - TRANSACTION (6.0ms) COMMIT -Migrating to AddPostToLikes (20221203145008) - TRANSACTION (0.5ms) BEGIN -  (0.8ms) ALTER TABLE "likes" ADD "post_id" bigint NOT NULL -  (58.5ms) CREATE INDEX "index_likes_on_post_id" ON "likes" ("post_id") -  (1.3ms) ALTER TABLE "likes" ADD CONSTRAINT "fk_rails_87a8aac469" -FOREIGN KEY ("post_id") - REFERENCES "posts" ("id") - - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221203145008"]] - TRANSACTION (22.8ms) COMMIT -Migrating to AddDeviseToUsers (20221214221212) - TRANSACTION (0.7ms) BEGIN -  (1.0ms) ALTER TABLE "users" ADD "email" character varying DEFAULT '' NOT NULL -  (0.7ms) ALTER TABLE "users" ADD "encrypted_password" character varying DEFAULT '' NOT NULL -  (0.5ms) ALTER TABLE "users" ADD "reset_password_token" character varying -  (0.8ms) ALTER TABLE "users" ADD "reset_password_sent_at" timestamp(6) -  (0.8ms) ALTER TABLE "users" ADD "remember_created_at" timestamp(6) -  (0.7ms) ALTER TABLE "users" ADD "confirmation_token" character varying -  (0.6ms) ALTER TABLE "users" ADD "confirmed_at" timestamp(6) -  (0.7ms) ALTER TABLE "users" ADD "confirmation_sent_at" timestamp(6) -  (0.8ms) ALTER TABLE "users" ADD "unconfirmed_email" character varying -  (50.6ms) CREATE INDEX "index_users_on_email" ON "users" ("email") -  (54.2ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token") - ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20221214221212"]] - TRANSACTION (22.4ms) COMMIT - ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] - TRANSACTION (0.2ms) BEGIN - ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2022-12-15 14:29:44.872299"], ["updated_at", "2022-12-15 14:29:44.872299"]] - TRANSACTION (5.6ms) COMMIT -  (0.5ms) SELECT pg_advisory_unlock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Started GET "/" for 127.0.0.1 at 2022-12-15 16:30:47 +0200 - ActiveRecord::SchemaMigration Pluck (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC -Processing by UsersController#index as HTML -Completed 401 Unauthorized in 18ms (ActiveRecord: 0.0ms | Allocations: 6497) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 16:30:47 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 1.9ms | Allocations: 1138) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 8.7ms | Allocations: 5152) - Rendered layout layouts/application.html.erb (Duration: 66.7ms | Allocations: 26180) -Completed 200 OK in 108ms (Views: 72.2ms | ActiveRecord: 6.3ms | Allocations: 51134) - - -Started POST "/users/sign_in" for 127.0.0.1 at 2022-12-15 16:30:50 +0200 -Processing by Devise::SessionsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} - User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] -Completed 401 Unauthorized in 10ms (ActiveRecord: 1.4ms | Allocations: 4034) - - -Processing by Devise::SessionsController#new as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.5ms | Allocations: 197) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 3.7ms | Allocations: 1442) - Rendered layout layouts/application.html.erb (Duration: 6.0ms | Allocations: 2568) -Completed 200 OK in 342ms (Views: 6.9ms | ActiveRecord: 0.0ms | Allocations: 4492) - - -Started GET "/users/sign_up" for 127.0.0.1 at 2022-12-15 16:30:57 +0200 -Processing by Devise::RegistrationsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/registrations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 1.2ms | Allocations: 232) - Rendered devise/shared/_links.html.erb (Duration: 1.0ms | Allocations: 284) - Rendered devise/registrations/new.html.erb within layouts/application (Duration: 10.2ms | Allocations: 2789) - Rendered layout layouts/application.html.erb (Duration: 13.7ms | Allocations: 3986) -Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.0ms | Allocations: 5555) - - -Started POST "/users" for 127.0.0.1 at 2022-12-15 16:31:24 +0200 -Processing by Devise::RegistrationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"} -Unpermitted parameter: :password_confirmation. Context: { controller: Devise::RegistrationsController, action: create, request: #, params: {"authenticity_token"=>"[FILTERED]", "user"=>{"name"=>"Benjamin", "email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up", "controller"=>"devise/registrations", "action"=>"create"} } - TRANSACTION (0.3ms) BEGIN - User Exists? (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - User Create (1.1ms) INSERT INTO "users" ("name", "photo", "bio", "posts_counter", "created_at", "updated_at", "email", "encrypted_password", "reset_password_token", "reset_password_sent_at", "remember_created_at", "confirmation_token", "confirmed_at", "confirmation_sent_at", "unconfirmed_email") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15) RETURNING "id" [["name", "Benjamin"], ["photo", nil], ["bio", nil], ["posts_counter", 0], ["created_at", "2022-12-15 14:31:25.095345"], ["updated_at", "2022-12-15 14:31:25.095345"], ["email", "benkisenge03@gmail.com"], ["encrypted_password", "$2a$12$qS7EoIlMAM8rp8AlCuY9lOGz5dzotqONJFcs55eUb/t5d9xpnZPYm"], ["reset_password_token", nil], ["reset_password_sent_at", nil], ["remember_created_at", nil], ["confirmation_token", "4m4dryr6nvGcXVnjtvBg"], ["confirmed_at", nil], ["confirmation_sent_at", "2022-12-15 14:31:25.095531"], ["unconfirmed_email", nil]] - TRANSACTION (42.4ms) COMMIT - Rendering devise/mailer/confirmation_instructions.html.erb - Rendered devise/mailer/confirmation_instructions.html.erb (Duration: 1.1ms | Allocations: 451) -Devise::Mailer#confirmation_instructions: processed outbound mail in 5.9ms -Delivered mail 639b2fbda07ad_a0713ac0722a6@benkis-HP-EliteBook-8440p.mail (96.1ms) -Date: Thu, 15 Dec 2022 16:31:25 +0200 -From: please-change-me-at-config-initializers-devise@example.com -Reply-To: please-change-me-at-config-initializers-devise@example.com -To: benkisenge03@gmail.com -Message-ID: <639b2fbda07ad_a0713ac0722a6@benkis-HP-EliteBook-8440p.mail> -Subject: Confirmation instructions -Mime-Version: 1.0 -Content-Type: text/html; - charset=UTF-8 -Content-Transfer-Encoding: 7bit - -

Welcome benkisenge03@gmail.com!

- -

You can confirm your account email through the link below:

- -

Confirm my account

- -Redirected to http://127.0.0.1:3000/ -Completed 302 Found in 1004ms (ActiveRecord: 44.4ms | Allocations: 46014) - - -Started GET "/" for 127.0.0.1 at 2022-12-15 16:31:25 +0200 -Processing by UsersController#index as HTML -Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms | Allocations: 374) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 16:31:25 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.3ms | Allocations: 197) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 2.4ms | Allocations: 1388) - Rendered layout layouts/application.html.erb (Duration: 4.2ms | Allocations: 2515) -Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.0ms | Allocations: 3287) - - -Started POST "/users/sign_in" for 127.0.0.1 at 2022-12-15 16:31:32 +0200 -Processing by Devise::SessionsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"} - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] -Completed 401 Unauthorized in 396ms (ActiveRecord: 0.6ms | Allocations: 2931) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 16:31:33 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.6ms | Allocations: 197) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 4.4ms | Allocations: 1392) - Rendered layout layouts/application.html.erb (Duration: 12.9ms | Allocations: 2519) -Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.0ms | Allocations: 3331) - - -Started POST "/users/sign_in" for 127.0.0.1 at 2022-12-15 16:32:23 +0200 -Processing by Devise::SessionsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"1"}, "commit"=>"Log in"} - User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] -Completed 401 Unauthorized in 427ms (ActiveRecord: 0.6ms | Allocations: 1881) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 16:32:24 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.7ms | Allocations: 195) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 5.0ms | Allocations: 1320) - Rendered layout layouts/application.html.erb (Duration: 8.3ms | Allocations: 2361) -Completed 200 OK in 29ms (Views: 9.4ms | ActiveRecord: 0.0ms | Allocations: 3063) - - -Started GET "/users/confirmation/new" for 127.0.0.1 at 2022-12-15 16:39:54 +0200 -Processing by Devise::ConfirmationsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/confirmations/new.html.erb within layouts/application - Rendered devise/shared/_error_messages.html.erb (Duration: 0.1ms | Allocations: 18) - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 216) - Rendered devise/confirmations/new.html.erb within layouts/application (Duration: 4.3ms | Allocations: 1700) - Rendered layout layouts/application.html.erb (Duration: 6.5ms | Allocations: 2897) -Completed 200 OK in 9ms (Views: 8.1ms | Allocations: 4129) - - -Started POST "/users/confirmation" for 127.0.0.1 at 2022-12-15 16:39:58 +0200 -Processing by Devise::ConfirmationsController#create as HTML - Parameters: {"authenticity_token"=>"[FILTERED]", "user"=>{"email"=>"benkisenge03@gmail.com"}, "commit"=>"Resend confirmation instructions"} - User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."unconfirmed_email" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["unconfirmed_email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["email", "benkisenge03@gmail.com"], ["LIMIT", 1]] - Rendering devise/mailer/confirmation_instructions.html.erb - Rendered devise/mailer/confirmation_instructions.html.erb (Duration: 0.3ms | Allocations: 93) -Devise::Mailer#confirmation_instructions: processed outbound mail in 2.0ms -Delivered mail 639b31bede823_a0713ae872342@benkis-HP-EliteBook-8440p.mail (2.1ms) -Date: Thu, 15 Dec 2022 16:39:58 +0200 -From: please-change-me-at-config-initializers-devise@example.com -Reply-To: please-change-me-at-config-initializers-devise@example.com -To: benkisenge03@gmail.com -Message-ID: <639b31bede823_a0713ae872342@benkis-HP-EliteBook-8440p.mail> -Subject: Confirmation instructions -Mime-Version: 1.0 -Content-Type: text/html; - charset=UTF-8 -Content-Transfer-Encoding: 7bit - -

Welcome benkisenge03@gmail.com!

- -

You can confirm your account email through the link below:

- -

Confirm my account

- -Redirected to http://127.0.0.1:3000/users/sign_in -Completed 302 Found in 50ms (ActiveRecord: 7.6ms | Allocations: 10664) - - -Started GET "/users/sign_in" for 127.0.0.1 at 2022-12-15 16:39:58 +0200 -Processing by Devise::SessionsController#new as HTML - Rendering layout layouts/application.html.erb - Rendering devise/sessions/new.html.erb within layouts/application - Rendered devise/shared/_links.html.erb (Duration: 0.4ms | Allocations: 195) - Rendered devise/sessions/new.html.erb within layouts/application (Duration: 2.4ms | Allocations: 1326) - Rendered layout layouts/application.html.erb (Duration: 4.4ms | Allocations: 2363) -Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.0ms | Allocations: 3076) - - -  (0.8ms) SELECT pg_try_advisory_lock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC - ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] -  (0.4ms) SELECT pg_advisory_unlock(4753324116888153030) - ActiveRecord::SchemaMigration Pluck (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC diff --git a/tmp/cache/assets/sprockets/v4.0.0/-C/-Ckh9n1EguLkoEvM1q9HJdNNveJUEFjdbuh3QCoVN80.cache b/tmp/cache/assets/sprockets/v4.0.0/-C/-Ckh9n1EguLkoEvM1q9HJdNNveJUEFjdbuh3QCoVN80.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/-C/-Ckh9n1EguLkoEvM1q9HJdNNveJUEFjdbuh3QCoVN80.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/-E/-E9CHPxnVBirz86rK3Rp7ZGC43YP4Pp_cUVJiCPGdAQ.cache b/tmp/cache/assets/sprockets/v4.0.0/-E/-E9CHPxnVBirz86rK3Rp7ZGC43YP4Pp_cUVJiCPGdAQ.cache deleted file mode 100644 index 86409d2..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/-E/-E9CHPxnVBirz86rK3Rp7ZGC43YP4Pp_cUVJiCPGdAQ.cache +++ /dev/null @@ -1 +0,0 @@ -"%tbzD'Rg vEH`; \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/-Q/-Qt3yOnNpDqY-GV2rhNJV_68OJJs-43cfYfPxeOsBV0.cache b/tmp/cache/assets/sprockets/v4.0.0/-Q/-Qt3yOnNpDqY-GV2rhNJV_68OJJs-43cfYfPxeOsBV0.cache deleted file mode 100644 index 874252c..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/-Q/-Qt3yOnNpDqY-GV2rhNJV_68OJJs-43cfYfPxeOsBV0.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=26741ba481e4c7c3d27084f146121928f57dc21d2ced13bac22d93fae5f60d59:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/-e/-ehJiRlApKHaI4bOQ9hYcninkg-X_9ekBc0I9AJePuk.cache b/tmp/cache/assets/sprockets/v4.0.0/-e/-ehJiRlApKHaI4bOQ9hYcninkg-X_9ekBc0I9AJePuk.cache deleted file mode 100644 index d1fe6d6..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/-e/-ehJiRlApKHaI4bOQ9hYcninkg-X_9ekBc0I9AJePuk.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=a497ab5b2bc1ee62088b2f8b222d299aedebe12ee587ed96f476059700777569:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/-y/-y51Gh1bHBBhV1k1THleiF-YtIYUAgZT9E1nhpo7YKY.cache b/tmp/cache/assets/sprockets/v4.0.0/-y/-y51Gh1bHBBhV1k1THleiF-YtIYUAgZT9E1nhpo7YKY.cache deleted file mode 100644 index 6736afd..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/-y/-y51Gh1bHBBhV1k1THleiF-YtIYUAgZT9E1nhpo7YKY.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/0B/0BCw_8NjC_ubC1byD-EWpCQrSdshx1sO0zphVSL9P9c.cache b/tmp/cache/assets/sprockets/v4.0.0/0B/0BCw_8NjC_ubC1byD-EWpCQrSdshx1sO0zphVSL9P9c.cache deleted file mode 100644 index ef74324..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/0B/0BCw_8NjC_ubC1byD-EWpCQrSdshx1sO0zphVSL9P9c.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=5b324f4eaf085f0bc885c4192a0d4ccaf3dfa6e6b777ebe162535e9a405c2e5d:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/0G/0GKjc_UQtAHxDE2OwYK7xjmlio9gdSheUTz-lAyEUc4.cache b/tmp/cache/assets/sprockets/v4.0.0/0G/0GKjc_UQtAHxDE2OwYK7xjmlio9gdSheUTz-lAyEUc4.cache deleted file mode 100644 index 036bf90..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/0G/0GKjc_UQtAHxDE2OwYK7xjmlio9gdSheUTz-lAyEUc4.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=079a844d147a4e28a38b48c32d7eb041765be859aa6734bf5f307dd58c1c8461:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/0e/0eJKRgHarQMXfrpt9XhxaURII9sMkmeW_tAJIm208Rc.cache b/tmp/cache/assets/sprockets/v4.0.0/0e/0eJKRgHarQMXfrpt9XhxaURII9sMkmeW_tAJIm208Rc.cache deleted file mode 100644 index c9152f5..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/0e/0eJKRgHarQMXfrpt9XhxaURII9sMkmeW_tAJIm208Rc.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/0s/0slWdxwW9BLXRuaDjF1z09srJgLwOkrZVr6HTbFO2dc.cache b/tmp/cache/assets/sprockets/v4.0.0/0s/0slWdxwW9BLXRuaDjF1z09srJgLwOkrZVr6HTbFO2dc.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/0s/0slWdxwW9BLXRuaDjF1z09srJgLwOkrZVr6HTbFO2dc.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/0t/0tVoCmLcM0-n_1LOjlAk4iOfPy73yeJQ6eg6yseJ4hI.cache b/tmp/cache/assets/sprockets/v4.0.0/0t/0tVoCmLcM0-n_1LOjlAk4iOfPy73yeJQ6eg6yseJ4hI.cache deleted file mode 100644 index 76dfe9f..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/0t/0tVoCmLcM0-n_1LOjlAk4iOfPy73yeJQ6eg6yseJ4hI.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/0y/0y28uDxZ-mwl0HgZwgjwSkoUyksgfh-T3wnB8OHtwh0.cache b/tmp/cache/assets/sprockets/v4.0.0/0y/0y28uDxZ-mwl0HgZwgjwSkoUyksgfh-T3wnB8OHtwh0.cache deleted file mode 100644 index 008f5ec..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/0y/0y28uDxZ-mwl0HgZwgjwSkoUyksgfh-T3wnB8OHtwh0.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=7eb339e01159c6ca1d784022a2030458bba5af59343e8cb2467d081825a6a300:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/1F/1FBQQ5ASSEdYZYrb8EvyxEQeELkAwlL7ZEJjYMSLlQE.cache b/tmp/cache/assets/sprockets/v4.0.0/1F/1FBQQ5ASSEdYZYrb8EvyxEQeELkAwlL7ZEJjYMSLlQE.cache deleted file mode 100644 index 5dfae18..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/1F/1FBQQ5ASSEdYZYrb8EvyxEQeELkAwlL7ZEJjYMSLlQE.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/1z/1zaK5ta_6fcXwB8SimDIYYT0XdBGLg3FY63DM5Km__I.cache b/tmp/cache/assets/sprockets/v4.0.0/1z/1zaK5ta_6fcXwB8SimDIYYT0XdBGLg3FY63DM5Km__I.cache deleted file mode 100644 index b961c4b..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/1z/1zaK5ta_6fcXwB8SimDIYYT0XdBGLg3FY63DM5Km__I.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=e4cd1eb8c2ffcfce4cf6e7c0e344363a4d393d684e99a226c41240ab59607449:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/2g/2g_hEhgVbuJF5AbodH7sPY-CIvzb80e8pWJm_c9VBE8.cache b/tmp/cache/assets/sprockets/v4.0.0/2g/2g_hEhgVbuJF5AbodH7sPY-CIvzb80e8pWJm_c9VBE8.cache deleted file mode 100644 index 42f41fe..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/2g/2g_hEhgVbuJF5AbodH7sPY-CIvzb80e8pWJm_c9VBE8.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=230a4ba0c73df06d0b986ecc61a83d6f30b9dd5bd99862a860f0948f498dd836:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/2r/2rlhBJpRsxIYPVFMbJ9h7KVkE3CQ30XcYA8QREmteJ0.cache b/tmp/cache/assets/sprockets/v4.0.0/2r/2rlhBJpRsxIYPVFMbJ9h7KVkE3CQ30XcYA8QREmteJ0.cache deleted file mode 100644 index 8d066b9..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/2r/2rlhBJpRsxIYPVFMbJ9h7KVkE3CQ30XcYA8QREmteJ0.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/2u/2uLp-c-Ug7pyY-bQtAWe5GO_DHnCCxOEeNyQJv9ngcM.cache b/tmp/cache/assets/sprockets/v4.0.0/2u/2uLp-c-Ug7pyY-bQtAWe5GO_DHnCCxOEeNyQJv9ngcM.cache deleted file mode 100644 index 5fbe783..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/2u/2uLp-c-Ug7pyY-bQtAWe5GO_DHnCCxOEeNyQJv9ngcM.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/30/30dI-aGP4YwvSzlOaaAjM0SpwHKGLVZ6ql6xaHiqGv0.cache b/tmp/cache/assets/sprockets/v4.0.0/30/30dI-aGP4YwvSzlOaaAjM0SpwHKGLVZ6ql6xaHiqGv0.cache deleted file mode 100644 index 2800ad3..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/30/30dI-aGP4YwvSzlOaaAjM0SpwHKGLVZ6ql6xaHiqGv0.cache +++ /dev/null @@ -1 +0,0 @@ -"%Bșo$'AdLxRU \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/31/31uHLmfirjjoAPLlsYNKztONK-FPyL5XvCH_19mUu6M.cache b/tmp/cache/assets/sprockets/v4.0.0/31/31uHLmfirjjoAPLlsYNKztONK-FPyL5XvCH_19mUu6M.cache deleted file mode 100644 index 54112c9..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/31/31uHLmfirjjoAPLlsYNKztONK-FPyL5XvCH_19mUu6M.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=03c2f773b06ca594d3964d4969501fa324bae8227c29f4355936df8879f46744:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/38/38Op5qGBxvvX6jcrlLNyFvYr-rrWZBY0NMG0Yl5Ock8.cache b/tmp/cache/assets/sprockets/v4.0.0/38/38Op5qGBxvvX6jcrlLNyFvYr-rrWZBY0NMG0Yl5Ock8.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/38/38Op5qGBxvvX6jcrlLNyFvYr-rrWZBY0NMG0Yl5Ock8.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/39/39KC16dnE941EjPF1SIWlEemyHIeQ4cw7npX0E7RM94.cache b/tmp/cache/assets/sprockets/v4.0.0/39/39KC16dnE941EjPF1SIWlEemyHIeQ4cw7npX0E7RM94.cache deleted file mode 100644 index ceef967..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/39/39KC16dnE941EjPF1SIWlEemyHIeQ4cw7npX0E7RM94.cache +++ /dev/null @@ -1,2 +0,0 @@ -"%uA -9fiF3Pma`H/`Q- \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/3W/3WCnaKavS4CWx4u3R7eVIAVN8L24NrBhqJ66syE5lXQ.cache b/tmp/cache/assets/sprockets/v4.0.0/3W/3WCnaKavS4CWx4u3R7eVIAVN8L24NrBhqJ66syE5lXQ.cache deleted file mode 100644 index 4e9915b..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/3W/3WCnaKavS4CWx4u3R7eVIAVN8L24NrBhqJ66syE5lXQ.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/3m/3m_CkSi3NbH2UXrh-ajOWdczES0sOHh9JJS4yQmYTnk.cache b/tmp/cache/assets/sprockets/v4.0.0/3m/3m_CkSi3NbH2UXrh-ajOWdczES0sOHh9JJS4yQmYTnk.cache deleted file mode 100644 index 0e04bc4..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/3m/3m_CkSi3NbH2UXrh-ajOWdczES0sOHh9JJS4yQmYTnk.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/3o/3oBbNZTI2g8kt5WW8msELqZcA7w3FGooaC9l_Q5gvxs.cache b/tmp/cache/assets/sprockets/v4.0.0/3o/3oBbNZTI2g8kt5WW8msELqZcA7w3FGooaC9l_Q5gvxs.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/3o/3oBbNZTI2g8kt5WW8msELqZcA7w3FGooaC9l_Q5gvxs.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/44/44_9Z_B-lg2mb2KjxPczqObkFRhO4Zhp2loOMY8JgQU.cache b/tmp/cache/assets/sprockets/v4.0.0/44/44_9Z_B-lg2mb2KjxPczqObkFRhO4Zhp2loOMY8JgQU.cache deleted file mode 100644 index 7f7552c..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/44/44_9Z_B-lg2mb2KjxPczqObkFRhO4Zhp2loOMY8JgQU.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/49/49S0ipuR0l2SZRNv-veIrz8RX9GqJ0lHppcZOitKoYk.cache b/tmp/cache/assets/sprockets/v4.0.0/49/49S0ipuR0l2SZRNv-veIrz8RX9GqJ0lHppcZOitKoYk.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/49/49S0ipuR0l2SZRNv-veIrz8RX9GqJ0lHppcZOitKoYk.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/4C/4CWmvV0rjTROwZrLtnF17uTd0kK2GHLLJZQZBIBMv20.cache b/tmp/cache/assets/sprockets/v4.0.0/4C/4CWmvV0rjTROwZrLtnF17uTd0kK2GHLLJZQZBIBMv20.cache deleted file mode 100644 index 08011d3..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/4C/4CWmvV0rjTROwZrLtnF17uTd0kK2GHLLJZQZBIBMv20.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=685d8d6a5d41bf5dbdd0afa4382881959cdab9fe56c0fc513770ddfd902f002b:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/4V/4VBqM4L1zdCg9OxBQfHAZYRrQi9BaxTfoPa4eGreZ2Y.cache b/tmp/cache/assets/sprockets/v4.0.0/4V/4VBqM4L1zdCg9OxBQfHAZYRrQi9BaxTfoPa4eGreZ2Y.cache deleted file mode 100644 index fea5c4a..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/4V/4VBqM4L1zdCg9OxBQfHAZYRrQi9BaxTfoPa4eGreZ2Y.cache +++ /dev/null @@ -1 +0,0 @@ -"%ʼ_ B&f3uý oavEƭ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/4n/4nO7o9wCDQ_XLIwJ_g8tC9SS5LCcWvvhhyEe6n-KI6w.cache b/tmp/cache/assets/sprockets/v4.0.0/4n/4nO7o9wCDQ_XLIwJ_g8tC9SS5LCcWvvhhyEe6n-KI6w.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/4n/4nO7o9wCDQ_XLIwJ_g8tC9SS5LCcWvvhhyEe6n-KI6w.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/4s/4s6s4TUEqOzoJM1DX-LaMPDFa7t9KlK6DEEUULgpl6A.cache b/tmp/cache/assets/sprockets/v4.0.0/4s/4s6s4TUEqOzoJM1DX-LaMPDFa7t9KlK6DEEUULgpl6A.cache deleted file mode 100644 index d3530d2..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/4s/4s6s4TUEqOzoJM1DX-LaMPDFa7t9KlK6DEEUULgpl6A.cache +++ /dev/null @@ -1 +0,0 @@ -"%lFLbP$rG)DIH` \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/4u/4u98jwOLqB9EwKiwd6OFgrWCE_GwQp7HXqPRjawlbK0.cache b/tmp/cache/assets/sprockets/v4.0.0/4u/4u98jwOLqB9EwKiwd6OFgrWCE_GwQp7HXqPRjawlbK0.cache deleted file mode 100644 index 5ace86f..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/4u/4u98jwOLqB9EwKiwd6OFgrWCE_GwQp7HXqPRjawlbK0.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/5S/5SxBCO8oFtnG6L8N6zos5sjijuWMgCFr12FfestHatk.cache b/tmp/cache/assets/sprockets/v4.0.0/5S/5SxBCO8oFtnG6L8N6zos5sjijuWMgCFr12FfestHatk.cache deleted file mode 100644 index aa0e459..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/5S/5SxBCO8oFtnG6L8N6zos5sjijuWMgCFr12FfestHatk.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/5a/5aCWvCQUVQW1W5BzT1sX8Clisyx0vwS82iuaSVbonB4.cache b/tmp/cache/assets/sprockets/v4.0.0/5a/5aCWvCQUVQW1W5BzT1sX8Clisyx0vwS82iuaSVbonB4.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/5a/5aCWvCQUVQW1W5BzT1sX8Clisyx0vwS82iuaSVbonB4.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/5d/5d0Wz8dIZOJxI5HDZHBI7J1Be7gvdvtqjtzcxhcFXiQ.cache b/tmp/cache/assets/sprockets/v4.0.0/5d/5d0Wz8dIZOJxI5HDZHBI7J1Be7gvdvtqjtzcxhcFXiQ.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/5d/5d0Wz8dIZOJxI5HDZHBI7J1Be7gvdvtqjtzcxhcFXiQ.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/5r/5rNEe6hvsbaqRKvAhnUfA6_WumYOiATxe21jwD373-o.cache b/tmp/cache/assets/sprockets/v4.0.0/5r/5rNEe6hvsbaqRKvAhnUfA6_WumYOiATxe21jwD373-o.cache deleted file mode 100644 index e16d424..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/5r/5rNEe6hvsbaqRKvAhnUfA6_WumYOiATxe21jwD373-o.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/5y/5ykkeKi8cIymYtqWQqFX3zUGLfBsO5tRl288mYHN5Co.cache b/tmp/cache/assets/sprockets/v4.0.0/5y/5ykkeKi8cIymYtqWQqFX3zUGLfBsO5tRl288mYHN5Co.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/5y/5ykkeKi8cIymYtqWQqFX3zUGLfBsO5tRl288mYHN5Co.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/67/67oQpppqYVFJMftLqz3IXZvQJyls-yORRahGTdwF0MY.cache b/tmp/cache/assets/sprockets/v4.0.0/67/67oQpppqYVFJMftLqz3IXZvQJyls-yORRahGTdwF0MY.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/67/67oQpppqYVFJMftLqz3IXZvQJyls-yORRahGTdwF0MY.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/6F/6FpPgO_Eg5wegOiuMs6y6LRKbEYWvSTO31S6GMrK1XY.cache b/tmp/cache/assets/sprockets/v4.0.0/6F/6FpPgO_Eg5wegOiuMs6y6LRKbEYWvSTO31S6GMrK1XY.cache deleted file mode 100644 index ccda091..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/6F/6FpPgO_Eg5wegOiuMs6y6LRKbEYWvSTO31S6GMrK1XY.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/6L/6LejS_6jdTMaaWKC4g5EUpNdfnAret2EmcEN7jOrtUo.cache b/tmp/cache/assets/sprockets/v4.0.0/6L/6LejS_6jdTMaaWKC4g5EUpNdfnAret2EmcEN7jOrtUo.cache deleted file mode 100644 index 52f262c..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/6L/6LejS_6jdTMaaWKC4g5EUpNdfnAret2EmcEN7jOrtUo.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/6j/6jNymQrPu9REa0tXTJ8NFTUTmlLYX_ZIexIJ3hLL8hs.cache b/tmp/cache/assets/sprockets/v4.0.0/6j/6jNymQrPu9REa0tXTJ8NFTUTmlLYX_ZIexIJ3hLL8hs.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/6j/6jNymQrPu9REa0tXTJ8NFTUTmlLYX_ZIexIJ3hLL8hs.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/7M/7MojDuOYN7oDPkrolZh6-7qEBEugzj18cVmFTDx0aSw.cache b/tmp/cache/assets/sprockets/v4.0.0/7M/7MojDuOYN7oDPkrolZh6-7qEBEugzj18cVmFTDx0aSw.cache deleted file mode 100644 index cdf248c..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/7M/7MojDuOYN7oDPkrolZh6-7qEBEugzj18cVmFTDx0aSw.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/7Q/7QD4ZalSth0IvQWlKttJB7OkOcgKEKHUKEhFM7QOFmE.cache b/tmp/cache/assets/sprockets/v4.0.0/7Q/7QD4ZalSth0IvQWlKttJB7OkOcgKEKHUKEhFM7QOFmE.cache deleted file mode 100644 index 22ae328..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/7Q/7QD4ZalSth0IvQWlKttJB7OkOcgKEKHUKEhFM7QOFmE.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=33cd57c96e1749ad6d08ca9c0df67676d051281cd7260486c9b103b4a8aa4b40:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/7j/7jsN96ho5lft8G4rrexsqBNzRh1hhS1eInk-uKZlm5s.cache b/tmp/cache/assets/sprockets/v4.0.0/7j/7jsN96ho5lft8G4rrexsqBNzRh1hhS1eInk-uKZlm5s.cache deleted file mode 100644 index 7be94fb..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/7j/7jsN96ho5lft8G4rrexsqBNzRh1hhS1eInk-uKZlm5s.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=c11611443a104a7a52c59b21a80da3d6c515deb6eb6c707eac15bbdd9387f782:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/7x/7x1PWKXAMRmSPpHYvbWrhw7mtRHE34rTbtM1yNsLfIA.cache b/tmp/cache/assets/sprockets/v4.0.0/7x/7x1PWKXAMRmSPpHYvbWrhw7mtRHE34rTbtM1yNsLfIA.cache deleted file mode 100644 index 2f23e68..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/7x/7x1PWKXAMRmSPpHYvbWrhw7mtRHE34rTbtM1yNsLfIA.cache +++ /dev/null @@ -1 +0,0 @@ -"%;-KC~X֝IIɔi̒` \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/89/8941QZa5WiyBbev7gNLhbnQW1G9oGmEblr7BqNoWoSk.cache b/tmp/cache/assets/sprockets/v4.0.0/89/8941QZa5WiyBbev7gNLhbnQW1G9oGmEblr7BqNoWoSk.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/89/8941QZa5WiyBbev7gNLhbnQW1G9oGmEblr7BqNoWoSk.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/8M/8MRyYlmkblenDkWIt4N1iEbJVNk0VqQXIO-FyyN95ts.cache b/tmp/cache/assets/sprockets/v4.0.0/8M/8MRyYlmkblenDkWIt4N1iEbJVNk0VqQXIO-FyyN95ts.cache deleted file mode 100644 index b5a5448..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/8M/8MRyYlmkblenDkWIt4N1iEbJVNk0VqQXIO-FyyN95ts.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=c9b7d7b0fac9c296e955f604d990c6c51b1ae613f32a95eea79447215134f83d:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/8_/8_8S_fGLbImZtDOY_ZbSffUtuScNdPdEfSahtyrByJI.cache b/tmp/cache/assets/sprockets/v4.0.0/8_/8_8S_fGLbImZtDOY_ZbSffUtuScNdPdEfSahtyrByJI.cache deleted file mode 100644 index eec7f08..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/8_/8_8S_fGLbImZtDOY_ZbSffUtuScNdPdEfSahtyrByJI.cache +++ /dev/null @@ -1,2 +0,0 @@ -"%TUҸ++CG -_SBs0 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/8a/8aks9JU3YZBBhpCIepgGt3_QtL9GBIRrdbtpKG12FaI.cache b/tmp/cache/assets/sprockets/v4.0.0/8a/8aks9JU3YZBBhpCIepgGt3_QtL9GBIRrdbtpKG12FaI.cache deleted file mode 100644 index b1cd724..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/8a/8aks9JU3YZBBhpCIepgGt3_QtL9GBIRrdbtpKG12FaI.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/8m/8m9AKPrWUoAAMgEKKS1vCgMrrMq5X4MKYt3u_uAUvf8.cache b/tmp/cache/assets/sprockets/v4.0.0/8m/8m9AKPrWUoAAMgEKKS1vCgMrrMq5X4MKYt3u_uAUvf8.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/8m/8m9AKPrWUoAAMgEKKS1vCgMrrMq5X4MKYt3u_uAUvf8.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/8s/8sroBTrcu67jb-dZVfg33tfF_jquBtwiwqRtgNef57c.cache b/tmp/cache/assets/sprockets/v4.0.0/8s/8sroBTrcu67jb-dZVfg33tfF_jquBtwiwqRtgNef57c.cache deleted file mode 100644 index 8dfb41d..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/8s/8sroBTrcu67jb-dZVfg33tfF_jquBtwiwqRtgNef57c.cache +++ /dev/null @@ -1 +0,0 @@ -"%3gUgfʥCĀ^`yK87 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/90/90akDPoXfKuCRJBHcJ5sW7Dfnjb41zMLFxXI1qX8laY.cache b/tmp/cache/assets/sprockets/v4.0.0/90/90akDPoXfKuCRJBHcJ5sW7Dfnjb41zMLFxXI1qX8laY.cache deleted file mode 100644 index a6f5324..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/90/90akDPoXfKuCRJBHcJ5sW7Dfnjb41zMLFxXI1qX8laY.cache +++ /dev/null @@ -1 +0,0 @@ -"%Wѕ,oh?u$4?Q% \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/9h/9hJn8EfWf_pW13pq1H1oy9SUMmum8RWcCTcjxvlU2IY.cache b/tmp/cache/assets/sprockets/v4.0.0/9h/9hJn8EfWf_pW13pq1H1oy9SUMmum8RWcCTcjxvlU2IY.cache deleted file mode 100644 index fbd6c5f..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/9h/9hJn8EfWf_pW13pq1H1oy9SUMmum8RWcCTcjxvlU2IY.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/9q/9qovdsV9GCAybyvN7CHKxumSEoIXTd_jrcLIK0l2wK4.cache b/tmp/cache/assets/sprockets/v4.0.0/9q/9qovdsV9GCAybyvN7CHKxumSEoIXTd_jrcLIK0l2wK4.cache deleted file mode 100644 index 179fdac..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/9q/9qovdsV9GCAybyvN7CHKxumSEoIXTd_jrcLIK0l2wK4.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=681deb60e098253c0766eb01f8155c457e1e71cc98e8946cfcc1634ebfbeb725:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/9s/9sl7riKlXFI5YmiF5KUSXZw9vRslJzNbPsOs2Iy22ss.cache b/tmp/cache/assets/sprockets/v4.0.0/9s/9sl7riKlXFI5YmiF5KUSXZw9vRslJzNbPsOs2Iy22ss.cache deleted file mode 100644 index 7aaf37d..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/9s/9sl7riKlXFI5YmiF5KUSXZw9vRslJzNbPsOs2Iy22ss.cache +++ /dev/null @@ -1 +0,0 @@ -"%RmvS3.OLڹcƕq=_j \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/AH/AHrOGLtMfsV4c7xA9mevP3leeImvwkw-VzGbrA8yg3g.cache b/tmp/cache/assets/sprockets/v4.0.0/AH/AHrOGLtMfsV4c7xA9mevP3leeImvwkw-VzGbrA8yg3g.cache deleted file mode 100644 index 22de5e8..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/AH/AHrOGLtMfsV4c7xA9mevP3leeImvwkw-VzGbrA8yg3g.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Ah/AhUrad8UF0qJ4pPJLjhZDsCoxkcqcJlwUKNLYo7uL0g.cache b/tmp/cache/assets/sprockets/v4.0.0/Ah/AhUrad8UF0qJ4pPJLjhZDsCoxkcqcJlwUKNLYo7uL0g.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Ah/AhUrad8UF0qJ4pPJLjhZDsCoxkcqcJlwUKNLYo7uL0g.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Al/AlVDvwH7rabEnG41RkkRCAIxNXFK8VZTwxh7bPKKRig.cache b/tmp/cache/assets/sprockets/v4.0.0/Al/AlVDvwH7rabEnG41RkkRCAIxNXFK8VZTwxh7bPKKRig.cache deleted file mode 100644 index db9ab5a..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Al/AlVDvwH7rabEnG41RkkRCAIxNXFK8VZTwxh7bPKKRig.cache +++ /dev/null @@ -1,2 +0,0 @@ -"%8&ێ_ -28PL} \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Al/AlW9AuTV7vAJDg_fqXVJO3zhmlKud_sRKL51ZhenbaQ.cache b/tmp/cache/assets/sprockets/v4.0.0/Al/AlW9AuTV7vAJDg_fqXVJO3zhmlKud_sRKL51ZhenbaQ.cache deleted file mode 100644 index 8e253ee..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/Al/AlW9AuTV7vAJDg_fqXVJO3zhmlKud_sRKL51ZhenbaQ.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/BC/BCVAwLUjs_22FxFIN3uT3G7BcxNX9XNQ3d9zvSzhl4k.cache b/tmp/cache/assets/sprockets/v4.0.0/BC/BCVAwLUjs_22FxFIN3uT3G7BcxNX9XNQ3d9zvSzhl4k.cache deleted file mode 100644 index 6f9b98f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/BC/BCVAwLUjs_22FxFIN3uT3G7BcxNX9XNQ3d9zvSzhl4k.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=fcdf7757a6ef736ee4f3ea241a98e8472935cb696e4d39873edbefed70aaa0f3:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/BR/BRJKH5FnoXY9qJN4rVr7HE_cBABHUwYhwV_g6WsmtHw.cache b/tmp/cache/assets/sprockets/v4.0.0/BR/BRJKH5FnoXY9qJN4rVr7HE_cBABHUwYhwV_g6WsmtHw.cache deleted file mode 100644 index 07aae8b..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/BR/BRJKH5FnoXY9qJN4rVr7HE_cBABHUwYhwV_g6WsmtHw.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=a686d902e9674e5852642e6c05921a6bc34e66b8fdc96df65eed92ba59f94ff3:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Be/BeF81R03UEKZw5-M9IjvxNsI-mx92Y6ipAwfpC8Zv-A.cache b/tmp/cache/assets/sprockets/v4.0.0/Be/BeF81R03UEKZw5-M9IjvxNsI-mx92Y6ipAwfpC8Zv-A.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Be/BeF81R03UEKZw5-M9IjvxNsI-mx92Y6ipAwfpC8Zv-A.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Bo/BoWFRuoOaUYWyqpVecrb6jaUt3MH_6aOT50dxgWUWyM.cache b/tmp/cache/assets/sprockets/v4.0.0/Bo/BoWFRuoOaUYWyqpVecrb6jaUt3MH_6aOT50dxgWUWyM.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Bo/BoWFRuoOaUYWyqpVecrb6jaUt3MH_6aOT50dxgWUWyM.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Bx/BxggHsBeJsVIdIaeytIYKXhdRSkioPWkyJcvQULNVxg.cache b/tmp/cache/assets/sprockets/v4.0.0/Bx/BxggHsBeJsVIdIaeytIYKXhdRSkioPWkyJcvQULNVxg.cache deleted file mode 100644 index f02fbf3..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Bx/BxggHsBeJsVIdIaeytIYKXhdRSkioPWkyJcvQULNVxg.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=0e51c45e058be222fa977576fb44498f6d0bf31895b2c54c361c8b3120820a37:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/C-/C-jaFcBGqr6jckU4Jfmpii7qVtRWTvJPUZKD5hbhLhM.cache b/tmp/cache/assets/sprockets/v4.0.0/C-/C-jaFcBGqr6jckU4Jfmpii7qVtRWTvJPUZKD5hbhLhM.cache deleted file mode 100644 index cd0ec04..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/C-/C-jaFcBGqr6jckU4Jfmpii7qVtRWTvJPUZKD5hbhLhM.cache +++ /dev/null @@ -1 +0,0 @@ -"%C< *iO/t#3f \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/CI/CInB1YT1HbVX8Y_hrceGUe5ZMGHXrpf9zRdUI9aYwL8.cache b/tmp/cache/assets/sprockets/v4.0.0/CI/CInB1YT1HbVX8Y_hrceGUe5ZMGHXrpf9zRdUI9aYwL8.cache deleted file mode 100644 index eca41b4..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/CI/CInB1YT1HbVX8Y_hrceGUe5ZMGHXrpf9zRdUI9aYwL8.cache +++ /dev/null @@ -1 +0,0 @@ -"%Um;q"Z3=$MShFK= \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/CR/CRUsKD6jiieJQdkxwzHikI-s3TLSSiG-pKsrxYTf0e4.cache b/tmp/cache/assets/sprockets/v4.0.0/CR/CRUsKD6jiieJQdkxwzHikI-s3TLSSiG-pKsrxYTf0e4.cache deleted file mode 100644 index 9fd908c..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/CR/CRUsKD6jiieJQdkxwzHikI-s3TLSSiG-pKsrxYTf0e4.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=5a2df963ea9d51bcd3bbb387cc9b005967385a6292d396e487d0cb045dc744ff:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Cq/CqU_8HLa1k0sY6E6M7e7xkYXY_tSwkacPGSo87ArAq0.cache b/tmp/cache/assets/sprockets/v4.0.0/Cq/CqU_8HLa1k0sY6E6M7e7xkYXY_tSwkacPGSo87ArAq0.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Cq/CqU_8HLa1k0sY6E6M7e7xkYXY_tSwkacPGSo87ArAq0.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Cu/CuZlsdRQrwfbDMk4FFRfjWknE1HlZkT0qQXrunkFqNA.cache b/tmp/cache/assets/sprockets/v4.0.0/Cu/CuZlsdRQrwfbDMk4FFRfjWknE1HlZkT0qQXrunkFqNA.cache deleted file mode 100644 index 940ff28..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Cu/CuZlsdRQrwfbDMk4FFRfjWknE1HlZkT0qQXrunkFqNA.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=6eed98f5593da7f7388eb69f22b97539b1494eb5c8bddbd78865e44cbffaf46f:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/DT/DTuY8D1pfDYWaz8mkeCs-dNRephErG1l3n8J8Tm8UHQ.cache b/tmp/cache/assets/sprockets/v4.0.0/DT/DTuY8D1pfDYWaz8mkeCs-dNRephErG1l3n8J8Tm8UHQ.cache deleted file mode 100644 index 4c826f2..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/DT/DTuY8D1pfDYWaz8mkeCs-dNRephErG1l3n8J8Tm8UHQ.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=c6033227378a909709ddd90210d8f5f640f68fd44dbd4b82071fe89197bb2b2e:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Dl/Dl6HvQtJQ3vF3RJpdDf54ExsUADshwItxTKsImQPWXQ.cache b/tmp/cache/assets/sprockets/v4.0.0/Dl/Dl6HvQtJQ3vF3RJpdDf54ExsUADshwItxTKsImQPWXQ.cache deleted file mode 100644 index 8ef4cb9..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Dl/Dl6HvQtJQ3vF3RJpdDf54ExsUADshwItxTKsImQPWXQ.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/config/manifest.js?type=application/javascript&pipeline=self&id=5728bd98269867c7d5fd60e798eae091a1090f276cfb45a3f98c25dfceb5e8bb:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Dw/Dw7R8GUKxgIK0-n_bkh_KtUzZ6XcAzBbQXx4GZBuNEg.cache b/tmp/cache/assets/sprockets/v4.0.0/Dw/Dw7R8GUKxgIK0-n_bkh_KtUzZ6XcAzBbQXx4GZBuNEg.cache deleted file mode 100644 index c59f82c..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Dw/Dw7R8GUKxgIK0-n_bkh_KtUzZ6XcAzBbQXx4GZBuNEg.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=3c7e0c1afd060dc9c5eb502a56ab38dfde1c27bef75565aaa80fdbeb3158fe57:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/EL/ELDC0rGhf2R7fDNUJeOfa0x3fW5mXQy6JAxMELr2lbM.cache b/tmp/cache/assets/sprockets/v4.0.0/EL/ELDC0rGhf2R7fDNUJeOfa0x3fW5mXQy6JAxMELr2lbM.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/EL/ELDC0rGhf2R7fDNUJeOfa0x3fW5mXQy6JAxMELr2lbM.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/EU/EUKR5IP_VkX75TZnE06Q81hWI_be2CHedV55LGRyYPg.cache b/tmp/cache/assets/sprockets/v4.0.0/EU/EUKR5IP_VkX75TZnE06Q81hWI_be2CHedV55LGRyYPg.cache deleted file mode 100644 index 53fcf16..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/EU/EUKR5IP_VkX75TZnE06Q81hWI_be2CHedV55LGRyYPg.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=9b03bdd02888d7a25888fa713aca8a111773f382e6dbb5b1fbc4856de62eac1d:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/EZ/EZkk8gIZvsKZ_vYViDPYeK8zhY5q3GpMWZpHeQXZrYU.cache b/tmp/cache/assets/sprockets/v4.0.0/EZ/EZkk8gIZvsKZ_vYViDPYeK8zhY5q3GpMWZpHeQXZrYU.cache deleted file mode 100644 index dd924c2..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/EZ/EZkk8gIZvsKZ_vYViDPYeK8zhY5q3GpMWZpHeQXZrYU.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=84d42d1ec5f5196f3f18ac5c02805f19091c3fcc0f9ba30af121b5ec6fa4c096:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Ed/EdEZtKpUekdLSZINfcUQM98PRSQr62IM3NwKLOInVI0.cache b/tmp/cache/assets/sprockets/v4.0.0/Ed/EdEZtKpUekdLSZINfcUQM98PRSQr62IM3NwKLOInVI0.cache deleted file mode 100644 index cd0ec04..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Ed/EdEZtKpUekdLSZINfcUQM98PRSQr62IM3NwKLOInVI0.cache +++ /dev/null @@ -1 +0,0 @@ -"%C< *iO/t#3f \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Eg/EgRXTVpXXwgCUpM3I0HIn_lfLp2kRdwng-NMt6XnhLA.cache b/tmp/cache/assets/sprockets/v4.0.0/Eg/EgRXTVpXXwgCUpM3I0HIn_lfLp2kRdwng-NMt6XnhLA.cache deleted file mode 100644 index 7f61c90..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/Eg/EgRXTVpXXwgCUpM3I0HIn_lfLp2kRdwng-NMt6XnhLA.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Es/Es5KtgQ6RRG9lgL1yfRVXIQHtH5jtjpRHq9wQBWjw78.cache b/tmp/cache/assets/sprockets/v4.0.0/Es/Es5KtgQ6RRG9lgL1yfRVXIQHtH5jtjpRHq9wQBWjw78.cache deleted file mode 100644 index 83740e8..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/Es/Es5KtgQ6RRG9lgL1yfRVXIQHtH5jtjpRHq9wQBWjw78.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Eu/EuOK0M3gQ7zZTJVLLI-nmkaY-RBL1fj9f-nnR6YsJzk.cache b/tmp/cache/assets/sprockets/v4.0.0/Eu/EuOK0M3gQ7zZTJVLLI-nmkaY-RBL1fj9f-nnR6YsJzk.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Eu/EuOK0M3gQ7zZTJVLLI-nmkaY-RBL1fj9f-nnR6YsJzk.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Ey/Ey0NsuSHKXgzZgn-9FWHuEFyyoPyTA0i1GVaq42BiV4.cache b/tmp/cache/assets/sprockets/v4.0.0/Ey/Ey0NsuSHKXgzZgn-9FWHuEFyyoPyTA0i1GVaq42BiV4.cache deleted file mode 100644 index 0f1fef1..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/Ey/Ey0NsuSHKXgzZgn-9FWHuEFyyoPyTA0i1GVaq42BiV4.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/F1/F1cYqiutTm1IPKX33R6PJMjx4rNSxEeAGWSELAa5axI.cache b/tmp/cache/assets/sprockets/v4.0.0/F1/F1cYqiutTm1IPKX33R6PJMjx4rNSxEeAGWSELAa5axI.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/F1/F1cYqiutTm1IPKX33R6PJMjx4rNSxEeAGWSELAa5axI.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/F3/F3Ryzdr8yL1C04jidpWkBR8v7dIsGE-TuyYtzEzKZgU.cache b/tmp/cache/assets/sprockets/v4.0.0/F3/F3Ryzdr8yL1C04jidpWkBR8v7dIsGE-TuyYtzEzKZgU.cache deleted file mode 100644 index 42ff846..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/F3/F3Ryzdr8yL1C04jidpWkBR8v7dIsGE-TuyYtzEzKZgU.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/FI/FIXOeNLrXmOlBpfk8PI9Y-IVS8CC73m-67edGYqSnl8.cache b/tmp/cache/assets/sprockets/v4.0.0/FI/FIXOeNLrXmOlBpfk8PI9Y-IVS8CC73m-67edGYqSnl8.cache deleted file mode 100644 index 88efeec..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/FI/FIXOeNLrXmOlBpfk8PI9Y-IVS8CC73m-67edGYqSnl8.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/FI/FIxj7yf-hlC-pmv4t6-2SBBMC4EMTNSy6hBdkhfdS-8.cache b/tmp/cache/assets/sprockets/v4.0.0/FI/FIxj7yf-hlC-pmv4t6-2SBBMC4EMTNSy6hBdkhfdS-8.cache deleted file mode 100644 index 98b96b1..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/FI/FIxj7yf-hlC-pmv4t6-2SBBMC4EMTNSy6hBdkhfdS-8.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=927ed58f442b8fa6c78dcdf25a00f4b04a99e8dbd06dc4bc6b5d05e2ecf6704d:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/F_/F_IgxNF02C1GbNRwdb2QnYkmzzWMR7dr54HTtERzt20.cache b/tmp/cache/assets/sprockets/v4.0.0/F_/F_IgxNF02C1GbNRwdb2QnYkmzzWMR7dr54HTtERzt20.cache deleted file mode 100644 index ba3bffd..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/F_/F_IgxNF02C1GbNRwdb2QnYkmzzWMR7dr54HTtERzt20.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=44c8b84b0f98fd87d0823b3b0f191254f12c78f1d04a9b24e4de14c78568ada4:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Fi/FikKXTp_pqFgxPP368YX8Qx-uuVEmbhh7FDVmOc99AA.cache b/tmp/cache/assets/sprockets/v4.0.0/Fi/FikKXTp_pqFgxPP368YX8Qx-uuVEmbhh7FDVmOc99AA.cache deleted file mode 100644 index 8855911..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Fi/FikKXTp_pqFgxPP368YX8Qx-uuVEmbhh7FDVmOc99AA.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=affaff2fa0af254126216faf68fdcb47b444333622b87b8e2a9bc5e5bd9a5800:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Fo/FoD6kx_bjpkEOMnnngpw7n9AAtHbJhsWogfZmvbsXJA.cache b/tmp/cache/assets/sprockets/v4.0.0/Fo/FoD6kx_bjpkEOMnnngpw7n9AAtHbJhsWogfZmvbsXJA.cache deleted file mode 100644 index f8e312a..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/Fo/FoD6kx_bjpkEOMnnngpw7n9AAtHbJhsWogfZmvbsXJA.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Fo/FoFQhPZnSStL8NjLsPE4BGLKnpB-Us1BqGbyVbx1BG4.cache b/tmp/cache/assets/sprockets/v4.0.0/Fo/FoFQhPZnSStL8NjLsPE4BGLKnpB-Us1BqGbyVbx1BG4.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Fo/FoFQhPZnSStL8NjLsPE4BGLKnpB-Us1BqGbyVbx1BG4.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/G0/G0B7cLfreVhgWPBEug-1BfbfvEDUzpf1KrR0qFJvkJo.cache b/tmp/cache/assets/sprockets/v4.0.0/G0/G0B7cLfreVhgWPBEug-1BfbfvEDUzpf1KrR0qFJvkJo.cache deleted file mode 100644 index 734c349..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/G0/G0B7cLfreVhgWPBEug-1BfbfvEDUzpf1KrR0qFJvkJo.cache +++ /dev/null @@ -1 +0,0 @@ -"%$S;1'eײŭ\FaW \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/G8/G8D3nyL5VxT1SxHg_nvmUdX1ftiWc9ty0Dl6l_0X3jE.cache b/tmp/cache/assets/sprockets/v4.0.0/G8/G8D3nyL5VxT1SxHg_nvmUdX1ftiWc9ty0Dl6l_0X3jE.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/G8/G8D3nyL5VxT1SxHg_nvmUdX1ftiWc9ty0Dl6l_0X3jE.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/GV/GVHTsEcupVfhANwljTp6U0TmwtjlqmxkKfC3_ZuHkdk.cache b/tmp/cache/assets/sprockets/v4.0.0/GV/GVHTsEcupVfhANwljTp6U0TmwtjlqmxkKfC3_ZuHkdk.cache deleted file mode 100644 index 003c2f2..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/GV/GVHTsEcupVfhANwljTp6U0TmwtjlqmxkKfC3_ZuHkdk.cache +++ /dev/null @@ -1 +0,0 @@ -"%#ϰ:n(CtV>*T\R7p \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/GW/GWv6y6otz_TAu1VwbTJcpHDX4SHtoNcZAvksS6nYRCw.cache b/tmp/cache/assets/sprockets/v4.0.0/GW/GWv6y6otz_TAu1VwbTJcpHDX4SHtoNcZAvksS6nYRCw.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/GW/GWv6y6otz_TAu1VwbTJcpHDX4SHtoNcZAvksS6nYRCw.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Gx/GxBL1PyeT42KwZjEInPiEuz8_5DM2rZwSWVNfR7FKUo.cache b/tmp/cache/assets/sprockets/v4.0.0/Gx/GxBL1PyeT42KwZjEInPiEuz8_5DM2rZwSWVNfR7FKUo.cache deleted file mode 100644 index 3bd8f08..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/Gx/GxBL1PyeT42KwZjEInPiEuz8_5DM2rZwSWVNfR7FKUo.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Gy/GyswtQA-zQs5GH0kmIYlCJlnHwmuxehGE-NS_FG4vV4.cache b/tmp/cache/assets/sprockets/v4.0.0/Gy/GyswtQA-zQs5GH0kmIYlCJlnHwmuxehGE-NS_FG4vV4.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Gy/GyswtQA-zQs5GH0kmIYlCJlnHwmuxehGE-NS_FG4vV4.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Ha/Haai4iyjTOJdCgUCbxqv5yTE-cmUIqKOAy7SsteZqu8.cache b/tmp/cache/assets/sprockets/v4.0.0/Ha/Haai4iyjTOJdCgUCbxqv5yTE-cmUIqKOAy7SsteZqu8.cache deleted file mode 100644 index 2cc211a..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Ha/Haai4iyjTOJdCgUCbxqv5yTE-cmUIqKOAy7SsteZqu8.cache +++ /dev/null @@ -1,2 +0,0 @@ -"%=PKm-ޠO&z -56PDE \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Hx/HxbdXXOnm6HplhYmPQjkEtPh9axxHSGSSg4MdMSaBlQ.cache b/tmp/cache/assets/sprockets/v4.0.0/Hx/HxbdXXOnm6HplhYmPQjkEtPh9axxHSGSSg4MdMSaBlQ.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Hx/HxbdXXOnm6HplhYmPQjkEtPh9axxHSGSSg4MdMSaBlQ.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/IC/IC88tMohDAs9S_0ZnjgJ48ABm6AjsAs-SF7l4_GAwZw.cache b/tmp/cache/assets/sprockets/v4.0.0/IC/IC88tMohDAs9S_0ZnjgJ48ABm6AjsAs-SF7l4_GAwZw.cache deleted file mode 100644 index 71b1966..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/IC/IC88tMohDAs9S_0ZnjgJ48ABm6AjsAs-SF7l4_GAwZw.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/IW/IWSSznu5gfPyu40LBwnLQDuppSjBtjSVib885Bqdu9Y.cache b/tmp/cache/assets/sprockets/v4.0.0/IW/IWSSznu5gfPyu40LBwnLQDuppSjBtjSVib885Bqdu9Y.cache deleted file mode 100644 index 15a7652..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/IW/IWSSznu5gfPyu40LBwnLQDuppSjBtjSVib885Bqdu9Y.cache +++ /dev/null @@ -1 +0,0 @@ -"%!CLU8$iwHFd_9$;[ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Ie/IeNQxsu0F2S99SDFpc4JXCWZdxQ80v4LLyGPXCFiGNo.cache b/tmp/cache/assets/sprockets/v4.0.0/Ie/IeNQxsu0F2S99SDFpc4JXCWZdxQ80v4LLyGPXCFiGNo.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Ie/IeNQxsu0F2S99SDFpc4JXCWZdxQ80v4LLyGPXCFiGNo.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/J5/J54C-IdZAol4tPHPsDlg3ISjZAOB18gbhSCAyGSQHLU.cache b/tmp/cache/assets/sprockets/v4.0.0/J5/J54C-IdZAol4tPHPsDlg3ISjZAOB18gbhSCAyGSQHLU.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/J5/J54C-IdZAol4tPHPsDlg3ISjZAOB18gbhSCAyGSQHLU.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/J6/J6dMXv385A2ApnLQz7k9rpZC6MxmKp13saEkXvy8g4Q.cache b/tmp/cache/assets/sprockets/v4.0.0/J6/J6dMXv385A2ApnLQz7k9rpZC6MxmKp13saEkXvy8g4Q.cache deleted file mode 100644 index 27c444c..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/J6/J6dMXv385A2ApnLQz7k9rpZC6MxmKp13saEkXvy8g4Q.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=aae270a6ca207bbbd636318ba52fd4e133d67abc4f6859f7535a59e1c6e35ac5:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/JA/JAc4FcVNz75Ua6p4DG8bzsH1hk_AfqwsC1dqltGLIxQ.cache b/tmp/cache/assets/sprockets/v4.0.0/JA/JAc4FcVNz75Ua6p4DG8bzsH1hk_AfqwsC1dqltGLIxQ.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/JA/JAc4FcVNz75Ua6p4DG8bzsH1hk_AfqwsC1dqltGLIxQ.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Jz/JzBo7sJyvhrpk_3QMTOJR8whngc-_f4jUJEjRs--uv0.cache b/tmp/cache/assets/sprockets/v4.0.0/Jz/JzBo7sJyvhrpk_3QMTOJR8whngc-_f4jUJEjRs--uv0.cache deleted file mode 100644 index e35d88b..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/Jz/JzBo7sJyvhrpk_3QMTOJR8whngc-_f4jUJEjRs--uv0.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/K5/K5wyS3ER9E1yYTDiSDK-8rWRwjKXUqMaErgQh77xW-4.cache b/tmp/cache/assets/sprockets/v4.0.0/K5/K5wyS3ER9E1yYTDiSDK-8rWRwjKXUqMaErgQh77xW-4.cache deleted file mode 100644 index 7dac840..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/K5/K5wyS3ER9E1yYTDiSDK-8rWRwjKXUqMaErgQh77xW-4.cache +++ /dev/null @@ -1 +0,0 @@ -"%-ew~NX=( u P \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/K9/K9RpJHUEXgcalmgHXfONni27BjVFtbWaLQ19mTtccUI.cache b/tmp/cache/assets/sprockets/v4.0.0/K9/K9RpJHUEXgcalmgHXfONni27BjVFtbWaLQ19mTtccUI.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/K9/K9RpJHUEXgcalmgHXfONni27BjVFtbWaLQ19mTtccUI.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/KB/KB00zTpgzFlyVjhD5DXLmyu98MAcUjExVD7kzQn0H5Y.cache b/tmp/cache/assets/sprockets/v4.0.0/KB/KB00zTpgzFlyVjhD5DXLmyu98MAcUjExVD7kzQn0H5Y.cache deleted file mode 100644 index c5a5bd2..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/KB/KB00zTpgzFlyVjhD5DXLmyu98MAcUjExVD7kzQn0H5Y.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=c696e28fe26af6fd3a89a137b7012c259b047f71269c89a6dc2ce8bea72dec20:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Kj/KjIZtM5KPhCwgfFenXM9X6vx9RHO-gsBPOEsZat9oAo.cache b/tmp/cache/assets/sprockets/v4.0.0/Kj/KjIZtM5KPhCwgfFenXM9X6vx9RHO-gsBPOEsZat9oAo.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Kj/KjIZtM5KPhCwgfFenXM9X6vx9RHO-gsBPOEsZat9oAo.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Kk/Kk8rhi2k7MOKulxA6fBLheSc0acF1M9luqS6v9xaoP8.cache b/tmp/cache/assets/sprockets/v4.0.0/Kk/Kk8rhi2k7MOKulxA6fBLheSc0acF1M9luqS6v9xaoP8.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Kk/Kk8rhi2k7MOKulxA6fBLheSc0acF1M9luqS6v9xaoP8.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/LA/LAA_3Sz5ehoRU83Neb6CwW30JryCZGP4MMnwa0WreC0.cache b/tmp/cache/assets/sprockets/v4.0.0/LA/LAA_3Sz5ehoRU83Neb6CwW30JryCZGP4MMnwa0WreC0.cache deleted file mode 100644 index 344cbda..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/LA/LAA_3Sz5ehoRU83Neb6CwW30JryCZGP4MMnwa0WreC0.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Ls/LsEXBnSlk8E-m_dRhBjSSshTVOtpDXpksw3pFHfudSg.cache b/tmp/cache/assets/sprockets/v4.0.0/Ls/LsEXBnSlk8E-m_dRhBjSSshTVOtpDXpksw3pFHfudSg.cache deleted file mode 100644 index c637c3e..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/Ls/LsEXBnSlk8E-m_dRhBjSSshTVOtpDXpksw3pFHfudSg.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/MR/MRiZlRmDt1Qx_lHN-_MqSFG4rDrH-GPjj021Bu0eRqg.cache b/tmp/cache/assets/sprockets/v4.0.0/MR/MRiZlRmDt1Qx_lHN-_MqSFG4rDrH-GPjj021Bu0eRqg.cache deleted file mode 100644 index a367ea1..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/MR/MRiZlRmDt1Qx_lHN-_MqSFG4rDrH-GPjj021Bu0eRqg.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/MS/MSM0ED0M7COJuSflL8IX0P8EG8gPeH5hCSSbzsVCG3U.cache b/tmp/cache/assets/sprockets/v4.0.0/MS/MSM0ED0M7COJuSflL8IX0P8EG8gPeH5hCSSbzsVCG3U.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/MS/MSM0ED0M7COJuSflL8IX0P8EG8gPeH5hCSSbzsVCG3U.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/MY/MYfHHCJUPTad_t1mcHPlhoPjPaUtfdWa4kM9s3uKAKw.cache b/tmp/cache/assets/sprockets/v4.0.0/MY/MYfHHCJUPTad_t1mcHPlhoPjPaUtfdWa4kM9s3uKAKw.cache deleted file mode 100644 index f3baaa3..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/MY/MYfHHCJUPTad_t1mcHPlhoPjPaUtfdWa4kM9s3uKAKw.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Md/MdBfRqHTVqmtpzZl7AuaKGguyjxmamPNtIulCCceM3w.cache b/tmp/cache/assets/sprockets/v4.0.0/Md/MdBfRqHTVqmtpzZl7AuaKGguyjxmamPNtIulCCceM3w.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Md/MdBfRqHTVqmtpzZl7AuaKGguyjxmamPNtIulCCceM3w.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Mx/MxdeY1JBhCNV-gvfFZ9uMvZyJT4HSM7xdHFm5dpMpOU.cache b/tmp/cache/assets/sprockets/v4.0.0/Mx/MxdeY1JBhCNV-gvfFZ9uMvZyJT4HSM7xdHFm5dpMpOU.cache deleted file mode 100644 index 55d174c..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Mx/MxdeY1JBhCNV-gvfFZ9uMvZyJT4HSM7xdHFm5dpMpOU.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=dda5f21b69eed2868189ff5094c2923b51c6efea92aa7d1005575dcb961bcf11:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/N0/N072wMXEA5cvCsfLyb1dysnjPiDnhPD8PMfHzo1RQJo.cache b/tmp/cache/assets/sprockets/v4.0.0/N0/N072wMXEA5cvCsfLyb1dysnjPiDnhPD8PMfHzo1RQJo.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/N0/N072wMXEA5cvCsfLyb1dysnjPiDnhPD8PMfHzo1RQJo.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/N4/N4sW9ZHWKjEkRqmv4JyKH3OtyxU98TTObzX4ZFDagME.cache b/tmp/cache/assets/sprockets/v4.0.0/N4/N4sW9ZHWKjEkRqmv4JyKH3OtyxU98TTObzX4ZFDagME.cache deleted file mode 100644 index be195bb..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/N4/N4sW9ZHWKjEkRqmv4JyKH3OtyxU98TTObzX4ZFDagME.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/N5/N5wysSfNJtjmLudqGKBbq4o37kKD6AMLUvoWPdDRS_U.cache b/tmp/cache/assets/sprockets/v4.0.0/N5/N5wysSfNJtjmLudqGKBbq4o37kKD6AMLUvoWPdDRS_U.cache deleted file mode 100644 index eb2dc72..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/N5/N5wysSfNJtjmLudqGKBbq4o37kKD6AMLUvoWPdDRS_U.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=4861a18a6a688f459a4a2032ec077cf4e85c404c9b9effa4105c0d697475caeb:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/N7/N7wP4yDQSJIEKN7OtxLkMN0smlQPPZg3BjHdYGBEf-c.cache b/tmp/cache/assets/sprockets/v4.0.0/N7/N7wP4yDQSJIEKN7OtxLkMN0smlQPPZg3BjHdYGBEf-c.cache deleted file mode 100644 index 9a2c859..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/N7/N7wP4yDQSJIEKN7OtxLkMN0smlQPPZg3BjHdYGBEf-c.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=3b60aacc2b9cf2b881924735067cff266e201235ba8acb9750affcfa607b5a39:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Nk/NkuVaexRLdesXZ3yLZ0ALZPF8VhLQHJs-v_ZGmn1Dwc.cache b/tmp/cache/assets/sprockets/v4.0.0/Nk/NkuVaexRLdesXZ3yLZ0ALZPF8VhLQHJs-v_ZGmn1Dwc.cache deleted file mode 100644 index 81e5a6c..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Nk/NkuVaexRLdesXZ3yLZ0ALZPF8VhLQHJs-v_ZGmn1Dwc.cache +++ /dev/null @@ -1 +0,0 @@ -"%uHwPm*w^mJ5.}B \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Nw/NwEPxhkRGwwFYDR-AQCpFaMr-CLs3KKqIVjwD9RmMSA.cache b/tmp/cache/assets/sprockets/v4.0.0/Nw/NwEPxhkRGwwFYDR-AQCpFaMr-CLs3KKqIVjwD9RmMSA.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Nw/NwEPxhkRGwwFYDR-AQCpFaMr-CLs3KKqIVjwD9RmMSA.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/O6/O6-VbnPcXuPuxNu-ahHOW8C501av9wyekA1ual48vsI.cache b/tmp/cache/assets/sprockets/v4.0.0/O6/O6-VbnPcXuPuxNu-ahHOW8C501av9wyekA1ual48vsI.cache deleted file mode 100644 index d491d8f..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/O6/O6-VbnPcXuPuxNu-ahHOW8C501av9wyekA1ual48vsI.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/OA/OATVU7uDG6i4sZZ-IZgZMoprsF0sKo1xWBNUrwYEHCA.cache b/tmp/cache/assets/sprockets/v4.0.0/OA/OATVU7uDG6i4sZZ-IZgZMoprsF0sKo1xWBNUrwYEHCA.cache deleted file mode 100644 index 2c3bb87..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/OA/OATVU7uDG6i4sZZ-IZgZMoprsF0sKo1xWBNUrwYEHCA.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=697cb1b7f910003e21f1a3a0096b84e727c25f8fe40a20331a0c09f78b7e32e6:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/OA/OAeLoMi_tVh2W8SN9YOCTZPWGP4HWKoDVX3wBZ1qSC0.cache b/tmp/cache/assets/sprockets/v4.0.0/OA/OAeLoMi_tVh2W8SN9YOCTZPWGP4HWKoDVX3wBZ1qSC0.cache deleted file mode 100644 index f48feb0..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/OA/OAeLoMi_tVh2W8SN9YOCTZPWGP4HWKoDVX3wBZ1qSC0.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Oc/Oca_qwvMBjwGSk3okPN2M95a0ZSmcrpE9ndBTr4d4Yo.cache b/tmp/cache/assets/sprockets/v4.0.0/Oc/Oca_qwvMBjwGSk3okPN2M95a0ZSmcrpE9ndBTr4d4Yo.cache deleted file mode 100644 index cf0f774..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Oc/Oca_qwvMBjwGSk3okPN2M95a0ZSmcrpE9ndBTr4d4Yo.cache +++ /dev/null @@ -1 +0,0 @@ -"%\G1Z]*5iƪ68 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Of/Ofw_f5jEIF_x7Pj9LbN4lnbNfL41Ds7xZM77h_Mtyxo.cache b/tmp/cache/assets/sprockets/v4.0.0/Of/Ofw_f5jEIF_x7Pj9LbN4lnbNfL41Ds7xZM77h_Mtyxo.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Of/Ofw_f5jEIF_x7Pj9LbN4lnbNfL41Ds7xZM77h_Mtyxo.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Oq/OqhHrVfGRZ3O4_Fy7vci4NU1DOhKU4dJWV0BKCL0P_c.cache b/tmp/cache/assets/sprockets/v4.0.0/Oq/OqhHrVfGRZ3O4_Fy7vci4NU1DOhKU4dJWV0BKCL0P_c.cache deleted file mode 100644 index 797e6b4..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Oq/OqhHrVfGRZ3O4_Fy7vci4NU1DOhKU4dJWV0BKCL0P_c.cache +++ /dev/null @@ -1,2 +0,0 @@ -"%q/vte<, -#@Cji<]?y \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Or/OrlXHZwRRZYcfoj9IpO1I1Km1Mjn48gXrKoTUWXjtbQ.cache b/tmp/cache/assets/sprockets/v4.0.0/Or/OrlXHZwRRZYcfoj9IpO1I1Km1Mjn48gXrKoTUWXjtbQ.cache deleted file mode 100644 index 4e9ef6b..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/Or/OrlXHZwRRZYcfoj9IpO1I1Km1Mjn48gXrKoTUWXjtbQ.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/P3/P3_Sr4HP9PSf-UCvH8OEnWISWfGxtIO6VeHonzP3HhY.cache b/tmp/cache/assets/sprockets/v4.0.0/P3/P3_Sr4HP9PSf-UCvH8OEnWISWfGxtIO6VeHonzP3HhY.cache deleted file mode 100644 index f86202e..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/P3/P3_Sr4HP9PSf-UCvH8OEnWISWfGxtIO6VeHonzP3HhY.cache +++ /dev/null @@ -1 +0,0 @@ -"%iCh$=X-fu \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/PT/PTMIC7KaXYoS5VXh9Xvrk3KYt7qbCEf3SZkFzKMj7W4.cache b/tmp/cache/assets/sprockets/v4.0.0/PT/PTMIC7KaXYoS5VXh9Xvrk3KYt7qbCEf3SZkFzKMj7W4.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/PT/PTMIC7KaXYoS5VXh9Xvrk3KYt7qbCEf3SZkFzKMj7W4.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/PX/PXofi8vBqCW_F3tlcw0MKwplqpXE8WY2rjrEBzI7nhI.cache b/tmp/cache/assets/sprockets/v4.0.0/PX/PXofi8vBqCW_F3tlcw0MKwplqpXE8WY2rjrEBzI7nhI.cache deleted file mode 100644 index 8b8a0e2..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/PX/PXofi8vBqCW_F3tlcw0MKwplqpXE8WY2rjrEBzI7nhI.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Q4/Q4GOIgQXsOwl2-T4Wnm_j1pgOkF262reGQzniEjFpgU.cache b/tmp/cache/assets/sprockets/v4.0.0/Q4/Q4GOIgQXsOwl2-T4Wnm_j1pgOkF262reGQzniEjFpgU.cache deleted file mode 100644 index 6db6cf9..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Q4/Q4GOIgQXsOwl2-T4Wnm_j1pgOkF262reGQzniEjFpgU.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/config/manifest.js?type=application/javascript&id=0518f784a27832f72000d113700a2e307b027c07e40c3d744c93d4154c0a7716:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/QF/QF_tkDvk2RaNk6xITl8q6xcXe2kjEb6bGuC7EFkNg9g.cache b/tmp/cache/assets/sprockets/v4.0.0/QF/QF_tkDvk2RaNk6xITl8q6xcXe2kjEb6bGuC7EFkNg9g.cache deleted file mode 100644 index 3517c54..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/QF/QF_tkDvk2RaNk6xITl8q6xcXe2kjEb6bGuC7EFkNg9g.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/QW/QWaNFwOBbdpgNfw9KhBjVfBltXNSMaMXyfKGDp7rj4M.cache b/tmp/cache/assets/sprockets/v4.0.0/QW/QWaNFwOBbdpgNfw9KhBjVfBltXNSMaMXyfKGDp7rj4M.cache deleted file mode 100644 index 6ca4fec..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/QW/QWaNFwOBbdpgNfw9KhBjVfBltXNSMaMXyfKGDp7rj4M.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Q_/Q_1LaIi0-xoudeK2hMf362iEAUe0Eoyil1Upitvom8M.cache b/tmp/cache/assets/sprockets/v4.0.0/Q_/Q_1LaIi0-xoudeK2hMf362iEAUe0Eoyil1Upitvom8M.cache deleted file mode 100644 index 5c606a9..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Q_/Q_1LaIi0-xoudeK2hMf362iEAUe0Eoyil1Upitvom8M.cache +++ /dev/null @@ -1 +0,0 @@ -"%YC[P Q#|kcЄ{.8? \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Qc/Qc23UYKNdhJXg9wSSN6uP6KFrmaKZuGcRdtI19qz64w.cache b/tmp/cache/assets/sprockets/v4.0.0/Qc/Qc23UYKNdhJXg9wSSN6uP6KFrmaKZuGcRdtI19qz64w.cache deleted file mode 100644 index d8bfc17..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Qc/Qc23UYKNdhJXg9wSSN6uP6KFrmaKZuGcRdtI19qz64w.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=597953fe7cc9bd01685cab842790a40b1fb865b32a5dd0ffbc292382115264da:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Qx/QxGgqA13udgyTPcnpZWQFiVJFjQYcTg11GjYR3O593A.cache b/tmp/cache/assets/sprockets/v4.0.0/Qx/QxGgqA13udgyTPcnpZWQFiVJFjQYcTg11GjYR3O593A.cache deleted file mode 100644 index aa0e1a1..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Qx/QxGgqA13udgyTPcnpZWQFiVJFjQYcTg11GjYR3O593A.cache +++ /dev/null @@ -1 +0,0 @@ -"%҂"^|?Hs1]v \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/R4/R4tCkjSxLob0H4-0fqESU-wlOZT_rsSU_yj_3C1jKWM.cache b/tmp/cache/assets/sprockets/v4.0.0/R4/R4tCkjSxLob0H4-0fqESU-wlOZT_rsSU_yj_3C1jKWM.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/R4/R4tCkjSxLob0H4-0fqESU-wlOZT_rsSU_yj_3C1jKWM.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/RF/RFh2dqbmxEAk_C72L_drxzAO-JanXK3Uc8Go4KQqBDY.cache b/tmp/cache/assets/sprockets/v4.0.0/RF/RFh2dqbmxEAk_C72L_drxzAO-JanXK3Uc8Go4KQqBDY.cache deleted file mode 100644 index a2c35a4..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/RF/RFh2dqbmxEAk_C72L_drxzAO-JanXK3Uc8Go4KQqBDY.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/config/manifest.js?type=application/javascript&pipeline=self&id=26ad342651344a6d84bf93b0758c2caff729364f72885f6d3ebf6194a72950bc:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/RJ/RJbOZecsFOKUzlDaozUyWo44NVKSfIMzn7NR9mErMMo.cache b/tmp/cache/assets/sprockets/v4.0.0/RJ/RJbOZecsFOKUzlDaozUyWo44NVKSfIMzn7NR9mErMMo.cache deleted file mode 100644 index 1271795..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/RJ/RJbOZecsFOKUzlDaozUyWo44NVKSfIMzn7NR9mErMMo.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/RQ/RQjSboK8E_-76yZONHOwECWqgeDujiXgez-xGxO1ya8.cache b/tmp/cache/assets/sprockets/v4.0.0/RQ/RQjSboK8E_-76yZONHOwECWqgeDujiXgez-xGxO1ya8.cache deleted file mode 100644 index 2811407..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/RQ/RQjSboK8E_-76yZONHOwECWqgeDujiXgez-xGxO1ya8.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Rc/RcNx7ZKt1XkKiNkRqRX3grRcghYitosOe-Wljv6UEcE.cache b/tmp/cache/assets/sprockets/v4.0.0/Rc/RcNx7ZKt1XkKiNkRqRX3grRcghYitosOe-Wljv6UEcE.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Rc/RcNx7ZKt1XkKiNkRqRX3grRcghYitosOe-Wljv6UEcE.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Rh/Rh1hIPEmEISmZqXrGJdY08_ioeJ3Z5ySrwBoYJrIyyM.cache b/tmp/cache/assets/sprockets/v4.0.0/Rh/Rh1hIPEmEISmZqXrGJdY08_ioeJ3Z5ySrwBoYJrIyyM.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Rh/Rh1hIPEmEISmZqXrGJdY08_ioeJ3Z5ySrwBoYJrIyyM.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/S0/S0F35G58CWzjgfcUSP3JTmH1u8yPDUyTfYCu-OudGxw.cache b/tmp/cache/assets/sprockets/v4.0.0/S0/S0F35G58CWzjgfcUSP3JTmH1u8yPDUyTfYCu-OudGxw.cache deleted file mode 100644 index ef0e26d..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/S0/S0F35G58CWzjgfcUSP3JTmH1u8yPDUyTfYCu-OudGxw.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=88c8a45eadf016f26344fbea254fe4d267e3a13e799345b68d5e7c794f5bf965:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/S0/S0zrMTxpLHS-ni8NRkfuq67XxMbg0_DJ3DMr5t-fT0I.cache b/tmp/cache/assets/sprockets/v4.0.0/S0/S0zrMTxpLHS-ni8NRkfuq67XxMbg0_DJ3DMr5t-fT0I.cache deleted file mode 100644 index 5741079..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/S0/S0zrMTxpLHS-ni8NRkfuq67XxMbg0_DJ3DMr5t-fT0I.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/SB/SBcbnltAayotwhoTSKyUvtV5o_uZQsHMD2xhtlvBnzg.cache b/tmp/cache/assets/sprockets/v4.0.0/SB/SBcbnltAayotwhoTSKyUvtV5o_uZQsHMD2xhtlvBnzg.cache deleted file mode 100644 index 1e86c75..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/SB/SBcbnltAayotwhoTSKyUvtV5o_uZQsHMD2xhtlvBnzg.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=e116418784571489ea17370232dd32a12c223c2e1c40baded285af5a2b077012:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/SV/SV5ZsawIHSgMUq8DfMMeXK-ft7O8stEbLvU25rKu5CQ.cache b/tmp/cache/assets/sprockets/v4.0.0/SV/SV5ZsawIHSgMUq8DfMMeXK-ft7O8stEbLvU25rKu5CQ.cache deleted file mode 100644 index a997ac7..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/SV/SV5ZsawIHSgMUq8DfMMeXK-ft7O8stEbLvU25rKu5CQ.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/SV/SVCFptNit_cNLuBw9LBMhMuXFEPN6NI4AtNISaesbMQ.cache b/tmp/cache/assets/sprockets/v4.0.0/SV/SVCFptNit_cNLuBw9LBMhMuXFEPN6NI4AtNISaesbMQ.cache deleted file mode 100644 index d8b012d..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/SV/SVCFptNit_cNLuBw9LBMhMuXFEPN6NI4AtNISaesbMQ.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=c096d91b0216790f489a3d4947f8b5bbeacaf2cbbb74d5c9d4816b02cceeae68:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/SV/SVVnW9cXIooDh4JSqfi-292t2voPaQQkL17Hz9KUW2I.cache b/tmp/cache/assets/sprockets/v4.0.0/SV/SVVnW9cXIooDh4JSqfi-292t2voPaQQkL17Hz9KUW2I.cache deleted file mode 100644 index 8bef7de..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/SV/SVVnW9cXIooDh4JSqfi-292t2voPaQQkL17Hz9KUW2I.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=2bc7b8f121dae0c9993260d00d0f8bd698b19fddd088f04e0cf3881c65cf1f75:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Sc/Sc8ii3Ve0sD6ioOt6oXAsGzU_6-5YMcefv55FR2SUZ0.cache b/tmp/cache/assets/sprockets/v4.0.0/Sc/Sc8ii3Ve0sD6ioOt6oXAsGzU_6-5YMcefv55FR2SUZ0.cache deleted file mode 100644 index 69c6a0d..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/Sc/Sc8ii3Ve0sD6ioOt6oXAsGzU_6-5YMcefv55FR2SUZ0.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Sd/Sd82hMc2C_afk2ySl4_ggs738Ev6UdHxQrjS-OvT6DY.cache b/tmp/cache/assets/sprockets/v4.0.0/Sd/Sd82hMc2C_afk2ySl4_ggs738Ev6UdHxQrjS-OvT6DY.cache deleted file mode 100644 index d6ea5f5..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Sd/Sd82hMc2C_afk2ySl4_ggs738Ev6UdHxQrjS-OvT6DY.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=6ee14137fe9d00a3da8bc86f048f4e4a3ce4bc131e4ad2b2b303f25133b834be:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Sh/Sh1Kd6jw0GFLuqzEScKdnLWXXBkucoy5fjBQdzgW9no.cache b/tmp/cache/assets/sprockets/v4.0.0/Sh/Sh1Kd6jw0GFLuqzEScKdnLWXXBkucoy5fjBQdzgW9no.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Sh/Sh1Kd6jw0GFLuqzEScKdnLWXXBkucoy5fjBQdzgW9no.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Sq/Sqkr10RTJuVlJi1orjn_duHFcR4AuEZFbCZkEC-A3Ro.cache b/tmp/cache/assets/sprockets/v4.0.0/Sq/Sqkr10RTJuVlJi1orjn_duHFcR4AuEZFbCZkEC-A3Ro.cache deleted file mode 100644 index eff362c..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Sq/Sqkr10RTJuVlJi1orjn_duHFcR4AuEZFbCZkEC-A3Ro.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=8eae542d553a9b0471c8ae79da452c71fdb7667af6d8273e3bf3d5be7b2cd87a:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/T2/T2H-BGjAE8jvZ0NOWpPhNSU95_V2TvRtNhJ4K_4_pu4.cache b/tmp/cache/assets/sprockets/v4.0.0/T2/T2H-BGjAE8jvZ0NOWpPhNSU95_V2TvRtNhJ4K_4_pu4.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/T2/T2H-BGjAE8jvZ0NOWpPhNSU95_V2TvRtNhJ4K_4_pu4.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/T3/T30aLolrDaynw9bQSQ9hcsZtBaENNR88rvwM5N1vsNE.cache b/tmp/cache/assets/sprockets/v4.0.0/T3/T30aLolrDaynw9bQSQ9hcsZtBaENNR88rvwM5N1vsNE.cache deleted file mode 100644 index de187b1..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/T3/T30aLolrDaynw9bQSQ9hcsZtBaENNR88rvwM5N1vsNE.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/TY/TYMJ4tz-5q8yy9QNzXQr75g7g8SeY2vEOQQQNQcnPUY.cache b/tmp/cache/assets/sprockets/v4.0.0/TY/TYMJ4tz-5q8yy9QNzXQr75g7g8SeY2vEOQQQNQcnPUY.cache deleted file mode 100644 index ad4f905..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/TY/TYMJ4tz-5q8yy9QNzXQr75g7g8SeY2vEOQQQNQcnPUY.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Tm/TmoQP3mzvzWoS-2LKrmx6DP1_vLtXXF29hvKXwN-COc.cache b/tmp/cache/assets/sprockets/v4.0.0/Tm/TmoQP3mzvzWoS-2LKrmx6DP1_vLtXXF29hvKXwN-COc.cache deleted file mode 100644 index bee18f8..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Tm/TmoQP3mzvzWoS-2LKrmx6DP1_vLtXXF29hvKXwN-COc.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=9b34d0721e0dbed463d785252f56c8437bf42e8b18d4a759f3cc68383a3da0eb:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/UW/UWrOhqtmurI9os24BluACA9frE7pUsVSghaituGswGU.cache b/tmp/cache/assets/sprockets/v4.0.0/UW/UWrOhqtmurI9os24BluACA9frE7pUsVSghaituGswGU.cache deleted file mode 100644 index d80e89b..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/UW/UWrOhqtmurI9os24BluACA9frE7pUsVSghaituGswGU.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Uf/UfI9mFvuPyJvoK7-27WGr2qzVXd5Al-x33o0_bOSun0.cache b/tmp/cache/assets/sprockets/v4.0.0/Uf/UfI9mFvuPyJvoK7-27WGr2qzVXd5Al-x33o0_bOSun0.cache deleted file mode 100644 index d43f7b2..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/Uf/UfI9mFvuPyJvoK7-27WGr2qzVXd5Al-x33o0_bOSun0.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Ur/Ur3GcFRHSDfqqjL7ywtZgu8fgfaAsGEeXNScEflaP1A.cache b/tmp/cache/assets/sprockets/v4.0.0/Ur/Ur3GcFRHSDfqqjL7ywtZgu8fgfaAsGEeXNScEflaP1A.cache deleted file mode 100644 index e549674..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Ur/Ur3GcFRHSDfqqjL7ywtZgu8fgfaAsGEeXNScEflaP1A.cache +++ /dev/null @@ -1 +0,0 @@ -"%]LtQԛo0Ǻy/?avB \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/VG/VGPT9yiThXPFXGqTDHpuvqN4w5GfDgXeLeX2reb-Hak.cache b/tmp/cache/assets/sprockets/v4.0.0/VG/VGPT9yiThXPFXGqTDHpuvqN4w5GfDgXeLeX2reb-Hak.cache deleted file mode 100644 index b6ab06e..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/VG/VGPT9yiThXPFXGqTDHpuvqN4w5GfDgXeLeX2reb-Hak.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/config/manifest.js?type=application/javascript&pipeline=self&id=de7c0b99e4339cc665e2b25b5bcc9aed8765aa080698b234cb935b27a039c695:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/VK/VK9-_V1L6y7TRLd-FXH9H61O8QZ2QLHoy08Zk9qrEEg.cache b/tmp/cache/assets/sprockets/v4.0.0/VK/VK9-_V1L6y7TRLd-FXH9H61O8QZ2QLHoy08Zk9qrEEg.cache deleted file mode 100644 index 916d42a..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/VK/VK9-_V1L6y7TRLd-FXH9H61O8QZ2QLHoy08Zk9qrEEg.cache +++ /dev/null @@ -1 +0,0 @@ -"%xEl;S{_e7T>|o \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Vk/Vk8dkFodRn-hBych3R_nbKmnChuBoMN1myEe_gI83_w.cache b/tmp/cache/assets/sprockets/v4.0.0/Vk/Vk8dkFodRn-hBych3R_nbKmnChuBoMN1myEe_gI83_w.cache deleted file mode 100644 index c36dd70..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/Vk/Vk8dkFodRn-hBych3R_nbKmnChuBoMN1myEe_gI83_w.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/W6/W6cgHeLnIvaV824AETeziWIstoJNSoTeVxoDCP2GH1I.cache b/tmp/cache/assets/sprockets/v4.0.0/W6/W6cgHeLnIvaV824AETeziWIstoJNSoTeVxoDCP2GH1I.cache deleted file mode 100644 index 71ef060..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/W6/W6cgHeLnIvaV824AETeziWIstoJNSoTeVxoDCP2GH1I.cache +++ /dev/null @@ -1 +0,0 @@ -"%鑋H8PQ JH`Ӕa; D \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/WV/WVXHqcYlyb5Ygmez2zqW5DykgyIgjcyVplQjhRH2DM4.cache b/tmp/cache/assets/sprockets/v4.0.0/WV/WVXHqcYlyb5Ygmez2zqW5DykgyIgjcyVplQjhRH2DM4.cache deleted file mode 100644 index 65ecb63..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/WV/WVXHqcYlyb5Ygmez2zqW5DykgyIgjcyVplQjhRH2DM4.cache +++ /dev/null @@ -1,3 +0,0 @@ -"%~", -$yp)1Qx9 - \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/W_/W_3yXpLrqI-1WlVL_WpFNemGfXhCMIPl0UQr96AsLFQ.cache b/tmp/cache/assets/sprockets/v4.0.0/W_/W_3yXpLrqI-1WlVL_WpFNemGfXhCMIPl0UQr96AsLFQ.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/W_/W_3yXpLrqI-1WlVL_WpFNemGfXhCMIPl0UQr96AsLFQ.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/XF/XFOatPKMvzPLiWWyWorTzWhHZ6mG773nKigjFAjSl-Q.cache b/tmp/cache/assets/sprockets/v4.0.0/XF/XFOatPKMvzPLiWWyWorTzWhHZ6mG773nKigjFAjSl-Q.cache deleted file mode 100644 index 235a438..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/XF/XFOatPKMvzPLiWWyWorTzWhHZ6mG773nKigjFAjSl-Q.cache +++ /dev/null @@ -1 +0,0 @@ -"%Y|[nv=}[V \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/XJ/XJOv6Ra8sHThJm-4-gw5fMqTdTxjiwmqXyArRrPP4C0.cache b/tmp/cache/assets/sprockets/v4.0.0/XJ/XJOv6Ra8sHThJm-4-gw5fMqTdTxjiwmqXyArRrPP4C0.cache deleted file mode 100644 index b148cc9..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/XJ/XJOv6Ra8sHThJm-4-gw5fMqTdTxjiwmqXyArRrPP4C0.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/Xy/XynMKeyb_v-2bLntviLrrYBSRHbUO3sx6bRYhvXcHPU.cache b/tmp/cache/assets/sprockets/v4.0.0/Xy/XynMKeyb_v-2bLntviLrrYBSRHbUO3sx6bRYhvXcHPU.cache deleted file mode 100644 index caeb0dd..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Xy/XynMKeyb_v-2bLntviLrrYBSRHbUO3sx6bRYhvXcHPU.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=45a4a5cdedc34e85ea59f16958e28ced23e7683667eef72634ad37f7dfeb0723:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/YD/YDjhpYIz9pbLTMxv7li_NY8cDlRw4JIZZfQZLTlnbQU.cache b/tmp/cache/assets/sprockets/v4.0.0/YD/YDjhpYIz9pbLTMxv7li_NY8cDlRw4JIZZfQZLTlnbQU.cache deleted file mode 100644 index a219268..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/YD/YDjhpYIz9pbLTMxv7li_NY8cDlRw4JIZZfQZLTlnbQU.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=573ad0bd6b17538afdbf66ef81de758d34cdb425c72a2944f71e8d51a90edc93:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/YY/YYy70Kah5_yZt4dPeJYfakBBurxbeRNu3hD_h6H0RFY.cache b/tmp/cache/assets/sprockets/v4.0.0/YY/YYy70Kah5_yZt4dPeJYfakBBurxbeRNu3hD_h6H0RFY.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/YY/YYy70Kah5_yZt4dPeJYfakBBurxbeRNu3hD_h6H0RFY.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Yl/YlvzUp98vp3vLSe8wBM-sHY9EDhxCmYX1Yu3wH_Ufv8.cache b/tmp/cache/assets/sprockets/v4.0.0/Yl/YlvzUp98vp3vLSe8wBM-sHY9EDhxCmYX1Yu3wH_Ufv8.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Yl/YlvzUp98vp3vLSe8wBM-sHY9EDhxCmYX1Yu3wH_Ufv8.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/Ys/YsiEWWmd9CCI7N2d49xZdZ91iy1zxCglaZ5-5Re60Ws.cache b/tmp/cache/assets/sprockets/v4.0.0/Ys/YsiEWWmd9CCI7N2d49xZdZ91iy1zxCglaZ5-5Re60Ws.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/Ys/YsiEWWmd9CCI7N2d49xZdZ91iy1zxCglaZ5-5Re60Ws.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/ZO/ZOrGAMVCjvtM62c5gPRqv0QD-glqMw38BS975JP3qOs.cache b/tmp/cache/assets/sprockets/v4.0.0/ZO/ZOrGAMVCjvtM62c5gPRqv0QD-glqMw38BS975JP3qOs.cache deleted file mode 100644 index 6ad5015..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/ZO/ZOrGAMVCjvtM62c5gPRqv0QD-glqMw38BS975JP3qOs.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=f0c62a97be4664767bda7b9df92753895642216cb37158158b3eb16b277249e5:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/ZS/ZSPyaBI9sYGGpi0YbNXPra5BBPKD0iA0aVQYN2-sHac.cache b/tmp/cache/assets/sprockets/v4.0.0/ZS/ZSPyaBI9sYGGpi0YbNXPra5BBPKD0iA0aVQYN2-sHac.cache deleted file mode 100644 index c7c8bea..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/ZS/ZSPyaBI9sYGGpi0YbNXPra5BBPKD0iA0aVQYN2-sHac.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/ZS/ZSa4WxHls_r3xGnKmo1ULj8-BXeU655nMiyGSgeTmp4.cache b/tmp/cache/assets/sprockets/v4.0.0/ZS/ZSa4WxHls_r3xGnKmo1ULj8-BXeU655nMiyGSgeTmp4.cache deleted file mode 100644 index b7a25bf..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/ZS/ZSa4WxHls_r3xGnKmo1ULj8-BXeU655nMiyGSgeTmp4.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/_m/_mc5Ap4y5GELUTH_MDh9lqXxyMLqd6YlOZ1wRnKqpUo.cache b/tmp/cache/assets/sprockets/v4.0.0/_m/_mc5Ap4y5GELUTH_MDh9lqXxyMLqd6YlOZ1wRnKqpUo.cache deleted file mode 100644 index ce666b0..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/_m/_mc5Ap4y5GELUTH_MDh9lqXxyMLqd6YlOZ1wRnKqpUo.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=50315f12d271b3aecfff6d1386951003d601db480f6e1a7ffe4d89986bf042da:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/aF/aF9OQdOjIoMXynV1PWh7O-sHSlulj7cJuDtmASHeBFY.cache b/tmp/cache/assets/sprockets/v4.0.0/aF/aF9OQdOjIoMXynV1PWh7O-sHSlulj7cJuDtmASHeBFY.cache deleted file mode 100644 index c50093c..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/aF/aF9OQdOjIoMXynV1PWh7O-sHSlulj7cJuDtmASHeBFY.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=b5e08f84ca2ffd0356ea9b3686f58c70de74f52f2d595fcb7304766e9ac5f9b4:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/aR/aR9uypfiie9V8zHEkyHAdNbqkWA9P6frhFiQnbwwFdg.cache b/tmp/cache/assets/sprockets/v4.0.0/aR/aR9uypfiie9V8zHEkyHAdNbqkWA9P6frhFiQnbwwFdg.cache deleted file mode 100644 index 249fb50..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/aR/aR9uypfiie9V8zHEkyHAdNbqkWA9P6frhFiQnbwwFdg.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=26335511ffdc84ab5f513d90b2943f4a144496d529e331f4ead54f209e1340d4:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/aY/aYbYwX07uO2RTViTq7y5DcBrQoLmJRcME9Zi2zIHzeU.cache b/tmp/cache/assets/sprockets/v4.0.0/aY/aYbYwX07uO2RTViTq7y5DcBrQoLmJRcME9Zi2zIHzeU.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/aY/aYbYwX07uO2RTViTq7y5DcBrQoLmJRcME9Zi2zIHzeU.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/bB/bBH9qyNb83OSwSI2TYn_C91wqAjrJJv2-YVbh1JK2uU.cache b/tmp/cache/assets/sprockets/v4.0.0/bB/bBH9qyNb83OSwSI2TYn_C91wqAjrJJv2-YVbh1JK2uU.cache deleted file mode 100644 index 63b95d5..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/bB/bBH9qyNb83OSwSI2TYn_C91wqAjrJJv2-YVbh1JK2uU.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=1c44239a51ac9a2e4259a7cc7d442bdfc8190f5571df7c512145d96f716797f8:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/bH/bHEhS-_bnhOuKRMsEiHUe9e1yXV4tToLeYjJz1hDmaU.cache b/tmp/cache/assets/sprockets/v4.0.0/bH/bHEhS-_bnhOuKRMsEiHUe9e1yXV4tToLeYjJz1hDmaU.cache deleted file mode 100644 index 94099ba..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/bH/bHEhS-_bnhOuKRMsEiHUe9e1yXV4tToLeYjJz1hDmaU.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/bM/bMNSB8bALS6aMHwCYAJfZ3uN4v3Ma8icNlMIIvfMnJA.cache b/tmp/cache/assets/sprockets/v4.0.0/bM/bMNSB8bALS6aMHwCYAJfZ3uN4v3Ma8icNlMIIvfMnJA.cache deleted file mode 100644 index 27011c7..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/bM/bMNSB8bALS6aMHwCYAJfZ3uN4v3Ma8icNlMIIvfMnJA.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=a9d9a26f8b10752435b1b8970c4b0ed6b4945c9213cf52bec547222ea2fa9866:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/bR/bRRkuLwMITOWup88Hy8uzwnFEjhfDo0hNSiu9ItLSyo.cache b/tmp/cache/assets/sprockets/v4.0.0/bR/bRRkuLwMITOWup88Hy8uzwnFEjhfDo0hNSiu9ItLSyo.cache deleted file mode 100644 index 9625d0a..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/bR/bRRkuLwMITOWup88Hy8uzwnFEjhfDo0hNSiu9ItLSyo.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/bT/bTPjjYetF90MHiwsL3VoUt_63RINkKC_YoII4DK2H6I.cache b/tmp/cache/assets/sprockets/v4.0.0/bT/bTPjjYetF90MHiwsL3VoUt_63RINkKC_YoII4DK2H6I.cache deleted file mode 100644 index 21d098e..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/bT/bTPjjYetF90MHiwsL3VoUt_63RINkKC_YoII4DK2H6I.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/cB/cB8JDXWjBeBY0THnnzl6arEzO1pp20MaPiE59sm8SA0.cache b/tmp/cache/assets/sprockets/v4.0.0/cB/cB8JDXWjBeBY0THnnzl6arEzO1pp20MaPiE59sm8SA0.cache deleted file mode 100644 index 83f0b04..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/cB/cB8JDXWjBeBY0THnnzl6arEzO1pp20MaPiE59sm8SA0.cache +++ /dev/null @@ -1,2 +0,0 @@ -"%L09v\ ܢڙJ3eE - \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/cU/cU1JDTzhQ3smIQK8Ny6ogo_nGZXt-n0YYjt1lNwCLJQ.cache b/tmp/cache/assets/sprockets/v4.0.0/cU/cU1JDTzhQ3smIQK8Ny6ogo_nGZXt-n0YYjt1lNwCLJQ.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/cU/cU1JDTzhQ3smIQK8Ny6ogo_nGZXt-n0YYjt1lNwCLJQ.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/ct/ctg7tCcpsLZvMlxohvYK5Bo8WT2njx0xryJGvRrZKhk.cache b/tmp/cache/assets/sprockets/v4.0.0/ct/ctg7tCcpsLZvMlxohvYK5Bo8WT2njx0xryJGvRrZKhk.cache deleted file mode 100644 index f65b5e3..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/ct/ctg7tCcpsLZvMlxohvYK5Bo8WT2njx0xryJGvRrZKhk.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/d7/d7PWWweqRRM6BnTDJS8BELjpYL-ej_QR52DdA1yyWCo.cache b/tmp/cache/assets/sprockets/v4.0.0/d7/d7PWWweqRRM6BnTDJS8BELjpYL-ej_QR52DdA1yyWCo.cache deleted file mode 100644 index 8834424..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/d7/d7PWWweqRRM6BnTDJS8BELjpYL-ej_QR52DdA1yyWCo.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=e36812404f6e0186722a479974b9cf315538778a2d346d413dce60a3b64f03d3:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/dG/dGhcTiYvd_ufxLepP44g8FBJb9wm7iBfobsc7uSTJyw.cache b/tmp/cache/assets/sprockets/v4.0.0/dG/dGhcTiYvd_ufxLepP44g8FBJb9wm7iBfobsc7uSTJyw.cache deleted file mode 100644 index f783720..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/dG/dGhcTiYvd_ufxLepP44g8FBJb9wm7iBfobsc7uSTJyw.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=a7c8cf89bde3ad04eb111970e64f83ac7fbadd63a7068dc39bdb82c7137ac949:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/dM/dMI8pLdDO-VqTyl96g1EhLzdy8igt4tkrxH1apCqRAk.cache b/tmp/cache/assets/sprockets/v4.0.0/dM/dMI8pLdDO-VqTyl96g1EhLzdy8igt4tkrxH1apCqRAk.cache deleted file mode 100644 index 5547279..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/dM/dMI8pLdDO-VqTyl96g1EhLzdy8igt4tkrxH1apCqRAk.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=98e68eebfefc8b9ca0a864e6f87c0d88526710692a4ecfbdb9be553d0528a072:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/dQ/dQ1S2n9iHt8UIpqPJhI46pUgbAZZfCOf1zFWiGtNbIM.cache b/tmp/cache/assets/sprockets/v4.0.0/dQ/dQ1S2n9iHt8UIpqPJhI46pUgbAZZfCOf1zFWiGtNbIM.cache deleted file mode 100644 index 973049b..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/dQ/dQ1S2n9iHt8UIpqPJhI46pUgbAZZfCOf1zFWiGtNbIM.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/dc/dciBY0j_ryoC-zkh5ggjFDtzlVxzYPMsObaXOAoBUYY.cache b/tmp/cache/assets/sprockets/v4.0.0/dc/dciBY0j_ryoC-zkh5ggjFDtzlVxzYPMsObaXOAoBUYY.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/dc/dciBY0j_ryoC-zkh5ggjFDtzlVxzYPMsObaXOAoBUYY.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/do/do45MqIfkJbTAphw3PVTrFs4dPAbv7Fv_a_Zt5AfwPg.cache b/tmp/cache/assets/sprockets/v4.0.0/do/do45MqIfkJbTAphw3PVTrFs4dPAbv7Fv_a_Zt5AfwPg.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/do/do45MqIfkJbTAphw3PVTrFs4dPAbv7Fv_a_Zt5AfwPg.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/dt/dtK4s4LgkqidxQfCt0en8DmM-t-DmugReB8RahukYTw.cache b/tmp/cache/assets/sprockets/v4.0.0/dt/dtK4s4LgkqidxQfCt0en8DmM-t-DmugReB8RahukYTw.cache deleted file mode 100644 index cb4b429..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/dt/dtK4s4LgkqidxQfCt0en8DmM-t-DmugReB8RahukYTw.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/du/duHe9gA33JsQa0O-3ngo-GV6bhKmF02XkWNnfSyaZkA.cache b/tmp/cache/assets/sprockets/v4.0.0/du/duHe9gA33JsQa0O-3ngo-GV6bhKmF02XkWNnfSyaZkA.cache deleted file mode 100644 index 086b82a..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/du/duHe9gA33JsQa0O-3ngo-GV6bhKmF02XkWNnfSyaZkA.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=6e235644cc36ca4f86dfebd734721afbcb10a6592a87ca238aadf1790342c98b:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/eF/eFEzkU9tKR8V7XbfGQnOOkuJeZdHI1iRskpMYGNEiRU.cache b/tmp/cache/assets/sprockets/v4.0.0/eF/eFEzkU9tKR8V7XbfGQnOOkuJeZdHI1iRskpMYGNEiRU.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/eF/eFEzkU9tKR8V7XbfGQnOOkuJeZdHI1iRskpMYGNEiRU.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/eG/eGHCuiMbBQYqWj8Pffk3jMB42GG3jh4jO6yZJq2STYc.cache b/tmp/cache/assets/sprockets/v4.0.0/eG/eGHCuiMbBQYqWj8Pffk3jMB42GG3jh4jO6yZJq2STYc.cache deleted file mode 100644 index cf21a1f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/eG/eGHCuiMbBQYqWj8Pffk3jMB42GG3jh4jO6yZJq2STYc.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=3c8d1c772cd24de7ef29cf4bcabd8ddb36ba4eb266eee9bf90ef54e71f61ee85:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/ee/eeqNI4rdXToKFFXkSNUU5FZX5KwixKavnnh_KBR1L-U.cache b/tmp/cache/assets/sprockets/v4.0.0/ee/eeqNI4rdXToKFFXkSNUU5FZX5KwixKavnnh_KBR1L-U.cache deleted file mode 100644 index 2855671..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/ee/eeqNI4rdXToKFFXkSNUU5FZX5KwixKavnnh_KBR1L-U.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=48ea17226f3ea080b56f2f0270116807c36742aa84a4d1bae31abde702de26c1:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/ey/eyG8XpZ2YLxRHnyZwnSvq2Mka_bOSU7jV9zDp01KWUc.cache b/tmp/cache/assets/sprockets/v4.0.0/ey/eyG8XpZ2YLxRHnyZwnSvq2Mka_bOSU7jV9zDp01KWUc.cache deleted file mode 100644 index e49dd6b..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/ey/eyG8XpZ2YLxRHnyZwnSvq2Mka_bOSU7jV9zDp01KWUc.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=8a4bd158243142eada412588b24c067f5585ce480a2c713b62e11dc122bbc6e4:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/fK/fKsPhlq-36mPTKlnVpopENvQqP50GglzEHGchZXtX0w.cache b/tmp/cache/assets/sprockets/v4.0.0/fK/fKsPhlq-36mPTKlnVpopENvQqP50GglzEHGchZXtX0w.cache deleted file mode 100644 index fea5c4a..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/fK/fKsPhlq-36mPTKlnVpopENvQqP50GglzEHGchZXtX0w.cache +++ /dev/null @@ -1 +0,0 @@ -"%ʼ_ B&f3uý oavEƭ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/fQ/fQ6GuODUAOo3bKGsmnFfaa30seZLe2xgS6JN4troJN4.cache b/tmp/cache/assets/sprockets/v4.0.0/fQ/fQ6GuODUAOo3bKGsmnFfaa30seZLe2xgS6JN4troJN4.cache deleted file mode 100644 index 073abf4..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/fQ/fQ6GuODUAOo3bKGsmnFfaa30seZLe2xgS6JN4troJN4.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/fX/fXwqgM8recbRat-BU_SPQ_HmEohetf3XNDeQLVThOUE.cache b/tmp/cache/assets/sprockets/v4.0.0/fX/fXwqgM8recbRat-BU_SPQ_HmEohetf3XNDeQLVThOUE.cache deleted file mode 100644 index 38681c2..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/fX/fXwqgM8recbRat-BU_SPQ_HmEohetf3XNDeQLVThOUE.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/fY/fYv5UlJaUDEK7kMaqXPLSaQMS70ge51CCu9BgYGEGZQ.cache b/tmp/cache/assets/sprockets/v4.0.0/fY/fYv5UlJaUDEK7kMaqXPLSaQMS70ge51CCu9BgYGEGZQ.cache deleted file mode 100644 index 898ee10..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/fY/fYv5UlJaUDEK7kMaqXPLSaQMS70ge51CCu9BgYGEGZQ.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/fi/fiJGuubumJetVxFgd3-Tie8cRPFs99q2QdDMqk8rY-M.cache b/tmp/cache/assets/sprockets/v4.0.0/fi/fiJGuubumJetVxFgd3-Tie8cRPFs99q2QdDMqk8rY-M.cache deleted file mode 100644 index ab725c5..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/fi/fiJGuubumJetVxFgd3-Tie8cRPFs99q2QdDMqk8rY-M.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=7dc61071c5a697a174de78690123f31b72f15e7c3b51a27f49de23625cfae358:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/gG/gGEORy1WSQkHo2lbFWEsI9fu0tobXGIgRuf8PbnVAkM.cache b/tmp/cache/assets/sprockets/v4.0.0/gG/gGEORy1WSQkHo2lbFWEsI9fu0tobXGIgRuf8PbnVAkM.cache deleted file mode 100644 index 1d69555..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/gG/gGEORy1WSQkHo2lbFWEsI9fu0tobXGIgRuf8PbnVAkM.cache +++ /dev/null @@ -1 +0,0 @@ -"%S̼H`sޡL/bp \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/gP/gPefJ5aEsy1YeX4RSZGdtYcOD5YOhnUL9cgwREkIzAg.cache b/tmp/cache/assets/sprockets/v4.0.0/gP/gPefJ5aEsy1YeX4RSZGdtYcOD5YOhnUL9cgwREkIzAg.cache deleted file mode 100644 index 41f5189..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/gP/gPefJ5aEsy1YeX4RSZGdtYcOD5YOhnUL9cgwREkIzAg.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/gU/gUcD8NbYomPGSFoS5nERXdOQ8qgGTsIDCMjVqlq8tt8.cache b/tmp/cache/assets/sprockets/v4.0.0/gU/gUcD8NbYomPGSFoS5nERXdOQ8qgGTsIDCMjVqlq8tt8.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/gU/gUcD8NbYomPGSFoS5nERXdOQ8qgGTsIDCMjVqlq8tt8.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/g_/g_469q0BUc8T-PZLzODyeCAnPklyv7cSfd_PpZlGz9o.cache b/tmp/cache/assets/sprockets/v4.0.0/g_/g_469q0BUc8T-PZLzODyeCAnPklyv7cSfd_PpZlGz9o.cache deleted file mode 100644 index e3814e5..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/g_/g_469q0BUc8T-PZLzODyeCAnPklyv7cSfd_PpZlGz9o.cache +++ /dev/null @@ -1,2 +0,0 @@ -"%f)ץ.-g;jzL -rX!Mk \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/gp/gp4HVrxkbwB8SEva7NGz2jdxFrO28anD3Df6_3fbTrI.cache b/tmp/cache/assets/sprockets/v4.0.0/gp/gp4HVrxkbwB8SEva7NGz2jdxFrO28anD3Df6_3fbTrI.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/gp/gp4HVrxkbwB8SEva7NGz2jdxFrO28anD3Df6_3fbTrI.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/hg/hgf9DcLBoP3RdmM5MxQXvwGuxjR9NsEF0HYXfFyeio8.cache b/tmp/cache/assets/sprockets/v4.0.0/hg/hgf9DcLBoP3RdmM5MxQXvwGuxjR9NsEF0HYXfFyeio8.cache deleted file mode 100644 index 08b7c28..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/hg/hgf9DcLBoP3RdmM5MxQXvwGuxjR9NsEF0HYXfFyeio8.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=cabca51f85b9cabd35aaa708f192613292ea7879648c9548e7a47c267f00fe4f:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/i2/i2gAd45d1frv8cAq_1rHgfoW4YyOb2b2woo0bfZ3H4w.cache b/tmp/cache/assets/sprockets/v4.0.0/i2/i2gAd45d1frv8cAq_1rHgfoW4YyOb2b2woo0bfZ3H4w.cache deleted file mode 100644 index d6fc871..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/i2/i2gAd45d1frv8cAq_1rHgfoW4YyOb2b2woo0bfZ3H4w.cache +++ /dev/null @@ -1 +0,0 @@ -"%D5 vzsV˒jXn3# \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/iC/iCUcFz9AR08Lj4kUFOcxS4RYbqN6WGIpULfXu4Y3lkw.cache b/tmp/cache/assets/sprockets/v4.0.0/iC/iCUcFz9AR08Lj4kUFOcxS4RYbqN6WGIpULfXu4Y3lkw.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/iC/iCUcFz9AR08Lj4kUFOcxS4RYbqN6WGIpULfXu4Y3lkw.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/iO/iOkaXfbuFsMBBfpsNhgXPFdf30gKhFdIs_z8CDr9B_k.cache b/tmp/cache/assets/sprockets/v4.0.0/iO/iOkaXfbuFsMBBfpsNhgXPFdf30gKhFdIs_z8CDr9B_k.cache deleted file mode 100644 index 8430d7f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/iO/iOkaXfbuFsMBBfpsNhgXPFdf30gKhFdIs_z8CDr9B_k.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=c078c044a75b3775bfe27f6273d19e05ce5f4e981c42e0bfad234de85b71c4dd:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/is/is3nBfCw3GJT3i6f5teyd-HHMCm5Lea9BEJj3tKsRaA.cache b/tmp/cache/assets/sprockets/v4.0.0/is/is3nBfCw3GJT3i6f5teyd-HHMCm5Lea9BEJj3tKsRaA.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/is/is3nBfCw3GJT3i6f5teyd-HHMCm5Lea9BEJj3tKsRaA.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/j3/j3QbAyIQaSdR4JFYROL-jJ2B6HE_i6KwYOZq4UDL0y0.cache b/tmp/cache/assets/sprockets/v4.0.0/j3/j3QbAyIQaSdR4JFYROL-jJ2B6HE_i6KwYOZq4UDL0y0.cache deleted file mode 100644 index 06b9899..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/j3/j3QbAyIQaSdR4JFYROL-jJ2B6HE_i6KwYOZq4UDL0y0.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/j4/j4gQAYvO2FTWdMbKF-lPhrRIurgsdgt7Ar2BlvFzpu4.cache b/tmp/cache/assets/sprockets/v4.0.0/j4/j4gQAYvO2FTWdMbKF-lPhrRIurgsdgt7Ar2BlvFzpu4.cache deleted file mode 100644 index 2610d5e..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/j4/j4gQAYvO2FTWdMbKF-lPhrRIurgsdgt7Ar2BlvFzpu4.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/js/js_EA9vJf3Q10S4mJjztkAQBFzCSGSqzQAWkNoLBKDM.cache b/tmp/cache/assets/sprockets/v4.0.0/js/js_EA9vJf3Q10S4mJjztkAQBFzCSGSqzQAWkNoLBKDM.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/js/js_EA9vJf3Q10S4mJjztkAQBFzCSGSqzQAWkNoLBKDM.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/js/jsbVe6cZPCfWly5gqsFq89vWtkjmh_AkPPtbhDvFjXc.cache b/tmp/cache/assets/sprockets/v4.0.0/js/jsbVe6cZPCfWly5gqsFq89vWtkjmh_AkPPtbhDvFjXc.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/js/jsbVe6cZPCfWly5gqsFq89vWtkjmh_AkPPtbhDvFjXc.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/k-/k-EWO5Eiix8F4Z3aU0R_zR9Xnz-DE0sJMLDEHItx9Rk.cache b/tmp/cache/assets/sprockets/v4.0.0/k-/k-EWO5Eiix8F4Z3aU0R_zR9Xnz-DE0sJMLDEHItx9Rk.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/k-/k-EWO5Eiix8F4Z3aU0R_zR9Xnz-DE0sJMLDEHItx9Rk.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/kE/kE34ZLboH0lLLrf1j85q5tT1hxjYpiPIULGMggtOUU8.cache b/tmp/cache/assets/sprockets/v4.0.0/kE/kE34ZLboH0lLLrf1j85q5tT1hxjYpiPIULGMggtOUU8.cache deleted file mode 100644 index 6fab14d..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/kE/kE34ZLboH0lLLrf1j85q5tT1hxjYpiPIULGMggtOUU8.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/config/manifest.js?type=application/javascript&id=0c23c710202d33d3cb41462cd68f6ff9e47d1ef35e161a5b18fecadcf0878a7e:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/ki/ki1hr2lVRyUEG7z_jNZxYPpzxqSJ-EMtgwYABPtY5dE.cache b/tmp/cache/assets/sprockets/v4.0.0/ki/ki1hr2lVRyUEG7z_jNZxYPpzxqSJ-EMtgwYABPtY5dE.cache deleted file mode 100644 index 22302ec..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/ki/ki1hr2lVRyUEG7z_jNZxYPpzxqSJ-EMtgwYABPtY5dE.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=75dfd2e9f118b86643ab5521f127b1d36728e1e13bcca0c717f76d34c5706692:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/l5/l516iYB0ETwid0Z6f0I05TYtTmvDaELVe-mz9XwpCes.cache b/tmp/cache/assets/sprockets/v4.0.0/l5/l516iYB0ETwid0Z6f0I05TYtTmvDaELVe-mz9XwpCes.cache deleted file mode 100644 index db55c0a..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/l5/l516iYB0ETwid0Z6f0I05TYtTmvDaELVe-mz9XwpCes.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=3ab7e8aae0c418f18911caa7d8ed65cd763bdee19f7f4cc1029cdec4d9b1b8d0:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/m1/m1QrB6-7nNKI9zS89GKaf6bdRp2pVI3BPAF-YTlwuMc.cache b/tmp/cache/assets/sprockets/v4.0.0/m1/m1QrB6-7nNKI9zS89GKaf6bdRp2pVI3BPAF-YTlwuMc.cache deleted file mode 100644 index f84fe96..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/m1/m1QrB6-7nNKI9zS89GKaf6bdRp2pVI3BPAF-YTlwuMc.cache +++ /dev/null @@ -1 +0,0 @@ -"%r 2-uofd]_{՝^#C,~$ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/mI/mIix02DrtaywP1b0xLieQyOIB9iwPHWKeBZ--eVhJsU.cache b/tmp/cache/assets/sprockets/v4.0.0/mI/mIix02DrtaywP1b0xLieQyOIB9iwPHWKeBZ--eVhJsU.cache index ce7d5c7..ffca06f 100644 Binary files a/tmp/cache/assets/sprockets/v4.0.0/mI/mIix02DrtaywP1b0xLieQyOIB9iwPHWKeBZ--eVhJsU.cache and b/tmp/cache/assets/sprockets/v4.0.0/mI/mIix02DrtaywP1b0xLieQyOIB9iwPHWKeBZ--eVhJsU.cache differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/mI/mIoDrgCB44VHJdY4ooBYr909I9vRNdAkeufMHMXJImY.cache b/tmp/cache/assets/sprockets/v4.0.0/mI/mIoDrgCB44VHJdY4ooBYr909I9vRNdAkeufMHMXJImY.cache deleted file mode 100644 index 6b56e98..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/mI/mIoDrgCB44VHJdY4ooBYr909I9vRNdAkeufMHMXJImY.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/mP/mPqgKSFcGheoKQDVxXdoB2N_irOCe5yYk5s-1skmcng.cache b/tmp/cache/assets/sprockets/v4.0.0/mP/mPqgKSFcGheoKQDVxXdoB2N_irOCe5yYk5s-1skmcng.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/mP/mPqgKSFcGheoKQDVxXdoB2N_irOCe5yYk5s-1skmcng.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/m_/m_Hl_6bbID6jV6sWSjH_aI-pzkJ6-QcZdPizLCV6kms.cache b/tmp/cache/assets/sprockets/v4.0.0/m_/m_Hl_6bbID6jV6sWSjH_aI-pzkJ6-QcZdPizLCV6kms.cache deleted file mode 100644 index 380273e..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/m_/m_Hl_6bbID6jV6sWSjH_aI-pzkJ6-QcZdPizLCV6kms.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=937a2aff00d021687e99d1c3f0da321f57bceddf158909d9c0ad403795f9c707:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/nF/nF8Z9UE4sgan09GbGQ_dcvwa9gZFhz7Vam0mRm1jZ3o.cache b/tmp/cache/assets/sprockets/v4.0.0/nF/nF8Z9UE4sgan09GbGQ_dcvwa9gZFhz7Vam0mRm1jZ3o.cache deleted file mode 100644 index b06ceb1..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/nF/nF8Z9UE4sgan09GbGQ_dcvwa9gZFhz7Vam0mRm1jZ3o.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=7feec8d7b2efbdd3653d23ffbe212c72ab8851d92e7e8f9360c5e1e231ea3f25:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/nK/nKXxk3FTJ2gFoNwQvg3fB-Gpf7193UJrEiMQ0oIBDS0.cache b/tmp/cache/assets/sprockets/v4.0.0/nK/nKXxk3FTJ2gFoNwQvg3fB-Gpf7193UJrEiMQ0oIBDS0.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/nK/nKXxk3FTJ2gFoNwQvg3fB-Gpf7193UJrEiMQ0oIBDS0.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/n_/n_6pbdIftVLj2zWvC0mdOyybwi8XZJhP-0iJCVbZt-0.cache b/tmp/cache/assets/sprockets/v4.0.0/n_/n_6pbdIftVLj2zWvC0mdOyybwi8XZJhP-0iJCVbZt-0.cache deleted file mode 100644 index 51fa8d9..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/n_/n_6pbdIftVLj2zWvC0mdOyybwi8XZJhP-0iJCVbZt-0.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=bb3dcd559c2b63a819f07db4a9748034445fe07dc9f89a869fb41679045ac4b3:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/nz/nzXwZ_THfWYFQJXYkushETiU_biB5BKlgsKjtjAtMNs.cache b/tmp/cache/assets/sprockets/v4.0.0/nz/nzXwZ_THfWYFQJXYkushETiU_biB5BKlgsKjtjAtMNs.cache deleted file mode 100644 index 6c786d8..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/nz/nzXwZ_THfWYFQJXYkushETiU_biB5BKlgsKjtjAtMNs.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=0ea77c27e2c677883214e13774b1cc650158b303bfa56cb8b6c3675f5019fa4d:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/o1/o197IIq5J8_51Qxcb1g3vmYvSPxa8tvAsP3AoWZAnlc.cache b/tmp/cache/assets/sprockets/v4.0.0/o1/o197IIq5J8_51Qxcb1g3vmYvSPxa8tvAsP3AoWZAnlc.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/o1/o197IIq5J8_51Qxcb1g3vmYvSPxa8tvAsP3AoWZAnlc.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/oC/oCo4_J9kBXji1rc9C_3SYqpstiyYL5QV8gS728lWkIk.cache b/tmp/cache/assets/sprockets/v4.0.0/oC/oCo4_J9kBXji1rc9C_3SYqpstiyYL5QV8gS728lWkIk.cache deleted file mode 100644 index 5b3307d..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/oC/oCo4_J9kBXji1rc9C_3SYqpstiyYL5QV8gS728lWkIk.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=972b4d17502da6d947f9683935e03267f1426deac0f94bd13f2c13895e455f9f:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/oh/ohNQnud2pC9pHPW272YeaeDN_4ztfkP5nBEktlFPWZs.cache b/tmp/cache/assets/sprockets/v4.0.0/oh/ohNQnud2pC9pHPW272YeaeDN_4ztfkP5nBEktlFPWZs.cache deleted file mode 100644 index 0addebc..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/oh/ohNQnud2pC9pHPW272YeaeDN_4ztfkP5nBEktlFPWZs.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/ok/okB5SDH6lY-qio2hBTsQNsdPcX8EsKLpirZal7Gprdg.cache b/tmp/cache/assets/sprockets/v4.0.0/ok/okB5SDH6lY-qio2hBTsQNsdPcX8EsKLpirZal7Gprdg.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/ok/okB5SDH6lY-qio2hBTsQNsdPcX8EsKLpirZal7Gprdg.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/oo/oor6zQFt_AZW8BSCSGTtWYp1K1yRXKk3Dz8ZD8b6Agg.cache b/tmp/cache/assets/sprockets/v4.0.0/oo/oor6zQFt_AZW8BSCSGTtWYp1K1yRXKk3Dz8ZD8b6Agg.cache deleted file mode 100644 index 655512c..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/oo/oor6zQFt_AZW8BSCSGTtWYp1K1yRXKk3Dz8ZD8b6Agg.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=621b9383170ea31e6b63db2e131d727f1afc2312b28047cc79a4d4edaaa9f05e:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/p8/p8J1LavnfqGlMaMQxv7rlsBYkVXIT3_RZsh_Jlh2IPA.cache b/tmp/cache/assets/sprockets/v4.0.0/p8/p8J1LavnfqGlMaMQxv7rlsBYkVXIT3_RZsh_Jlh2IPA.cache deleted file mode 100644 index e6e6dc4..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/p8/p8J1LavnfqGlMaMQxv7rlsBYkVXIT3_RZsh_Jlh2IPA.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/pM/pMFYeaAlPQLJydz6MBDuZu5efS1utfn-qLQGKY_nbX8.cache b/tmp/cache/assets/sprockets/v4.0.0/pM/pMFYeaAlPQLJydz6MBDuZu5efS1utfn-qLQGKY_nbX8.cache deleted file mode 100644 index 98ff1da..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/pM/pMFYeaAlPQLJydz6MBDuZu5efS1utfn-qLQGKY_nbX8.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=4900b09feb0377f26785c6578fb9769ee17bda0e427347a6e0caeb542099fc4a:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/ph/ph-MY_QpoyeZFCdZNWdhAe_43OU89h2A31YJsswi494.cache b/tmp/cache/assets/sprockets/v4.0.0/ph/ph-MY_QpoyeZFCdZNWdhAe_43OU89h2A31YJsswi494.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/ph/ph-MY_QpoyeZFCdZNWdhAe_43OU89h2A31YJsswi494.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/pv/pvpj4dUmv4jrfn2b5dENLt9n0NWRKloRG1_kBTE32qQ.cache b/tmp/cache/assets/sprockets/v4.0.0/pv/pvpj4dUmv4jrfn2b5dENLt9n0NWRKloRG1_kBTE32qQ.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/pv/pvpj4dUmv4jrfn2b5dENLt9n0NWRKloRG1_kBTE32qQ.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/q5/q53hdJHPY1TRwMuy3FiqRe9uqICLlXome-7HFNvWNc0.cache b/tmp/cache/assets/sprockets/v4.0.0/q5/q53hdJHPY1TRwMuy3FiqRe9uqICLlXome-7HFNvWNc0.cache deleted file mode 100644 index 10ed582..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/q5/q53hdJHPY1TRwMuy3FiqRe9uqICLlXome-7HFNvWNc0.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=36023311cabd4c9a0021f00085a6fabce73e87b8a99e422445acce512d46cf15:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/q5/q5rYg8If9nejBczdIo-MBAB6xmJGDIxDqPtFHhWqmJw.cache b/tmp/cache/assets/sprockets/v4.0.0/q5/q5rYg8If9nejBczdIo-MBAB6xmJGDIxDqPtFHhWqmJw.cache deleted file mode 100644 index b79cea0..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/q5/q5rYg8If9nejBczdIo-MBAB6xmJGDIxDqPtFHhWqmJw.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=0a620befbc33f55f613ea8eefc194246c45a89d7b39136463e0caab2cf5835c3:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/q6/q65_kUnMR0wC1PpmTm22lOJ1piTzPnqRqdKirpr972c.cache b/tmp/cache/assets/sprockets/v4.0.0/q6/q65_kUnMR0wC1PpmTm22lOJ1piTzPnqRqdKirpr972c.cache deleted file mode 100644 index 2f78ac9..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/q6/q65_kUnMR0wC1PpmTm22lOJ1piTzPnqRqdKirpr972c.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=aaf21e85e1a5424104bd29bdcd728a6f0e7f56c6ff9a69dd11ac595d03e97179:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/qG/qGIAI3zPXH-t0D8yay7jDRQiIsP2d5iEXhdDv66nDE4.cache b/tmp/cache/assets/sprockets/v4.0.0/qG/qGIAI3zPXH-t0D8yay7jDRQiIsP2d5iEXhdDv66nDE4.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/qG/qGIAI3zPXH-t0D8yay7jDRQiIsP2d5iEXhdDv66nDE4.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/ql/qlNs3-RUW_VWznyEMDHBPpeqhCZ2VkwYfYvHKR5NOek.cache b/tmp/cache/assets/sprockets/v4.0.0/ql/qlNs3-RUW_VWznyEMDHBPpeqhCZ2VkwYfYvHKR5NOek.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/ql/qlNs3-RUW_VWznyEMDHBPpeqhCZ2VkwYfYvHKR5NOek.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/r8/r8RYScNY6ARBIOGRmJrpxUhlbzTb9-YCzNJD_-JpGFU.cache b/tmp/cache/assets/sprockets/v4.0.0/r8/r8RYScNY6ARBIOGRmJrpxUhlbzTb9-YCzNJD_-JpGFU.cache deleted file mode 100644 index 15a7652..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/r8/r8RYScNY6ARBIOGRmJrpxUhlbzTb9-YCzNJD_-JpGFU.cache +++ /dev/null @@ -1 +0,0 @@ -"%!CLU8$iwHFd_9$;[ \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/rG/rGEiriSsH1vgM6Els_ZTmQMRqQbggqp8oPvS3aCQzOo.cache b/tmp/cache/assets/sprockets/v4.0.0/rG/rGEiriSsH1vgM6Els_ZTmQMRqQbggqp8oPvS3aCQzOo.cache index f26649b..e07c460 100644 Binary files a/tmp/cache/assets/sprockets/v4.0.0/rG/rGEiriSsH1vgM6Els_ZTmQMRqQbggqp8oPvS3aCQzOo.cache and b/tmp/cache/assets/sprockets/v4.0.0/rG/rGEiriSsH1vgM6Els_ZTmQMRqQbggqp8oPvS3aCQzOo.cache differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/rK/rKYZraWo2usrDTXXVfaOb6BVuz2MA82Ehl6XfRbZlbo.cache b/tmp/cache/assets/sprockets/v4.0.0/rK/rKYZraWo2usrDTXXVfaOb6BVuz2MA82Ehl6XfRbZlbo.cache deleted file mode 100644 index 2e68585..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/rK/rKYZraWo2usrDTXXVfaOb6BVuz2MA82Ehl6XfRbZlbo.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/r_/r_Bu02v4flL4BUopmeRVMUpFlJdWBuUeuuW7ynp4o9w.cache b/tmp/cache/assets/sprockets/v4.0.0/r_/r_Bu02v4flL4BUopmeRVMUpFlJdWBuUeuuW7ynp4o9w.cache deleted file mode 100644 index 084bb75..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/r_/r_Bu02v4flL4BUopmeRVMUpFlJdWBuUeuuW7ynp4o9w.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/rx/rxPbqzou4eMONj59AbTf6QiYDp7sEUqCO3tzvjgMq5I.cache b/tmp/cache/assets/sprockets/v4.0.0/rx/rxPbqzou4eMONj59AbTf6QiYDp7sEUqCO3tzvjgMq5I.cache deleted file mode 100644 index 5809d6f..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/rx/rxPbqzou4eMONj59AbTf6QiYDp7sEUqCO3tzvjgMq5I.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/sa/saZNU-PE7xyaYcCIGUdYUDrO8CyTwrgGWAzE5BgQ4_M.cache b/tmp/cache/assets/sprockets/v4.0.0/sa/saZNU-PE7xyaYcCIGUdYUDrO8CyTwrgGWAzE5BgQ4_M.cache deleted file mode 100644 index 2bdee38..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/sa/saZNU-PE7xyaYcCIGUdYUDrO8CyTwrgGWAzE5BgQ4_M.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/sj/sj-mA2ToBqY4u4qGVBwGsIqtoYZ0iDygRYx7rFqV5Iw.cache b/tmp/cache/assets/sprockets/v4.0.0/sj/sj-mA2ToBqY4u4qGVBwGsIqtoYZ0iDygRYx7rFqV5Iw.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/sj/sj-mA2ToBqY4u4qGVBwGsIqtoYZ0iDygRYx7rFqV5Iw.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/sk/skA9w6Br8fhI5Z9A_RPDLeQiohWhmsrFNyHovwKkpGk.cache b/tmp/cache/assets/sprockets/v4.0.0/sk/skA9w6Br8fhI5Z9A_RPDLeQiohWhmsrFNyHovwKkpGk.cache deleted file mode 100644 index 8cfb08e..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/sk/skA9w6Br8fhI5Z9A_RPDLeQiohWhmsrFNyHovwKkpGk.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/sl/slYuuDJS6n2ZqEM6YSQNGFgjN_0efYOPbUdDN4aVdnI.cache b/tmp/cache/assets/sprockets/v4.0.0/sl/slYuuDJS6n2ZqEM6YSQNGFgjN_0efYOPbUdDN4aVdnI.cache deleted file mode 100644 index 3e3c89e..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/sl/slYuuDJS6n2ZqEM6YSQNGFgjN_0efYOPbUdDN4aVdnI.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=74036592a29d024a14c9d58df1c3f3dd2ef47557392d968c5d8dcb2e182ce07a:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/sl/slZkYFLkuZ22EaMmcRQf8yLM8eCQjsEEE7p8GGAv9Uc.cache b/tmp/cache/assets/sprockets/v4.0.0/sl/slZkYFLkuZ22EaMmcRQf8yLM8eCQjsEEE7p8GGAv9Uc.cache deleted file mode 100644 index 1eb5302..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/sl/slZkYFLkuZ22EaMmcRQf8yLM8eCQjsEEE7p8GGAv9Uc.cache +++ /dev/null @@ -1 +0,0 @@ -"%:{orC&{k8 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/t7/t7SpJzJpvUTXoHF5NNYygMCBjPrVt8PATwx_VUyB0CM.cache b/tmp/cache/assets/sprockets/v4.0.0/t7/t7SpJzJpvUTXoHF5NNYygMCBjPrVt8PATwx_VUyB0CM.cache deleted file mode 100644 index a82f1f3..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/t7/t7SpJzJpvUTXoHF5NNYygMCBjPrVt8PATwx_VUyB0CM.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=4ef5054ed6eee9f307bc73d0c8eb03c2db60f6bf23718f7a57b256a8f59e5da2:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/tO/tODKGdXsCfYBAFiYnMyAbfRBIgauF0r9_Dievwi1_Tk.cache b/tmp/cache/assets/sprockets/v4.0.0/tO/tODKGdXsCfYBAFiYnMyAbfRBIgauF0r9_Dievwi1_Tk.cache deleted file mode 100644 index 962a17b..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/tO/tODKGdXsCfYBAFiYnMyAbfRBIgauF0r9_Dievwi1_Tk.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/tX/tX5F61w_ciQIUYuguaSvlz2LPSxP_H3Bn8WnLBe997c.cache b/tmp/cache/assets/sprockets/v4.0.0/tX/tX5F61w_ciQIUYuguaSvlz2LPSxP_H3Bn8WnLBe997c.cache deleted file mode 100644 index 2fcdecc..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/tX/tX5F61w_ciQIUYuguaSvlz2LPSxP_H3Bn8WnLBe997c.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/ti/timkf2qCGvMGWeMKw1Ef4f7ndqKT8nO0ikWuWzUHBCo.cache b/tmp/cache/assets/sprockets/v4.0.0/ti/timkf2qCGvMGWeMKw1Ef4f7ndqKT8nO0ikWuWzUHBCo.cache deleted file mode 100644 index da700e7..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/ti/timkf2qCGvMGWeMKw1Ef4f7ndqKT8nO0ikWuWzUHBCo.cache +++ /dev/null @@ -1 +0,0 @@ -"%Fl9 jŒr"tkcEn ]X \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/u7/u7GN39c5o09A_zClftrg65VwDAS7I29JHpveB6eUU1A.cache b/tmp/cache/assets/sprockets/v4.0.0/u7/u7GN39c5o09A_zClftrg65VwDAS7I29JHpveB6eUU1A.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/u7/u7GN39c5o09A_zClftrg65VwDAS7I29JHpveB6eUU1A.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/uE/uEnyun7CKeo78NMd9qMsPkDLhjLoSrsGQAfO_Jv0gSA.cache b/tmp/cache/assets/sprockets/v4.0.0/uE/uEnyun7CKeo78NMd9qMsPkDLhjLoSrsGQAfO_Jv0gSA.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/uE/uEnyun7CKeo78NMd9qMsPkDLhjLoSrsGQAfO_Jv0gSA.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/uT/uTWtfJl8IQPgPfA5xKuk4rijo3OIa8j-amFqoZuSMyo.cache b/tmp/cache/assets/sprockets/v4.0.0/uT/uTWtfJl8IQPgPfA5xKuk4rijo3OIa8j-amFqoZuSMyo.cache deleted file mode 100644 index cdfba22..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/uT/uTWtfJl8IQPgPfA5xKuk4rijo3OIa8j-amFqoZuSMyo.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/uZ/uZxM9buS6KnvNiJOs63hGmt2C4_1l_vhqi3h6hTRLSs.cache b/tmp/cache/assets/sprockets/v4.0.0/uZ/uZxM9buS6KnvNiJOs63hGmt2C4_1l_vhqi3h6hTRLSs.cache deleted file mode 100644 index 76a4eb4..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/uZ/uZxM9buS6KnvNiJOs63hGmt2C4_1l_vhqi3h6hTRLSs.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/ug/ugsP_vhZ6fYSaNqInoWqYNaEsvSmb62bvpN00uCHf2M.cache b/tmp/cache/assets/sprockets/v4.0.0/ug/ugsP_vhZ6fYSaNqInoWqYNaEsvSmb62bvpN00uCHf2M.cache deleted file mode 100644 index 69e66dc..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/ug/ugsP_vhZ6fYSaNqInoWqYNaEsvSmb62bvpN00uCHf2M.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/uq/uq9E1E-fRUN-R7F15qljTXKwrIaiYL4UPyllQOobcLA.cache b/tmp/cache/assets/sprockets/v4.0.0/uq/uq9E1E-fRUN-R7F15qljTXKwrIaiYL4UPyllQOobcLA.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/uq/uq9E1E-fRUN-R7F15qljTXKwrIaiYL4UPyllQOobcLA.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/uw/uwPuryPkGflSAIs4oPtO0Z0bzCzLpCW0JSKdLo8BMIM.cache b/tmp/cache/assets/sprockets/v4.0.0/uw/uwPuryPkGflSAIs4oPtO0Z0bzCzLpCW0JSKdLo8BMIM.cache deleted file mode 100644 index 49fa694..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/uw/uwPuryPkGflSAIs4oPtO0Z0bzCzLpCW0JSKdLo8BMIM.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/uz/uz8qRAcP0W_0c4TLTm4TL2Jqe10zXUBv06LZY9P1KRM.cache b/tmp/cache/assets/sprockets/v4.0.0/uz/uz8qRAcP0W_0c4TLTm4TL2Jqe10zXUBv06LZY9P1KRM.cache deleted file mode 100644 index 7aaf37d..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/uz/uz8qRAcP0W_0c4TLTm4TL2Jqe10zXUBv06LZY9P1KRM.cache +++ /dev/null @@ -1 +0,0 @@ -"%RmvS3.OLڹcƕq=_j \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/vc/vc_YabJ-tQVRSlVVsRo6H2X2vqn9cPPlBiQLYxyF3u4.cache b/tmp/cache/assets/sprockets/v4.0.0/vc/vc_YabJ-tQVRSlVVsRo6H2X2vqn9cPPlBiQLYxyF3u4.cache deleted file mode 100644 index 6aa23a6..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/vc/vc_YabJ-tQVRSlVVsRo6H2X2vqn9cPPlBiQLYxyF3u4.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/vl/vlJ9Y1PCF8VwJAn7KMNwXQ8_ObcAfk8DMA6KTOONlTY.cache b/tmp/cache/assets/sprockets/v4.0.0/vl/vlJ9Y1PCF8VwJAn7KMNwXQ8_ObcAfk8DMA6KTOONlTY.cache deleted file mode 100644 index 06293ce..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/vl/vlJ9Y1PCF8VwJAn7KMNwXQ8_ObcAfk8DMA6KTOONlTY.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/config/manifest.js?type=application/javascript&id=d5f57743864e87afefdc059d43ef3c57375c039e3f560bc8357dcc723416ca39:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/vr/vrikweKAt1_8o3rGXnIwFvPqI_uTVtG3mUCMuMHGUFU.cache b/tmp/cache/assets/sprockets/v4.0.0/vr/vrikweKAt1_8o3rGXnIwFvPqI_uTVtG3mUCMuMHGUFU.cache deleted file mode 100644 index 4f3ecb6..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/vr/vrikweKAt1_8o3rGXnIwFvPqI_uTVtG3mUCMuMHGUFU.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/vr/vrpOT1dUCxUJ2DLm332R1j8ZkEfWUcBC_XwXXv3rcms.cache b/tmp/cache/assets/sprockets/v4.0.0/vr/vrpOT1dUCxUJ2DLm332R1j8ZkEfWUcBC_XwXXv3rcms.cache deleted file mode 100644 index c24d0ad..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/vr/vrpOT1dUCxUJ2DLm332R1j8ZkEfWUcBC_XwXXv3rcms.cache +++ /dev/null @@ -1 +0,0 @@ -"% yT?w2~processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/wE/wEdgTM5bHZtqOqGuy65ISQXSd-qp8Xkm0qzLZczrkUg.cache b/tmp/cache/assets/sprockets/v4.0.0/wE/wEdgTM5bHZtqOqGuy65ISQXSd-qp8Xkm0qzLZczrkUg.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/wE/wEdgTM5bHZtqOqGuy65ISQXSd-qp8Xkm0qzLZczrkUg.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/wG/wGXWKSm0O5Ufxin010PTx7bwQm1K0Nv6AKqMRKzfckE.cache b/tmp/cache/assets/sprockets/v4.0.0/wG/wGXWKSm0O5Ufxin010PTx7bwQm1K0Nv6AKqMRKzfckE.cache deleted file mode 100644 index adb466b..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/wG/wGXWKSm0O5Ufxin010PTx7bwQm1K0Nv6AKqMRKzfckE.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=242deb2927561ca66e0c4d585683681234e4eb81a5a2f7f4bb9f9d000f31ab3a:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/wL/wLIlgylydL5A7jLmidcPZAcmHE-p2z5h0leUITTezJM.cache b/tmp/cache/assets/sprockets/v4.0.0/wL/wLIlgylydL5A7jLmidcPZAcmHE-p2z5h0leUITTezJM.cache deleted file mode 100644 index fdfe75f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/wL/wLIlgylydL5A7jLmidcPZAcmHE-p2z5h0leUITTezJM.cache +++ /dev/null @@ -1 +0,0 @@ -"%X꠹3Q4>dACPb 3 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/wL/wLPiXpaSi3bfo3sUae5fnay-P67t4DIV3CqTWLHdTS4.cache b/tmp/cache/assets/sprockets/v4.0.0/wL/wLPiXpaSi3bfo3sUae5fnay-P67t4DIV3CqTWLHdTS4.cache deleted file mode 100644 index 067cfd7..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/wL/wLPiXpaSi3bfo3sUae5fnay-P67t4DIV3CqTWLHdTS4.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/wi/wiBHMJR13Ns4TsIbGP0YuxuFUoBGpT0KGsegwaw0RZY.cache b/tmp/cache/assets/sprockets/v4.0.0/wi/wiBHMJR13Ns4TsIbGP0YuxuFUoBGpT0KGsegwaw0RZY.cache deleted file mode 100644 index f912732..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/wi/wiBHMJR13Ns4TsIbGP0YuxuFUoBGpT0KGsegwaw0RZY.cache +++ /dev/null @@ -1 +0,0 @@ -"%S]}3)>gjF6W#,F[Df8 \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/wp/wpg8yGYKjnwhx3cP0YYlRjzyWk53jY7IAHMKZ3kuK_o.cache b/tmp/cache/assets/sprockets/v4.0.0/wp/wpg8yGYKjnwhx3cP0YYlRjzyWk53jY7IAHMKZ3kuK_o.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/wp/wpg8yGYKjnwhx3cP0YYlRjzyWk53jY7IAHMKZ3kuK_o.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/xC/xCbQLw9cSmjy9xTqaDLOS5PlBOFUHLeaXALIBd0P3iI.cache b/tmp/cache/assets/sprockets/v4.0.0/xC/xCbQLw9cSmjy9xTqaDLOS5PlBOFUHLeaXALIBd0P3iI.cache deleted file mode 100644 index 4cbf1a8..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/xC/xCbQLw9cSmjy9xTqaDLOS5PlBOFUHLeaXALIBd0P3iI.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=6bc2132fbeebdf994d235c58c85d6c2270755205a039ff1e46c3764ac050b3cc:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/xG/xGWWZ_JS76v5vVZ1r7XVzPDX9BoKEBXaWDst0spkbt4.cache b/tmp/cache/assets/sprockets/v4.0.0/xG/xGWWZ_JS76v5vVZ1r7XVzPDX9BoKEBXaWDst0spkbt4.cache deleted file mode 100644 index f769f19..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/xG/xGWWZ_JS76v5vVZ1r7XVzPDX9BoKEBXaWDst0spkbt4.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/xH/xHdqsnpXZxFrjWqXyOH0qDurd_HR5rConIWi0RGiw0Y.cache b/tmp/cache/assets/sprockets/v4.0.0/xH/xHdqsnpXZxFrjWqXyOH0qDurd_HR5rConIWi0RGiw0Y.cache deleted file mode 100644 index d094471..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/xH/xHdqsnpXZxFrjWqXyOH0qDurd_HR5rConIWi0RGiw0Y.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=208b20813be0c946a5494705492b9a0bb666cb336d57f6afd87804ecbf2266f6:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/xO/xOig6dJ6mc_DYBbuD3IPDyOhW1ThFfvJIpO9XNTBlJU.cache b/tmp/cache/assets/sprockets/v4.0.0/xO/xOig6dJ6mc_DYBbuD3IPDyOhW1ThFfvJIpO9XNTBlJU.cache deleted file mode 100644 index 3c3e47f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/xO/xOig6dJ6mc_DYBbuD3IPDyOhW1ThFfvJIpO9XNTBlJU.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=0b8c4f69c53c735b8e716568b4f50d097981c55b722ce18213b6c29a9f184ea8:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/xQ/xQS6ymE1mOv5teTkJl4f8bG9uyk-TkPbXC7RJDeoRbY.cache b/tmp/cache/assets/sprockets/v4.0.0/xQ/xQS6ymE1mOv5teTkJl4f8bG9uyk-TkPbXC7RJDeoRbY.cache deleted file mode 100644 index 6ef8ff8..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/xQ/xQS6ymE1mOv5teTkJl4f8bG9uyk-TkPbXC7RJDeoRbY.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/y2/y2Yi7aQZhsmMtJpTYwHTfwdz5wXnWhVbNvv9EX6byQI.cache b/tmp/cache/assets/sprockets/v4.0.0/y2/y2Yi7aQZhsmMtJpTYwHTfwdz5wXnWhVbNvv9EX6byQI.cache deleted file mode 100644 index 276be61..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/y2/y2Yi7aQZhsmMtJpTYwHTfwdz5wXnWhVbNvv9EX6byQI.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/yI/yIjvsSF-CzU4IOH9YvcfPDcuGKYrdrNmkBHphDDskj4.cache b/tmp/cache/assets/sprockets/v4.0.0/yI/yIjvsSF-CzU4IOH9YvcfPDcuGKYrdrNmkBHphDDskj4.cache deleted file mode 100644 index d2edc0b..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/yI/yIjvsSF-CzU4IOH9YvcfPDcuGKYrdrNmkBHphDDskj4.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=b8f7dcaf80a950402c903f9ffd6cb3e725bb365fe9ecf62cec0b379b50df808f:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/yP/yPTdG0y3gFYAbQ02Nq4phLxsFRPcNRgRqBF4-8umlnY.cache b/tmp/cache/assets/sprockets/v4.0.0/yP/yPTdG0y3gFYAbQ02Nq4phLxsFRPcNRgRqBF4-8umlnY.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/yP/yPTdG0y3gFYAbQ02Nq4phLxsFRPcNRgRqBF4-8umlnY.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/yc/ycgvqliFqBbvWowjPFIZeVEkdqgxVSg8eKZE8SOem5Q.cache b/tmp/cache/assets/sprockets/v4.0.0/yc/ycgvqliFqBbvWowjPFIZeVEkdqgxVSg8eKZE8SOem5Q.cache deleted file mode 100644 index cd5f075..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/yc/ycgvqliFqBbvWowjPFIZeVEkdqgxVSg8eKZE8SOem5Q.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&pipeline=self&id=83aba805cf6c457fe867825d0cc6bfec1b72d6f9058705e550d63a5031f73b08:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/ye/yeHMpbHBzOGLPECY1slcr1D4L1S8hq4faPdelqTRFVk.cache b/tmp/cache/assets/sprockets/v4.0.0/ye/yeHMpbHBzOGLPECY1slcr1D4L1S8hq4faPdelqTRFVk.cache deleted file mode 100644 index 3a0c58c..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/ye/yeHMpbHBzOGLPECY1slcr1D4L1S8hq4faPdelqTRFVk.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/yq/yqwa8h-HvJYSF9jr-FLkhEc4mQJMqGn0uVPOEimyzNo.cache b/tmp/cache/assets/sprockets/v4.0.0/yq/yqwa8h-HvJYSF9jr-FLkhEc4mQJMqGn0uVPOEimyzNo.cache deleted file mode 100644 index 08ad972..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/yq/yqwa8h-HvJYSF9jr-FLkhEc4mQJMqGn0uVPOEimyzNo.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/yx/yxrohr0KB8UYPo3CiXnXwEK2wlX8LCiO3grSDV0bKRQ.cache b/tmp/cache/assets/sprockets/v4.0.0/yx/yxrohr0KB8UYPo3CiXnXwEK2wlX8LCiO3grSDV0bKRQ.cache deleted file mode 100644 index e07c460..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/yx/yxrohr0KB8UYPo3CiXnXwEK2wlX8LCiO3grSDV0bKRQ.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash} I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTF \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/z-/z--6KWL5-4rvbEVSzvC9dq8XcMVTBnrTSwIcw2hQ8tA.cache b/tmp/cache/assets/sprockets/v4.0.0/z-/z--6KWL5-4rvbEVSzvC9dq8XcMVTBnrTSwIcw2hQ8tA.cache deleted file mode 100644 index d1219a6..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/z-/z--6KWL5-4rvbEVSzvC9dq8XcMVTBnrTSwIcw2hQ8tA.cache +++ /dev/null @@ -1 +0,0 @@ -I"/home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css?type=text/css&id=613067090a7c564beb3ed745c95c3e132c1727fe857482257e81412186d516d5:ET \ No newline at end of file diff --git a/tmp/cache/assets/sprockets/v4.0.0/zh/zhDHWVhLTaqiFLiooeW8uQEXWNUWLvRDBMCp17XbtkQ.cache b/tmp/cache/assets/sprockets/v4.0.0/zh/zhDHWVhLTaqiFLiooeW8uQEXWNUWLvRDBMCp17XbtkQ.cache deleted file mode 100644 index b723943..0000000 Binary files a/tmp/cache/assets/sprockets/v4.0.0/zh/zhDHWVhLTaqiFLiooeW8uQEXWNUWLvRDBMCp17XbtkQ.cache and /dev/null differ diff --git a/tmp/cache/assets/sprockets/v4.0.0/zu/zuW44j-lC5f9gzcilqkaeuMnvIQrBP3WEhGa7QuD210.cache b/tmp/cache/assets/sprockets/v4.0.0/zu/zuW44j-lC5f9gzcilqkaeuMnvIQrBP3WEhGa7QuD210.cache deleted file mode 100644 index ffca06f..0000000 --- a/tmp/cache/assets/sprockets/v4.0.0/zu/zuW44j-lC5f9gzcilqkaeuMnvIQrBP3WEhGa7QuD210.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash} -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"sfile-digest:///home/benkis/Desktop/microverse/module%205/week1/Blog-App/app/assets/stylesheets/application.css;TTF \ No newline at end of file diff --git a/tmp/cache/bootsnap/compile-cache-iseq/01/e1021eb055ec38 b/tmp/cache/bootsnap/compile-cache-iseq/01/e1021eb055ec38 index 74b46fc..1259885 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/01/e1021eb055ec38 and b/tmp/cache/bootsnap/compile-cache-iseq/01/e1021eb055ec38 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/02/217dc080755c20 b/tmp/cache/bootsnap/compile-cache-iseq/02/217dc080755c20 deleted file mode 100644 index 2264d30..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/02/217dc080755c20 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/04/e06fbfaf8f2323 b/tmp/cache/bootsnap/compile-cache-iseq/04/e06fbfaf8f2323 deleted file mode 100644 index e8ad18e..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/04/e06fbfaf8f2323 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/06/5d5cc5d8f945ef b/tmp/cache/bootsnap/compile-cache-iseq/06/5d5cc5d8f945ef index 318bf74..e02139d 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/06/5d5cc5d8f945ef and b/tmp/cache/bootsnap/compile-cache-iseq/06/5d5cc5d8f945ef differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/07/e25534230590d1 b/tmp/cache/bootsnap/compile-cache-iseq/07/e25534230590d1 deleted file mode 100644 index 5aa9a70..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/07/e25534230590d1 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/08/3dd2dc365396cb b/tmp/cache/bootsnap/compile-cache-iseq/08/3dd2dc365396cb deleted file mode 100644 index 2fc0df1..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/08/3dd2dc365396cb and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/09/3bd8ace9c74fa0 b/tmp/cache/bootsnap/compile-cache-iseq/09/3bd8ace9c74fa0 deleted file mode 100644 index 3e8d6d3..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/09/3bd8ace9c74fa0 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/09/8cfdb33b780507 b/tmp/cache/bootsnap/compile-cache-iseq/09/8cfdb33b780507 deleted file mode 100644 index 76edf02..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/09/8cfdb33b780507 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/0b/0e0bc3ea7b0209 b/tmp/cache/bootsnap/compile-cache-iseq/0b/0e0bc3ea7b0209 deleted file mode 100644 index a103725..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/0b/0e0bc3ea7b0209 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/0b/34bb33ca26fbf6 b/tmp/cache/bootsnap/compile-cache-iseq/0b/34bb33ca26fbf6 deleted file mode 100644 index c9b15c9..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/0b/34bb33ca26fbf6 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/0b/e5efc76b31f089 b/tmp/cache/bootsnap/compile-cache-iseq/0b/e5efc76b31f089 deleted file mode 100644 index 9338c34..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/0b/e5efc76b31f089 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/12/d272e08e5ac63b b/tmp/cache/bootsnap/compile-cache-iseq/12/d272e08e5ac63b deleted file mode 100644 index 7d1045d..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/12/d272e08e5ac63b and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/13/d23fa4c08e8e3e b/tmp/cache/bootsnap/compile-cache-iseq/13/d23fa4c08e8e3e deleted file mode 100644 index e72a6a1..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/13/d23fa4c08e8e3e and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/13/dfa73efb99883a b/tmp/cache/bootsnap/compile-cache-iseq/13/dfa73efb99883a deleted file mode 100644 index f313a67..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/13/dfa73efb99883a and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/14/0827d6c77ddb92 b/tmp/cache/bootsnap/compile-cache-iseq/14/0827d6c77ddb92 deleted file mode 100644 index d12fa39..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/14/0827d6c77ddb92 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/1b/041c2908189f3e b/tmp/cache/bootsnap/compile-cache-iseq/1b/041c2908189f3e deleted file mode 100644 index c1d7839..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/1b/041c2908189f3e and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/1f/4f029c13661964 b/tmp/cache/bootsnap/compile-cache-iseq/1f/4f029c13661964 deleted file mode 100644 index d82d05a..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/1f/4f029c13661964 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/1f/6f260e6a0b8b76 b/tmp/cache/bootsnap/compile-cache-iseq/1f/6f260e6a0b8b76 index 31fe772..db2e3f2 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/1f/6f260e6a0b8b76 and b/tmp/cache/bootsnap/compile-cache-iseq/1f/6f260e6a0b8b76 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/23/e1a5be6b10604e b/tmp/cache/bootsnap/compile-cache-iseq/23/e1a5be6b10604e deleted file mode 100644 index aa16618..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/23/e1a5be6b10604e and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/25/6aecd77a701cea b/tmp/cache/bootsnap/compile-cache-iseq/25/6aecd77a701cea deleted file mode 100644 index 90b277a..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/25/6aecd77a701cea and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/27/11a4e02e4985e4 b/tmp/cache/bootsnap/compile-cache-iseq/27/11a4e02e4985e4 deleted file mode 100644 index ae91c6c..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/27/11a4e02e4985e4 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/28/6ab610ff20d28e b/tmp/cache/bootsnap/compile-cache-iseq/28/6ab610ff20d28e deleted file mode 100644 index 93f39db..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/28/6ab610ff20d28e and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/29/61c7756d92680c b/tmp/cache/bootsnap/compile-cache-iseq/29/61c7756d92680c deleted file mode 100644 index 06f9838..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/29/61c7756d92680c and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/2e/0a1e3317399d24 b/tmp/cache/bootsnap/compile-cache-iseq/2e/0a1e3317399d24 deleted file mode 100644 index 73a4188..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/2e/0a1e3317399d24 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/2e/882cc914fa117d b/tmp/cache/bootsnap/compile-cache-iseq/2e/882cc914fa117d deleted file mode 100644 index 6dfb3d1..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/2e/882cc914fa117d and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/2f/38dbd6799fc7cb b/tmp/cache/bootsnap/compile-cache-iseq/2f/38dbd6799fc7cb deleted file mode 100644 index aa3fbb1..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/2f/38dbd6799fc7cb and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/31/215e5fc412ef26 b/tmp/cache/bootsnap/compile-cache-iseq/31/215e5fc412ef26 deleted file mode 100644 index 9554a4b..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/31/215e5fc412ef26 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/32/309cac2ca7e28c b/tmp/cache/bootsnap/compile-cache-iseq/32/309cac2ca7e28c deleted file mode 100644 index 6271dac..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/32/309cac2ca7e28c and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/32/fe51b171382034 b/tmp/cache/bootsnap/compile-cache-iseq/32/fe51b171382034 deleted file mode 100644 index 28a9e4f..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/32/fe51b171382034 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/33/bba434768e516a b/tmp/cache/bootsnap/compile-cache-iseq/33/bba434768e516a deleted file mode 100644 index e9f2626..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/33/bba434768e516a and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/34/ed6d65e47c0f5b b/tmp/cache/bootsnap/compile-cache-iseq/34/ed6d65e47c0f5b deleted file mode 100644 index 1670113..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/34/ed6d65e47c0f5b and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/36/d902f6d2ccfdb5 b/tmp/cache/bootsnap/compile-cache-iseq/36/d902f6d2ccfdb5 deleted file mode 100644 index 0d6bb47..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/36/d902f6d2ccfdb5 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/37/6ac48dac5ef16a b/tmp/cache/bootsnap/compile-cache-iseq/37/6ac48dac5ef16a deleted file mode 100644 index e267e62..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/37/6ac48dac5ef16a and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/38/4088d6e6fb0540 b/tmp/cache/bootsnap/compile-cache-iseq/38/4088d6e6fb0540 index 037b336..706bc64 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/38/4088d6e6fb0540 and b/tmp/cache/bootsnap/compile-cache-iseq/38/4088d6e6fb0540 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/3a/cbc77672cca886 b/tmp/cache/bootsnap/compile-cache-iseq/3a/cbc77672cca886 deleted file mode 100644 index 0ac3fcb..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/3a/cbc77672cca886 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/3b/01335864002544 b/tmp/cache/bootsnap/compile-cache-iseq/3b/01335864002544 index f5d4bc2..ab42146 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/3b/01335864002544 and b/tmp/cache/bootsnap/compile-cache-iseq/3b/01335864002544 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/3d/318f97a2efb7ba b/tmp/cache/bootsnap/compile-cache-iseq/3d/318f97a2efb7ba deleted file mode 100644 index 588bfb9..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/3d/318f97a2efb7ba and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/3e/cda7acc495cbce b/tmp/cache/bootsnap/compile-cache-iseq/3e/cda7acc495cbce deleted file mode 100644 index 13fa72c..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/3e/cda7acc495cbce and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/3e/e0062760423a1b b/tmp/cache/bootsnap/compile-cache-iseq/3e/e0062760423a1b deleted file mode 100644 index bc7f518..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/3e/e0062760423a1b and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/40/2be03f977978f0 b/tmp/cache/bootsnap/compile-cache-iseq/40/2be03f977978f0 deleted file mode 100644 index fb0a688..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/40/2be03f977978f0 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/42/06044048f3bb22 b/tmp/cache/bootsnap/compile-cache-iseq/42/06044048f3bb22 deleted file mode 100644 index 0516b14..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/42/06044048f3bb22 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/46/2fb9bdff1ea1c3 b/tmp/cache/bootsnap/compile-cache-iseq/46/2fb9bdff1ea1c3 deleted file mode 100644 index ef1abc2..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/46/2fb9bdff1ea1c3 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/47/e1430f43bea381 b/tmp/cache/bootsnap/compile-cache-iseq/47/e1430f43bea381 index 2871e81..fb2fa86 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/47/e1430f43bea381 and b/tmp/cache/bootsnap/compile-cache-iseq/47/e1430f43bea381 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/4d/15369fbbb4a4b9 b/tmp/cache/bootsnap/compile-cache-iseq/4d/15369fbbb4a4b9 index 08ad6a3..d14722a 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/4d/15369fbbb4a4b9 and b/tmp/cache/bootsnap/compile-cache-iseq/4d/15369fbbb4a4b9 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/4f/d5486fa448b8ae b/tmp/cache/bootsnap/compile-cache-iseq/4f/d5486fa448b8ae deleted file mode 100644 index 2da7aad..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/4f/d5486fa448b8ae and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/51/710d86786f2659 b/tmp/cache/bootsnap/compile-cache-iseq/51/710d86786f2659 index 02239a4..c1cd739 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/51/710d86786f2659 and b/tmp/cache/bootsnap/compile-cache-iseq/51/710d86786f2659 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/52/2b59378b0e55e3 b/tmp/cache/bootsnap/compile-cache-iseq/52/2b59378b0e55e3 deleted file mode 100644 index f5fbf38..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/52/2b59378b0e55e3 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/52/b0907af290cb9b b/tmp/cache/bootsnap/compile-cache-iseq/52/b0907af290cb9b deleted file mode 100644 index ca9e6a0..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/52/b0907af290cb9b and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/52/e2961f59a244f4 b/tmp/cache/bootsnap/compile-cache-iseq/52/e2961f59a244f4 index a171041..d54c8d6 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/52/e2961f59a244f4 and b/tmp/cache/bootsnap/compile-cache-iseq/52/e2961f59a244f4 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/53/49b3712b42da5f b/tmp/cache/bootsnap/compile-cache-iseq/53/49b3712b42da5f index e0a3987..b23f502 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/53/49b3712b42da5f and b/tmp/cache/bootsnap/compile-cache-iseq/53/49b3712b42da5f differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/5a/542e6817e53fec b/tmp/cache/bootsnap/compile-cache-iseq/5a/542e6817e53fec deleted file mode 100644 index af3f82d..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/5a/542e6817e53fec and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/5e/fbb59cf0bfb493 b/tmp/cache/bootsnap/compile-cache-iseq/5e/fbb59cf0bfb493 index a708838..0ac7378 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/5e/fbb59cf0bfb493 and b/tmp/cache/bootsnap/compile-cache-iseq/5e/fbb59cf0bfb493 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/60/b32fb46e28492f b/tmp/cache/bootsnap/compile-cache-iseq/60/b32fb46e28492f index eb6ecbb..f66b6f0 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/60/b32fb46e28492f and b/tmp/cache/bootsnap/compile-cache-iseq/60/b32fb46e28492f differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/60/e3082f07d7bccc b/tmp/cache/bootsnap/compile-cache-iseq/60/e3082f07d7bccc deleted file mode 100644 index c2d991c..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/60/e3082f07d7bccc and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/61/20aa1a10de7fc2 b/tmp/cache/bootsnap/compile-cache-iseq/61/20aa1a10de7fc2 deleted file mode 100644 index d2aae26..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/61/20aa1a10de7fc2 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/62/d22b965bd9f442 b/tmp/cache/bootsnap/compile-cache-iseq/62/d22b965bd9f442 deleted file mode 100644 index 5d45530..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/62/d22b965bd9f442 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/66/dfc06d616e983f b/tmp/cache/bootsnap/compile-cache-iseq/66/dfc06d616e983f deleted file mode 100644 index 23d29e8..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/66/dfc06d616e983f and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/68/936c41f7282bd8 b/tmp/cache/bootsnap/compile-cache-iseq/68/936c41f7282bd8 index 9f6c6cc..c0383ff 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/68/936c41f7282bd8 and b/tmp/cache/bootsnap/compile-cache-iseq/68/936c41f7282bd8 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/69/1f94d62d8fbe11 b/tmp/cache/bootsnap/compile-cache-iseq/69/1f94d62d8fbe11 deleted file mode 100644 index da73ce8..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/69/1f94d62d8fbe11 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/6b/974ac394fcc278 b/tmp/cache/bootsnap/compile-cache-iseq/6b/974ac394fcc278 deleted file mode 100644 index ab47152..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/6b/974ac394fcc278 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/6c/5f96848c2fe22d b/tmp/cache/bootsnap/compile-cache-iseq/6c/5f96848c2fe22d deleted file mode 100644 index 1fb3f71..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/6c/5f96848c2fe22d and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/6c/b592162c84217b b/tmp/cache/bootsnap/compile-cache-iseq/6c/b592162c84217b deleted file mode 100644 index 914d4ac..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/6c/b592162c84217b and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/6d/af64baad462d16 b/tmp/cache/bootsnap/compile-cache-iseq/6d/af64baad462d16 deleted file mode 100644 index 3bb3a39..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/6d/af64baad462d16 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/6d/b24e3f9ff6bbfa b/tmp/cache/bootsnap/compile-cache-iseq/6d/b24e3f9ff6bbfa deleted file mode 100644 index 5d8b3a6..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/6d/b24e3f9ff6bbfa and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/6e/88588873864fd4 b/tmp/cache/bootsnap/compile-cache-iseq/6e/88588873864fd4 index f522b1f..246021d 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/6e/88588873864fd4 and b/tmp/cache/bootsnap/compile-cache-iseq/6e/88588873864fd4 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/72/6ef7db4e7fced8 b/tmp/cache/bootsnap/compile-cache-iseq/72/6ef7db4e7fced8 deleted file mode 100644 index 11306d9..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/72/6ef7db4e7fced8 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/72/da25845d5d8074 b/tmp/cache/bootsnap/compile-cache-iseq/72/da25845d5d8074 deleted file mode 100644 index 8c7b356..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/72/da25845d5d8074 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/75/ef8cce5c4d51ba b/tmp/cache/bootsnap/compile-cache-iseq/75/ef8cce5c4d51ba index 16b8720..25174fd 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/75/ef8cce5c4d51ba and b/tmp/cache/bootsnap/compile-cache-iseq/75/ef8cce5c4d51ba differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/77/48dba8765daab1 b/tmp/cache/bootsnap/compile-cache-iseq/77/48dba8765daab1 deleted file mode 100644 index cecf43f..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/77/48dba8765daab1 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/78/56d3c52d782348 b/tmp/cache/bootsnap/compile-cache-iseq/78/56d3c52d782348 deleted file mode 100644 index ebf7f97..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/78/56d3c52d782348 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/79/e5d1e80be158ac b/tmp/cache/bootsnap/compile-cache-iseq/79/e5d1e80be158ac deleted file mode 100644 index b4e6150..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/79/e5d1e80be158ac and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/7f/5121c21f48f3c6 b/tmp/cache/bootsnap/compile-cache-iseq/7f/5121c21f48f3c6 index 9e3d5d6..7fb7cc9 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/7f/5121c21f48f3c6 and b/tmp/cache/bootsnap/compile-cache-iseq/7f/5121c21f48f3c6 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/81/1f9eda37a2ab22 b/tmp/cache/bootsnap/compile-cache-iseq/81/1f9eda37a2ab22 index 627044b..726aa9d 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/81/1f9eda37a2ab22 and b/tmp/cache/bootsnap/compile-cache-iseq/81/1f9eda37a2ab22 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/82/a4bdfb0d141995 b/tmp/cache/bootsnap/compile-cache-iseq/82/a4bdfb0d141995 deleted file mode 100644 index 734efa2..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/82/a4bdfb0d141995 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/86/1f0f335279fb0d b/tmp/cache/bootsnap/compile-cache-iseq/86/1f0f335279fb0d deleted file mode 100644 index 72e7a1a..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/86/1f0f335279fb0d and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/89/51b2da4b1e7308 b/tmp/cache/bootsnap/compile-cache-iseq/89/51b2da4b1e7308 deleted file mode 100644 index 246bf9b..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/89/51b2da4b1e7308 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/8b/14942973abbe1f b/tmp/cache/bootsnap/compile-cache-iseq/8b/14942973abbe1f deleted file mode 100644 index 84d4fc4..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/8b/14942973abbe1f and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/8d/a74699caf8feb6 b/tmp/cache/bootsnap/compile-cache-iseq/8d/a74699caf8feb6 deleted file mode 100644 index df552c0..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/8d/a74699caf8feb6 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/91/4248f498e10925 b/tmp/cache/bootsnap/compile-cache-iseq/91/4248f498e10925 deleted file mode 100644 index 097c918..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/91/4248f498e10925 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/95/19e1a0b3266819 b/tmp/cache/bootsnap/compile-cache-iseq/95/19e1a0b3266819 deleted file mode 100644 index a227950..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/95/19e1a0b3266819 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/97/5b2f1748bf24c4 b/tmp/cache/bootsnap/compile-cache-iseq/97/5b2f1748bf24c4 index 76f06f6..7ddd279 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/97/5b2f1748bf24c4 and b/tmp/cache/bootsnap/compile-cache-iseq/97/5b2f1748bf24c4 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/97/8dd46dfd02ee44 b/tmp/cache/bootsnap/compile-cache-iseq/97/8dd46dfd02ee44 index 4f045f5..b6443b1 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/97/8dd46dfd02ee44 and b/tmp/cache/bootsnap/compile-cache-iseq/97/8dd46dfd02ee44 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/97/c0ba405befc339 b/tmp/cache/bootsnap/compile-cache-iseq/97/c0ba405befc339 index 1bf990f..2fd981d 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/97/c0ba405befc339 and b/tmp/cache/bootsnap/compile-cache-iseq/97/c0ba405befc339 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/9b/f37b64c31f79af b/tmp/cache/bootsnap/compile-cache-iseq/9b/f37b64c31f79af deleted file mode 100644 index 3875675..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/9b/f37b64c31f79af and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/9c/cb2d04a6294dfe b/tmp/cache/bootsnap/compile-cache-iseq/9c/cb2d04a6294dfe deleted file mode 100644 index 98f8384..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/9c/cb2d04a6294dfe and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/9c/f171ad23c16c8b b/tmp/cache/bootsnap/compile-cache-iseq/9c/f171ad23c16c8b deleted file mode 100644 index cbb2562..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/9c/f171ad23c16c8b and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/9d/04b34b3b81d291 b/tmp/cache/bootsnap/compile-cache-iseq/9d/04b34b3b81d291 deleted file mode 100644 index 58798f5..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/9d/04b34b3b81d291 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/a0/d73657f9b2fbfe b/tmp/cache/bootsnap/compile-cache-iseq/a0/d73657f9b2fbfe deleted file mode 100644 index 86261c9..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/a0/d73657f9b2fbfe and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/a2/83691c0cb4ddf5 b/tmp/cache/bootsnap/compile-cache-iseq/a2/83691c0cb4ddf5 deleted file mode 100644 index fb328d6..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/a2/83691c0cb4ddf5 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/a3/fc3da5c28acaef b/tmp/cache/bootsnap/compile-cache-iseq/a3/fc3da5c28acaef deleted file mode 100644 index 46b35fd..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/a3/fc3da5c28acaef and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/a7/019c1ca556bf08 b/tmp/cache/bootsnap/compile-cache-iseq/a7/019c1ca556bf08 deleted file mode 100644 index bf57cd5..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/a7/019c1ca556bf08 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/a7/316af81607295f b/tmp/cache/bootsnap/compile-cache-iseq/a7/316af81607295f deleted file mode 100644 index 76482fa..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/a7/316af81607295f and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/a7/4a414c64739fc8 b/tmp/cache/bootsnap/compile-cache-iseq/a7/4a414c64739fc8 index 0fec6b5..94790bf 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/a7/4a414c64739fc8 and b/tmp/cache/bootsnap/compile-cache-iseq/a7/4a414c64739fc8 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/a7/892f88c7b5cb2a b/tmp/cache/bootsnap/compile-cache-iseq/a7/892f88c7b5cb2a index e3bf409..0606d2a 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/a7/892f88c7b5cb2a and b/tmp/cache/bootsnap/compile-cache-iseq/a7/892f88c7b5cb2a differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/a8/c06f93179f2f02 b/tmp/cache/bootsnap/compile-cache-iseq/a8/c06f93179f2f02 index ed392a3..a49b8bc 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/a8/c06f93179f2f02 and b/tmp/cache/bootsnap/compile-cache-iseq/a8/c06f93179f2f02 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/af/403f14dd5e5ccf b/tmp/cache/bootsnap/compile-cache-iseq/af/403f14dd5e5ccf index d8a3dde..1525cba 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/af/403f14dd5e5ccf and b/tmp/cache/bootsnap/compile-cache-iseq/af/403f14dd5e5ccf differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/b2/8dbeca9b2c432b b/tmp/cache/bootsnap/compile-cache-iseq/b2/8dbeca9b2c432b index 24d59e2..d0817b9 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/b2/8dbeca9b2c432b and b/tmp/cache/bootsnap/compile-cache-iseq/b2/8dbeca9b2c432b differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/b2/9b4a9b1bd1e50d b/tmp/cache/bootsnap/compile-cache-iseq/b2/9b4a9b1bd1e50d deleted file mode 100644 index da0c50a..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/b2/9b4a9b1bd1e50d and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/b3/c54894293108b0 b/tmp/cache/bootsnap/compile-cache-iseq/b3/c54894293108b0 index 27c4300..2190eba 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/b3/c54894293108b0 and b/tmp/cache/bootsnap/compile-cache-iseq/b3/c54894293108b0 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/b3/e5ebb6430595ec b/tmp/cache/bootsnap/compile-cache-iseq/b3/e5ebb6430595ec index b97d67b..0ed6251 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/b3/e5ebb6430595ec and b/tmp/cache/bootsnap/compile-cache-iseq/b3/e5ebb6430595ec differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/b4/fdf79eb8ad9dcc b/tmp/cache/bootsnap/compile-cache-iseq/b4/fdf79eb8ad9dcc deleted file mode 100644 index 6a69b97..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/b4/fdf79eb8ad9dcc and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/b8/fd7505d51efae7 b/tmp/cache/bootsnap/compile-cache-iseq/b8/fd7505d51efae7 index b077a71..478e7ae 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/b8/fd7505d51efae7 and b/tmp/cache/bootsnap/compile-cache-iseq/b8/fd7505d51efae7 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/b9/9b28f3c14ffb2b b/tmp/cache/bootsnap/compile-cache-iseq/b9/9b28f3c14ffb2b deleted file mode 100644 index cbf305c..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/b9/9b28f3c14ffb2b and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/be/18ef9f16691bdf b/tmp/cache/bootsnap/compile-cache-iseq/be/18ef9f16691bdf index 3f2e89c..7123579 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/be/18ef9f16691bdf and b/tmp/cache/bootsnap/compile-cache-iseq/be/18ef9f16691bdf differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/be/fff29d8d2ee344 b/tmp/cache/bootsnap/compile-cache-iseq/be/fff29d8d2ee344 index d855d0e..a0b48a4 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/be/fff29d8d2ee344 and b/tmp/cache/bootsnap/compile-cache-iseq/be/fff29d8d2ee344 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/c2/1c19ff43ebf17a b/tmp/cache/bootsnap/compile-cache-iseq/c2/1c19ff43ebf17a index a39183c..b23025f 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/c2/1c19ff43ebf17a and b/tmp/cache/bootsnap/compile-cache-iseq/c2/1c19ff43ebf17a differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/c5/6df9d679bc15bf b/tmp/cache/bootsnap/compile-cache-iseq/c5/6df9d679bc15bf index c876835..5dfe175 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/c5/6df9d679bc15bf and b/tmp/cache/bootsnap/compile-cache-iseq/c5/6df9d679bc15bf differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/c7/84c6cd9b5f5fb9 b/tmp/cache/bootsnap/compile-cache-iseq/c7/84c6cd9b5f5fb9 index 85a3a4c..b1b40cf 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/c7/84c6cd9b5f5fb9 and b/tmp/cache/bootsnap/compile-cache-iseq/c7/84c6cd9b5f5fb9 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/cd/d2999730735819 b/tmp/cache/bootsnap/compile-cache-iseq/cd/d2999730735819 deleted file mode 100644 index ecc94ad..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/cd/d2999730735819 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/d0/76b5bc7c1fda06 b/tmp/cache/bootsnap/compile-cache-iseq/d0/76b5bc7c1fda06 index 615bb2f..664089d 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/d0/76b5bc7c1fda06 and b/tmp/cache/bootsnap/compile-cache-iseq/d0/76b5bc7c1fda06 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/d0/80e3e51f0426cb b/tmp/cache/bootsnap/compile-cache-iseq/d0/80e3e51f0426cb deleted file mode 100644 index 9ef32fd..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/d0/80e3e51f0426cb and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/d5/ca54667a774971 b/tmp/cache/bootsnap/compile-cache-iseq/d5/ca54667a774971 index 8be8914..07a4993 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/d5/ca54667a774971 and b/tmp/cache/bootsnap/compile-cache-iseq/d5/ca54667a774971 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/d9/40f9feba56bee2 b/tmp/cache/bootsnap/compile-cache-iseq/d9/40f9feba56bee2 index 99d350a..6db9d9f 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/d9/40f9feba56bee2 and b/tmp/cache/bootsnap/compile-cache-iseq/d9/40f9feba56bee2 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/da/70f60e20c7f192 b/tmp/cache/bootsnap/compile-cache-iseq/da/70f60e20c7f192 deleted file mode 100644 index 894d10a..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/da/70f60e20c7f192 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/dc/276bea918f9bb9 b/tmp/cache/bootsnap/compile-cache-iseq/dc/276bea918f9bb9 deleted file mode 100644 index 56ecd7a..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/dc/276bea918f9bb9 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/dc/27e1097d651480 b/tmp/cache/bootsnap/compile-cache-iseq/dc/27e1097d651480 deleted file mode 100644 index 69e35fd..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/dc/27e1097d651480 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/e1/9d49fc188f9293 b/tmp/cache/bootsnap/compile-cache-iseq/e1/9d49fc188f9293 index b8383a5..24b3583 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/e1/9d49fc188f9293 and b/tmp/cache/bootsnap/compile-cache-iseq/e1/9d49fc188f9293 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/e6/f4bf1521188129 b/tmp/cache/bootsnap/compile-cache-iseq/e6/f4bf1521188129 index 3d4adcd..1695e6d 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/e6/f4bf1521188129 and b/tmp/cache/bootsnap/compile-cache-iseq/e6/f4bf1521188129 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/e7/398bbab07240bd b/tmp/cache/bootsnap/compile-cache-iseq/e7/398bbab07240bd deleted file mode 100644 index 6b95068..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/e7/398bbab07240bd and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/e7/77049bac544b35 b/tmp/cache/bootsnap/compile-cache-iseq/e7/77049bac544b35 index d849c05..9d1f8e2 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/e7/77049bac544b35 and b/tmp/cache/bootsnap/compile-cache-iseq/e7/77049bac544b35 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/e7/7d58b38f5eda0b b/tmp/cache/bootsnap/compile-cache-iseq/e7/7d58b38f5eda0b deleted file mode 100644 index ec919f9..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/e7/7d58b38f5eda0b and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/e8/2dd782d2c804b2 b/tmp/cache/bootsnap/compile-cache-iseq/e8/2dd782d2c804b2 index 2b7314f..6da7122 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/e8/2dd782d2c804b2 and b/tmp/cache/bootsnap/compile-cache-iseq/e8/2dd782d2c804b2 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/e8/f30948b1f44d6e b/tmp/cache/bootsnap/compile-cache-iseq/e8/f30948b1f44d6e index c7adb60..0e7e727 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/e8/f30948b1f44d6e and b/tmp/cache/bootsnap/compile-cache-iseq/e8/f30948b1f44d6e differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/ea/556aa90721fab2 b/tmp/cache/bootsnap/compile-cache-iseq/ea/556aa90721fab2 deleted file mode 100644 index 5eb80bc..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/ea/556aa90721fab2 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/ea/7f0a631ac52835 b/tmp/cache/bootsnap/compile-cache-iseq/ea/7f0a631ac52835 deleted file mode 100644 index 150b42c..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/ea/7f0a631ac52835 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/ec/88b6232d6ec513 b/tmp/cache/bootsnap/compile-cache-iseq/ec/88b6232d6ec513 index e303139..f1fd57b 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/ec/88b6232d6ec513 and b/tmp/cache/bootsnap/compile-cache-iseq/ec/88b6232d6ec513 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/f4/4b87951c9a3775 b/tmp/cache/bootsnap/compile-cache-iseq/f4/4b87951c9a3775 index 9355fd7..c8b65ce 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/f4/4b87951c9a3775 and b/tmp/cache/bootsnap/compile-cache-iseq/f4/4b87951c9a3775 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/f5/77932c3f45bbed b/tmp/cache/bootsnap/compile-cache-iseq/f5/77932c3f45bbed deleted file mode 100644 index d079393..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/f5/77932c3f45bbed and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/f5/f7cfa7437e2d2a b/tmp/cache/bootsnap/compile-cache-iseq/f5/f7cfa7437e2d2a deleted file mode 100644 index 8a8f195..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/f5/f7cfa7437e2d2a and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/f7/cd1d3c195bc9e5 b/tmp/cache/bootsnap/compile-cache-iseq/f7/cd1d3c195bc9e5 deleted file mode 100644 index 64a8fd6..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/f7/cd1d3c195bc9e5 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/f9/7a3d453c64392e b/tmp/cache/bootsnap/compile-cache-iseq/f9/7a3d453c64392e index b06f71f..0781d42 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/f9/7a3d453c64392e and b/tmp/cache/bootsnap/compile-cache-iseq/f9/7a3d453c64392e differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/fc/4ac9896c9f2920 b/tmp/cache/bootsnap/compile-cache-iseq/fc/4ac9896c9f2920 index 9c96d16..762278f 100644 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/fc/4ac9896c9f2920 and b/tmp/cache/bootsnap/compile-cache-iseq/fc/4ac9896c9f2920 differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/fd/beccc34b831478 b/tmp/cache/bootsnap/compile-cache-iseq/fd/beccc34b831478 deleted file mode 100644 index 1ee4b45..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/fd/beccc34b831478 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/fe/096b0dfd06e03e b/tmp/cache/bootsnap/compile-cache-iseq/fe/096b0dfd06e03e deleted file mode 100644 index be4e4a5..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/fe/096b0dfd06e03e and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/fe/997af007fab396 b/tmp/cache/bootsnap/compile-cache-iseq/fe/997af007fab396 deleted file mode 100644 index 049553b..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/fe/997af007fab396 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/fe/c25fcdc573852c b/tmp/cache/bootsnap/compile-cache-iseq/fe/c25fcdc573852c deleted file mode 100644 index 6239cad..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/fe/c25fcdc573852c and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-iseq/ff/e8be7cec929138 b/tmp/cache/bootsnap/compile-cache-iseq/ff/e8be7cec929138 deleted file mode 100644 index 36bd722..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-iseq/ff/e8be7cec929138 and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-yaml/30/b6922177ce3507 b/tmp/cache/bootsnap/compile-cache-yaml/30/b6922177ce3507 index ee364c7..9977bec 100644 Binary files a/tmp/cache/bootsnap/compile-cache-yaml/30/b6922177ce3507 and b/tmp/cache/bootsnap/compile-cache-yaml/30/b6922177ce3507 differ diff --git a/tmp/cache/bootsnap/compile-cache-yaml/6f/eaccf67ad452eb b/tmp/cache/bootsnap/compile-cache-yaml/6f/eaccf67ad452eb deleted file mode 100644 index aa92e8a..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-yaml/6f/eaccf67ad452eb and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-yaml/77/fb33a8009ce78c b/tmp/cache/bootsnap/compile-cache-yaml/77/fb33a8009ce78c deleted file mode 100644 index 433b950..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-yaml/77/fb33a8009ce78c and /dev/null differ diff --git a/tmp/cache/bootsnap/compile-cache-yaml/b6/22398795de772b b/tmp/cache/bootsnap/compile-cache-yaml/b6/22398795de772b deleted file mode 100644 index 5c0c653..0000000 Binary files a/tmp/cache/bootsnap/compile-cache-yaml/b6/22398795de772b and /dev/null differ diff --git a/tmp/cache/bootsnap/load-path-cache b/tmp/cache/bootsnap/load-path-cache index ba2ad16..7cb3a45 100644 Binary files a/tmp/cache/bootsnap/load-path-cache and b/tmp/cache/bootsnap/load-path-cache differ diff --git a/tmp/pids/server.pid b/tmp/pids/server.pid index 0444a4e..8f4015c 100644 --- a/tmp/pids/server.pid +++ b/tmp/pids/server.pid @@ -1 +1 @@ -41073 \ No newline at end of file +12906 \ No newline at end of file