What is the scope of an instance variable in a Rails controller?

Viewed 2490

If I create an instance variable in a Rails controller, what is the scope of that instance variable? Is it available to all of the Rails application, or just to the views and models associated with that particular controller? Since I am new to Rails, I am a bit confused.

1 Answers
Related