A love letter to Ruby & Rails

Learn the language.
Master the framework.

A curated home for Ruby and Ruby on Rails. Official training videos from @railsofficial, screencasts from GoRails, full courses from Pragmatic Studio, learn-rails.com, Codecademy, Udemy — plus the community and events that make Ruby, Ruby.

Rails OfficialGoRailsPragmatic Studiolearn-rails.comCodecademyUdemy
articles_controller.rb
# The whole app, in one file.
class ArticlesController < ApplicationController
  def index
    @articles = Article.published.recent.limit(10)
  end
end
Convention
over Configuration
Since
2004
Featured this week

Watch the makers, teach yourself.

Handpicked training videos from the people building Ruby and Rails.