Blogs
40 Ruby on Rails Application Monitoring Tools [2020]
This is the ultimate tutorial to Ruby on Rails application monitoring in 2020.In this comprehensive guide I'll cover:Explanation of Ruby on Rails metrics worth monitoringBreakdown of different monitoring departmentsHow to pick the right tool for t...
Static Typing in Ruby with a Side of Sorbet | Heroku
Ruby is a dynamic language, which means that types are checked when the code is run. If you try to call a method on an object that does not exist, the compiler will not complain, you'll only find out about that error when the code is executed and ...
How to Setup Development Environment for Ruby on Rails App using Docker
If you are actively developing an application, using Docker can simplify your workflow and the process of deploying your application to production. Working with containers in development offers the following benefits:Environments are consistent, m...
Why and How to Host your Rails 6 App with AWS ElasticBeanstalk and RDS
When writing an application, one of the major issues you have to think about is how the application will be shared with the rest of the world.One common approach has been to launch on Heroku. It's easy to set up and is fully managed. But, it's als...