Is Ruby on Rails Still Good for MVPs in 2023?

Is Ruby on Rails Still Good for MVPs in 2023?

Building a minimum viable product is all about keeping things simple. The early product development process is riddled with trial and error, and overengineering at the MVP stage can leave startups strapped for cash when they’re forced to return to the drawing board. So, it’s important to choose a backend framework that’s optimized for MVP development. For us, the choice has always been clear: Ruby on Rails. But is Ruby on Rails still relevant in 2023? With so much competition, is it truly one of the best options for MVP development? That’s what we’ll discuss here.

What is a minimum viable product?

A minimum viable product, or MVP, is the most basic version of your product that can be launched to test the market and gather feedback. It has just enough features to satisfy early adopters and validate the product idea.

The MVP concept is central to the Lean Startup methodology. Crucially, it is not synonymous with a prototype, proof of concept, or the first rendition of your product. To better understand where the MVP lies in the product pipeline, check out our guide to common MVP misconceptions. And for a deeper dive into approaches and steps to building an MVP, read our full guide on ‘How to Build an MVP.’

What is Ruby on Rails?

Ruby on Rails (RoR), or just Rails, is an open-source web application framework written in Ruby – a dynamic, object-oriented programming language. The backend framework was created in 2004 by David Heinemeier Hansson, co-founder of 37Signals (now Basecamp). It boasts tons of built-in functionality and a set of conventions that simplify the web development process.

Even though Rails has been around for almost 20 years, the framework is still popular among startups. Mostly because it’s reliable, supports rapid development, and already powers dozens of famous products – think Shopify, GitHub, Hulu, GoodReads, and more.

RoR is a framework that’s pretty close to our hearts here at Railsware – so much so, we even put it in our name! But there’s a reason for that. Over the past 15 years, we’ve built some highly-successful products using this framework. Calendly, BrightBytes, and Mailtrap are just a few examples.

So, it’s fair to say we’ve got a strong opinion on why RoR is a great choice for creating a web app MVP. At the same time, we’re well aware of its limitations, and we’ll also touch on them here. But first, let’s explore the criteria for picking a server-side framework.

What to consider when choosing an MVP backend framework

Founders and developers all have their own skills, experiences, and technology preferences. These factors naturally influence a startup’s choice of backend and frontend framework. However, here are a few must-haves:

Reliability

Early adopters will usually be forgiving of bugs or unplanned downtime. They expect these issues to occur in barebones products. However, an app that constantly crashes or doesn’t function as expected can cause lasting damage to your product’s reputation. Your chosen framework should have a track record of regular performance updates, security patches, and long-term support (LTS) availability.

Scalability

It might seem premature to consider scalability at this early stage, since there’s no guarantee that your MVP will be successful. But to avoid a do-over, or major refactoring later, it’s best to think long-term from day one. You’ll need a framework that can efficiently manage a growing user base and increasing traffic without slowing down your app’s response time. Particularly if you’re building a web app like Instagram or Slack, and expect it to handle billions of simultaneous real-time interactions in future.

So, we recommend choosing a framework with a well-designed architecture. Model-View-Controller (MVC) is known for being slightly less scaleable, but it’s more efficient and easier to set up. On the contrary, microservices adds extra layers of complexity to early product development.

Fun fact: The first version of Twitter was famously built with Rails. In 2009, as its user base skyrocketed, Twitter realized that it would be better off with a distributed systems architecture, so it made the switch to Scala. However, Shopify and GitHub are good examples of apps that have scaled into billion-dollar enterprises with RoR as their foundation.

Easy to maintain

Your backend infrastructure is the spine of your application, so maintainability is an important consideration. Opt for a framework that has been heavily documented and supports the separation of concerns. Tightly coupled code is a nightmare to modify and maintain. Frameworks with a modular architecture, such as RoR, allow you to make changes to one part of the application without breaking others in the process. This makes it easier to iterate on an MVP. Meanwhile, well-established frameworks like Rails and Django typically have a wealth of documentation that can help developers troubleshoot issues quickly.

Active community

Support from an active community can make all the difference when you’re in the early stages of building a product. MVP development is fast-paced. Your team needs to be able to problem-solve on the go and find answers to their questions quickly. Ideally, you should pick a framework that is open-source, consistently maintained, and home to an ever-growing community.

We count ourselves lucky: Ruby has one of the largest tech communities in the world, with over 2 million active developers. RoR’s community is well-known for its friendliness. Meanwhile, the Rails GitHub page boasts over 4.6K contributors (frameworks like Express, Angular, and Vue.js hardly scrape 2K when combined). New gems are released every day.

Tip: Bear in mind that a framework’s popularity isn’t always an indicator of a helpful community. For example, the Javascript community is huge, but that’s also what makes it more prone to infighting and lack of consensus.

Why choose Ruby on Rails for your MVP?

Here are a few reasons why we consider Rails to be one of the best options for MVP backend development.

Supports rapid development

Why does Rails continue to be a popular choice among startups? Because it enables small teams to build powerful web applications in very little time. Here are some of the features that make that possible:

  • Convention over configuration. Rails promotes naming conventions and default assumptions over constantly having to specify how things work. This streamlines the process of writing code, saving startups precious time on development.

  • Generators and templates that give developers easy access to quality, boilerplate code. This is thanks to the Rails DRY (Don’t Repeat Yourself) principle, which encourages developers to reuse existing code.

  • A built-in testing framework that allows engineers to quickly write automated tests, catching bugs that would otherwise slow development down.

Of course, timelines differ from project to project, but in our experience, Rails MVPs typically don’t take more than 3 months to build. This increased speed to market allows startups to gather feedback and iterate earlier than their competitors.

As Reid Hoffman states in Blitzscaling, ‘…prioritizing speed over efficiency—even in the face of uncertainty—is especially important when your business model depends on having lots of members and getting feedback from them. If you get in early and start getting that feedback and your competitors don’t, then you’re on the path to success.’

MVC architecture

In line with Rails’ reputation for structure and simplicity, the framework uses MVC architecture. MVC, or Model-View-Controller, is a method of separating your web application into three interconnected parts. In our view, this design pattern makes applications much easier to maintain and iterate on. Segments are defined as so:

  • Models manage data and related business logic, including database interactions and validations.

  • Views handle what the user sees and interacts with, including the user interface and related inputs.

  • Controllers act as a connector between models and views, by handling user requests and providing the data on demand.

This modular, monolithic structure promotes efficiency. Having separate modules allows more people to work on them independently. Teams can rapidly iterate on their MVP and add new features without compromising other parts of the codebase. And this ‘independence’ also makes it easier to grow the dev team.

However, because MVC is monolithic, the biggest challenge is setting boundaries between parts of the application. For example, in the case of our product Coupler.io, we’ve experienced difficulties with separating entire logic about executions from credentials management. It’s not a dealbreaker; there are workarounds. But horizontal layering (e.g microservices) has the advantage in this regard – it allows for smoother scaling of the application.

Concise language

Ruby is renowned for its simple and highly-readable syntax. It’s an incredibly expressive object-oriented language with loose syntax rules (optional parens, for instance). Not only does this give developers more flexibility in how they write solutions, but it also helps increase productivity – developers can do more with less code. And Ruby is an accessible language, suitable for rapidly expanding development teams; even if new members don’t know Ruby, they won’t have a hard time learning or understanding it.

Ultimately, Ruby and RoR’s simplicity makes it a good match for the MVP. There’s nothing to be gained from making your code more complicated than it needs to be, especially at this critical stage of product development.

Ruby Gems

Ruby Gems are code libraries that provide additional functionality to the Rails framework. Access to a wealth of high-quality, reliable, and reusable code allows Ruby engineers to build functional web applications, fast. As such, gems are an essential resource for Ruby developers and play a crucial role in the Ruby ecosystem.

We wouldn’t say there’s a gem for absolutely everything, but the sheer number of them – over 175K, with more released every day – means Ruby developers have plenty of options. On the other hand, the abundance of options can make it hard to pick the right ones for your MVP. Since every product is different, it’s impossible to narrow down the list. But here are three gems our Ruby engineers always recommend for MVP development:

  1. Devise for flexible authentication.

  2. Sidekiq for simple and efficient background processing.

  3. ActiveAdmin for a solid administration framework to control/inspect data.

Ruby on Rails isn’t as celebrated as it once was. Over the past decade, several other backend frameworks – e.g. Express.js, Spring, and Django – have spiked in popularity, knocking RoR from the top of the table.

Size of programming language communities in 2022

There have always been claims that RoR is slow, but the difference in runtime speed (microseconds) is marginal when compared to other frameworks. That is, as long as your app doesn’t lean heavily on in-memory processing. We consider Express.js and Django the better options for memory-intensive applications (e.g. multiplayer games, social networking apps, AI tools, etc.).

Meanwhile, as a JavaScript framework, Express has an advantage. It shares a common language with some of the most hyped frontend frameworks (e.g. React, Next). This helps improve project coherency and makes it easier for teams to collaborate.

Again, RoR’s accessibility makes it faster in other ways – for instance, the literate nature of the Ruby language, and the sheer amount of community support. By comparison, Laravel’s learning curve is much steeper.

Even though some frameworks are more widely implemented, Rails can still be used to build just about anything – fintech, SaaS, and even video streaming applications. Thanks in part to Shopify’s success, Ruby on Rails for e-commerce is still a popular implementation. The bottom line is: startups can easily leverage the framework to create performant, flexible, and investment-ready MVPs.

How do low-code/no-code platforms compare?

Market adoption of low-code and no-code platforms (such as Webflow, Bubble, or WordPress) has soared since 2020. And it’s no surprise why – drag & drop editors, growing marketplaces, and tons of built-in functionality make these platforms attractive to plenty of non-technical, cash-strapped entrepreneurs.

But startups should think twice before jumping on the no-code MVP train. It’s worth noting that no tech unicorns have been built using these platforms. Creating an original and nuanced product can be tricky when server-side customization is so limited. Ultimately, more abstraction also means less control over the end result.

And sure, you could build a simple low/no-code app (let’s say, an e-Commerce platform) with Airtable and Zapier for a backend, Webflow for a frontend, and Stripe as a payment facilitator. But if you’re non-technical, it won’t exactly be easy. You still need rudimentary product development skills to construct an application that leverages multiple different tools, APIs, and integrations.

Meanwhile, Ruby on Rails is the definition of tried and tested. Products like Airbnb, Basecamp, and Zendesk are proof that Rails MVPs are scaleable, powerful, and capable of attracting serious investment. Ruby on Rails services might be more expensive than low/no-code tool subscriptions, but this often pays off in the long run.

Successful SaaS MVPs built with Ruby on Rails

Here are a few other examples of web applications that had Ruby on Rails under the hood at the MVP stage.

Calendly

Calendly is an online scheduling app that lets you schedule and manage appointments with ease. Railsware has been involved in its development since 2013, when the product was still in the idea stage. Over several months, we supported Tope Awotona, Calendly’s founder, in bringing that idea to life.

The process started with a BRIDGeS session (ideation) to identify user pains and shape the product vision based on those insights. Next up was building an MVP. From the get-go, the backend was built on Rails, with Postgres and Redis for database management. The frontend was powered by HTML5, CSS3, and JavaScript. Crucially, this robust tech stack has stood the test of time. Over the years, we have implemented countless changes based on user feedback and new requirements. Rails has proved flexible, reliable, and performant throughout – as of 2022, Calendly’s architecture supports over 10 million active users. It’s currently valued at over $3 billion.

Read What comes after MVP to learn more about how we help our clients scale their products.

Fiverr

Today Fiverr is one of the leading online marketplaces for freelance services. But when founders Micha Kaufman and Shai Wininger first launched the platform back in 2010, it had a very different look and feel.

The Fiverr MVP was a basic web app that the two businessmen had built quickly with Rails. It allowed freelancers to sell their services for a fixed fee of $5 – hence the name. However, as demand for the product grew – and feedback from users rolled in – Fiverr expanded beyond $5 services. The company attracted more than $110 million in funding during its first five years in business.

Fiverr’s growing team continued to scale the product, and by 2020, the platform had launched Fiverr Business, a feature that allows companies to manage their freelancer workflows. Fiverr’s tech stack has also expanded over the years, but Ruby on Rails still counts as one of their core technologies.

TradeZella

TradeZella is an all-in-one trading journal founded by Umar Ashraf, a seasoned entrepreneur and stock trader. Our team has worked with Umar since 2021, helping him shape and grow the TradeZella MVP into a full-featured product.

Prior to our involvement, Umar worked with a couple of outsourced development teams to build the first version of his TradeZella. However, those co-operations didn’t yield great results, and that’s when Umar enlisted our help. We refactored code, redesigned the UI/UX, and significantly enhanced the product’s stability and performance. The result was a fully-functional MVP, with a backend built on Ruby and RoR, and a frontend built on JavaScript, React.js, HTML5, and Sass.

The application quickly attracted early adopters, and we’ve used their feedback to improve the product by adding new features like Replay, Zella Notebook, and Zella University. The continued success of TradeZella is proof that Ruby on Rails is still relevant this decade.

For more practical examples, check out our round-up of highly-successful Ruby on Rails websites.


Thank you for letting us share this reflection 💭 of ours with you! If you're hungry for more, there's lots where this came from on Railsware's blog 🚀