Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

272
Views
RuboCop: enforce empty lines surrounding block?

I would like to get RuboCop to enforce a style like this:

# bad

alias_method :pharmacy, :recipient
alias_method :pharmacy=, :recipient=
before_save -> do
  self.label = "Prescription" if label.blank?
end
before_save -> do
  self.recipient ||= appointment.patient.pharmacy
end

# good

alias_method :pharmacy, :recipient
alias_method :pharmacy=, :recipient=

before_save -> do
  self.label = "Prescription" if label.blank?
end

before_save -> do
  self.recipient ||= appointment.patient.pharmacy
end

Is this possible?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Yes, it is possible.
There is a way to extend the Rubocop rule set by using extensions https://docs.rubocop.org/rubocop/extensions.html.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!