Business

Everything you need to know about Rails 8.0 update

The first update of Rails 8 has been released and it brings a whole lot of features and improvements as always. The new version is built on Rails 7.2 providing optimizations for a faster and hassle-free development. Some of the key features of the update includes Authentication, Propshaft, Solid Trifecta, Thruster and Kamal 2. Authentication […]
Read More

Secure Your Rails App with Devise Gem

Authentication is a crucial part of most web applications. Instead of building everything from scratch, Rails developers can use the Devise gem, a powerful and flexible tool for handling user authentication. In this blog post, I’ll walk you through setting up and using Devise in your Rails app. What is Devise? Devise is a gem […]
Read More

Compare “Strings” And :Symbols In Ruby

In this blog we are going to know about A lot of  programming languages don’t have symbols, they only have strings . Other languages use strings as identifiers as well as storing data. In ruby this logic is split into two types, symbols as identifiers and strings are used for working with data. What are […]
Read More

Introduction to some Interesting gems!

Hey Guys, Reading an open source project code improve your coding capabilities. It enhances your technical knowledge and code vocabulary. You may found some new coding design patterns as well. Today I am going to share some interesting gems which I found in that project. I have also created a demo app using some of those […]
Read More

Integrating Vue JS with Ruby on Rails application

Vue is a progressive framework for building user interface. In this article we are going to integrate Vue JS in our Ruby on Rails application. If you noticed, we have passed vue as webpack option. This configuration option is provided by webpacker gem. There are many opther options available. You can find there here If […]
Read More