Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is the contents of a each loop, names.each do|x| . I need to substitute v02 with #{x} but am having trouble with the syntax. Please show me how to replace v02 with x.

<% @a = Count.find_by_user_id(@user) %>
<% @b = @a.v02 %>
<% @c = @b * 1.0 %>
<% @d = Carpart.find_by_part("v02") %>
<% @e = @d.requirement %>
<% @f = @c / @e %>
<% @g = @f * 100 %>
<% @h = [@g, 100].min %>
<% @i = Percentage.find_by_user_id(@user) %>
<% @i.update_attribute(:v02, @h) %>
V02 <%= @i.v02 %>%
<% @v02 = @i.v02 %>
share|improve this question
You're doing this all in a view? All that logic would much more happily live in the model (Name?) that's you're iterating a collection of. Also, how's @user getting populated? – Pavling Aug 27 '12 at 7:58

2 Answers

up vote 2 down vote accepted

Not completely sure if that's what you meant, but... Did you mean like this?

<% @a = Count.find_by_user_id(@user) %>
<% @b = @a.send(x) %>
<% @c = @b * 1.0 %>
<% @d = Carpart.find_by_part("#{x}") %>
<% @e = @d.requirement %>
<% @f = @c / @e %>
<% @g = @f * 100 %>
<% @h = [@g, 100].min %>
<% @i = Percentage.find_by_user_id(@user) %>
<% @i.update_attribute(x.to_sym, @h) %>
x <%= @i.send(x) %>%
<% @x = @i.send(x) %>
share|improve this answer
great, this is awesome! – Tony Hassan Aug 27 '12 at 4:03
done sorry, didn't know! thanks! – Tony Hassan Sep 1 '12 at 21:55

You can use Ruby's send

<% @b = @a.send(x) %>

Or

<% @b = @a.__send__(x) %>

I prefer the latter only because, you usually don't have to worry about anyone overriding that one.

share|improve this answer
ty! i was missing the send(x) – Tony Hassan Aug 27 '12 at 4:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.