seratch/gistub

View on GitHub
app/controllers/root_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# -*- encoding : utf-8 -*-
class RootController < ApplicationController

  respond_to :html

  def index
    @gists = Gist.limit(5).recent
  end

end