Skip to content

Instantly share code, notes, and snippets.

Created October 4, 2014 14:56
Show Gist options
  • Save anonymous/e8a19b2c623942555ae8 to your computer and use it in GitHub Desktop.
Save anonymous/e8a19b2c623942555ae8 to your computer and use it in GitHub Desktop.
class someController < ApplicationController
def a
#How would i access @instance_variable in this method.
#I could make it a class variable right?
end
def b
@instance_variable = #does some stuff
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment