Skip to main content

Ruby On Rails

ruby image

Ruby on Rails or also known as rails is a server-side web application development framework that is written in the Ruby programming language, and it is developed by David Heinemeier Hansson under the MIT License. It supports MVC(model-view-controller) architecture that provides a default structure for database, web pages, and web services, it also uses web standards like JSON or XML for transfer data and HTML, CSS, and JavaScript for the user interface.

It emphasizes the use of other well-known software engineering pattern and paradigms like:

  • Don’t Repeat Yourself (DRY) : It is a principle of software development to reducing the repetition of information or codes.
  • Convention Over Configuration (CoC): It provides many opinions for the best way to do many things in a web application.

Why Ruby On Rails ?

  • It allows you to launch a faster web application.

  • Helps us with maintaining and avoiding problems with stuff migration.

  • Ruby on Rail Framework makes our app faster and safer.

  • We can easily update our app with the latest functionality.

  • It uses Metaprogramming techniques to write programs.

Where we have to use Ruby On Rails ?

You can use Ruby on Rails application in various area of web development like in a long term project which needs large transformation, or in the project that has heavy traffic, or to develop a short prototype or MVPs, or in a project that requires wide range of complex functions, etc.

Features of Ruby On Rails :

  • Model-view-controller Architecture : Ruby on Rails used MVC architecture, and it contains three components, i.e., model, view, and controller. Here, the model is used to maintain the relationship between object and database, the view is templates that are used to build the data users for web applications, and the controller is used to merge model and view together. MVC is generally used for developing user interfaces that divide the data into three interconnected components so that it can separate the internal representation of the information from the way it presents to and get from the user.

  • Active Records : The active record framework is introduced in Ruby on Rails. It is a powerful library that allows the developer to design the database interactive queries.

  • Built-in Testing : Ruby on Rails provides its own set of tests that will run on your code. It will save time and effort.

  • Programming Language : This syntax of Ruby on Rails is simple because the syntax of the Ruby programming language is close to English, so it is always easier to structure your thinking and writing it into code.

  • MetaProgramming : Ruby on rails uses the metaprogramming technique to write programs.

  • Convention over configuration : In Ruby on Rails, a programmer can only specify the unconventional aspects of the application.

Apps built using Ruby On Rails :

![ruby application image](https://cdn.sanity.io/images/ay6gmb6r/production/0d1f06925e29643e6faa917a8bca6eadc92cfa31-4800x4800.png?w=729&fm=webp&fit=max&auto=format)
## Advantages of Ruby On Rails :
  • Tooling : Rails provides tooling that helps us to deliver more features in less time.

  • Libraries : There’s a 3rd party module(gem) for just about anything we can think of.

  • Code Quality : Ruby code quality significantly higher than PHP or NodeJS equivalents.

  • Test Automation : The Ruby community is big into and test automation and testing.

  • Large Community : Ruby is large in the community.

Disadvantages of Ruby On Rails :

  • Runtime Speed : The run time speed of Ruby on Rails is slow as compare to Node.Js and Golang.

  • Lack of Flexibility : As we know that Ruby on Rails is ideal for standard web applications due to its hard dependency between components and models. But when it comes to adding unique functionality and customization in apps it is challenging.

  • Boot Speed : The boot speed is also a drawback of ROR. Due to the dependence upon the number of gem dependencies and files, it takes some time to start which can obstruct the developer performance.

  • Documentation: To find good documentation is hard for the less popular gems and for libraries that make heavy use of mixins.

  • Multithreading : Ruby on Rails supports multithreading, but some IO libraries do not support multithreading because they keep hold of the global interpreter lock. So it means if you are not careful enough, your request will get queued up behind the active requests, and you will face performance issues.

  • Active Record : Due to the access use of Active records in the ROR and hard dependency, the domain becomes tightly coupled to your persistence mechanism.

Happy Learning ✌✌