How Sidekiq really works
Let’s just begin with something that every Rails developer that is using Sidekiq is familiarized with – a simple worker: […]
Ruby on Rails is a mature technology, and probably that’s why many people say that it’s a dead technology. But […]
Demo At the end of the article, we will have fully working simple chat. Creating example application Our application will […]
Given we have the following Person class: class Persondef initialize(age:)@age = ageend def [email protected] > 17endendAnd equally simple test in […]
Gemfile is a well-known file even for not experienced Ruby developers. While for most people, it’s evident that the purpose […]
Ruby on Rails is a mature technology, and probably that’s why many people say that it’s a dead technology. But […]
Brackets versus non-brackets version I usually ask the following question during the technical interview for the Ruby developers: what is […]
Without the modules, you would have to rely on inheritance to organize your code and make it more reusable. Such […]
The way the includes method work in Active Record is one of the most common questions during interviews, yet many […]
Enum is a shortcut for the enumerated type, a data type consisting of a set of values. Rails provides enums […]