Tagged Questions

5
votes
2answers
790 views

Should you only use local variables in a partial?

Using local variables seems advisable in a partial that could be used application-wide to avoid dependencies across the application. But within a single controller it seems acceptable to reference ...
2
votes
4answers
114 views

What kind of Ruby variable do I want to use here?

I’m still learning Ruby, and I’m curious about whether it is appropriate to use a class variable, constant, or local variable in this scenario. In my below code example (that generates random ...
2
votes
1answer
183 views

In Ruby, why after starting irb, foo.nil? says undefined error, and @foo.nil? gives “true”, and @@wah.nil? gives error again?

Same in Ruby 1.8.7 and 1.9.2: $ irb ruby-1.8.7-p302 > foo.nil? NameError: undefined local variable or method `foo' for #<Object:0x3794c> from (irb):1 ruby-1.8.7-p302 > @bar.nil? ...
1
vote
1answer
103 views

conflict with instance variables and local variables in partials

In one view I use render :partial => "form_linktype_#{@linkjob.link_type}", :locals => {:linkjob => @linkjob } where @linkjob is an instance variable of type Linktype In another view I ...