1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-21 14:19:39 +02:00

Lint files to rubocop omakase standards

root ➜ /workspace (fix-rubocop-issues) $ rubocop
Inspecting 54 files
......................................................

54 files inspected, no offenses detected
This commit is contained in:
Rob Zolkos 2024-02-02 16:06:55 +00:00
parent 9014c8e615
commit 1cc9550c80
10 changed files with 13 additions and 17 deletions

View file

@ -32,10 +32,10 @@ gem "jbuilder"
# Use Redis adapter to run Action Cable in production # Use Redis adapter to run Action Cable in production
gem "redis", ">= 4.0.1" gem "redis", ">= 4.0.1"
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis] # Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
# gem "kredis" # gem "kredis"
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword] # Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
gem "bcrypt", "~> 3.1.7" gem "bcrypt", "~> 3.1.7"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem # Windows does not include zoneinfo files, so bundle the tzinfo-data gem

View file

@ -37,4 +37,3 @@ class PasswordResetsController < ApplicationController
params.require(:user).permit(:password, :password_confirmation) params.require(:user).permit(:password, :password_confirmation)
end end
end end

View file

@ -18,4 +18,3 @@ class PasswordsController < ApplicationController
params.require(:user).permit(:password, :password_confirmation, :password_challenge).with_defaults(password_challenge: "") params.require(:user).permit(:password, :password_confirmation, :password_challenge).with_defaults(password_challenge: "")
end end
end end

View file

@ -27,4 +27,3 @@ class RegistrationsController < ApplicationController
params.require(:user).permit(:name, :email, :password, :password_confirmation) params.require(:user).permit(:name, :email, :password, :password_confirmation)
end end
end end

View file

@ -19,4 +19,3 @@ class SessionsController < ApplicationController
redirect_to root_path, notice: "You have signed out successfully." redirect_to root_path, notice: "You have signed out successfully."
end end
end end

View file

@ -4,7 +4,7 @@ class User < ApplicationRecord
belongs_to :family belongs_to :family
validates :email, presence: true, uniqueness: true validates :email, presence: true, uniqueness: true
normalizes :email, with: -> (email) { email.strip.downcase } normalizes :email, with: ->(email) { email.strip.downcase }
generates_token_for :password_reset, expires_in: 15.minutes do generates_token_for :password_reset, expires_in: 15.minutes do
password_salt&.last(10) password_salt&.last(10)