Monthly Archives: February 2018

Private methods in Ruby

I think the way private methods are defined, is one of Ruby’s few weaknesses. The main problem being that they separate the private methods from the methods that use them. For example, I prefer this: def one   internal_method(1) end … Continue reading

Posted in Ruby | Comments Off on Private methods in Ruby