asciinema.org/app/controllers/home_controller.rb
2012-03-04 22:44:04 +01:00

6 lines
129 B
Ruby

class HomeController < ApplicationController
def show
@asciicasts = Asciicast.order("created_at DESC").limit(10)
end
end