Blogs
laravel vs Ruby on Rails - Know the 8 Most Amazing Differences
Laravel is a modern web application framework, that design web application easily and rapidly. It can perform the customization of the web application with equal ease. It is an open-source and highly used framework, written in PHP. Since it is ope...
Rails 6.0: Action Mailbox, Action Text, Multiple DBs, Parallel Testing, Webpacker by default, and Zeitwerk
Dealing with incoming email, composing rich-text content, connecting to multiple databases, parallelizing test runs, integrating JavaScript with love, and rewriting the code loader. These are fundamental improvements to the fundamentals of working...
How to painlessly set up your Ruby on Rails dev environment with Docker
You've likely heard about Docker terms like containers, images, services, volumes, network, Dockerfile, docker-compose file, right? Or you've watched some videos about what it is, but you're not sure how can it apply to your daily life as a develo...
A small authorization library, inspired by Pundit, but built for scopes
Moat is a minimalist authorization library for Ruby web applications. It is inspired by Pundit.Moat vs. Pundit: What's the difference?They are similar libraries, with an important distinction: Pundit is centered around authorizing individual resou...
Introducing Konfig: A Kubernetes Friendly Rails Configuration Gem
Konfig is a new open-source project created and maintained by Cloud 66. In a nutshell, Konfig is a Kubernetes friendly Rails configuration gem.What does that mean? While Rails applications typically read YAML files to load their configurations, Ku...
How Does Ruby Garbage Collection Work? A Simple Tutorial
Ruby, like most other modern, high-level programming languages, doesn’t force you to manage memory. This feature is called garbage collection, or GC, and you get it for free in Ruby. You can write tons of Ruby code and never give a second thought ...