Skip to content

Instantly share code, notes, and snippets.

@rwilcox
Created October 20, 2011 13:57
Show Gist options
  • Select an option

  • Save rwilcox/1301202 to your computer and use it in GitHub Desktop.

Select an option

Save rwilcox/1301202 to your computer and use it in GitHub Desktop.
undefined helper_method
# Info: Rails 3.1.1
class BusinessesController < ApplicationController
helper_method :business
# [snip controller crap]
def business
@business ||= Business.find(params[:id])
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment