1. Home
  2. /
  3. Ruby-on-rails
  4. /
  5. Rails Multiple Routes Example

Rails Multiple Routes Example - Ruby-on-rails Typing CST Test

Loading…

Rails Multiple Routes Example — Ruby-on-rails Code

Handle multiple routes in a single Rails application.

# config/routes.rb
Rails.application.routes.draw do
	get '/', to: 'home#index'
	get '/about', to: 'home#about'
end

# app/controllers/home_controller.rb
class HomeController < ApplicationController
	def index
		render plain: 'Home'
	end

	def about
		render plain: 'About'
	end
end

Ruby-on-rails Language Guide

Ruby on Rails (Rails) is a full-stack, server-side web application framework written in Ruby. It emphasizes convention over configuration, DRY (Don't Repeat Yourself) principles, and rapid development.

Primary Use Cases

  • ▸Building full-stack web applications
  • ▸Developing RESTful APIs
  • ▸Rapid MVP and startup projects
  • ▸Database-driven enterprise apps
  • ▸E-commerce platforms and SaaS products

Notable Features

  • ▸Convention over configuration
  • ▸MVC architecture
  • ▸Active Record ORM
  • ▸Built-in testing framework
  • ▸RESTful routing and resource management

Origin & Creator

Ruby on Rails was created by David Heinemeier Hansson and first released in 2004.

Industrial Note

Rails is ideal for startups and projects requiring fast prototyping, robust full-stack development, and applications with database-driven backends.

More Ruby-on-rails Typing Exercises

Rails Simple Counter AppRails Hello World APIRails Query Parameter ExampleRails JSON Response ExampleRails POST Form ExampleRails Path Parameter ExampleRails Error Handling ExampleRails Redirect ExampleRails Service Object Example

Practice Other Languages

CReactPythonC++RustTypeScriptKotlinPHPJavaC#RubyMqlCqlN1qlCypher