ivar means an instance variable. An instance variable is bound to an object of this class, and in rails it is mainly used in controllers and views.
github, : "iVars " API " .
, :
def new
@post_ivar = Post.new
end
"ivar" , new.haml:
= form_for @post_ivar do |f|
= f.text_field :headline
-