Blog
Browse through our blog page filled with updated information and the latest tips to help you achieve your goals.
How to use Ruby on Rails Concerns
A Rails concern is a module that extends the ActiveSupport::Concern module. You can use Сoncerns to...
What is the difference between joins and includes in Rails ActiveRecord?
The main difference is that when using includes the eager loading is used. Eager loading allows you...
Preview UI changes with Ruby on Rails variants
When implementing new design for a live application we usually don’t want our users to see an...
How to get & build full URLs in Rails
There are some cases when you want to get a current request absolute URL. Thankfully, Rails got you...
How to use a Transaction Script(aka Service Objects) in Ruby on Rails. Simple example
The logic of small applications can be present as a series of transactions. Using the Transaction...