Skip to content

Instantly share code, notes, and snippets.

View nicolaslazartekaqui's full-sized avatar

Nícolas Lazarte nicolaslazartekaqui

View GitHub Profile
class Sticker::BannerController << ::ApplicationController
# ...
protected
def resource
get_resource_ivar || set_resource_ivar(StickrBanner.send(:find, params[:id]))
end
end
# files_controller.rb
class FilesController < ApplicationController
def index
@files = Files.all
end
...
end