Created
October 4, 2014 14:56
-
-
Save anonymous/e8a19b2c623942555ae8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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