[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

writing if statement in one line with elsif condition

Luiz Vitor Martinez Cardoso

8/17/2008 3:09:00 AM

I'm trying to convert it:

<% if @recipes.length =3D=3D (i+1) %>
<% @id =3D 0 %>
<% elsif i.remainder(2) =3D=3D 1 %>
<% @id =3D 1 %>
<% else %>
<% @id =3D 2 %>
<% end %>

To something like:

<% if @recipes.length =3D=3D (i+1) then @id =3D 0 ; elsif
i.remainder(2) =3D=3D 1 then @id =3D 1 ; else @id =3D 2 end >%

But in my tests the elsif condition is totally ignored, why?

Thanks for you attention!

--=20
Regards,

Luiz Vitor Martinez Cardoso
cel.: (11) 8187-8662
blog: rubz.org
engineer student at maua.br

"Posso nunca chegar a ser o melhor engenheiro do mundo, mas tenha certeza d=
e
que eu vou lutar com todas as minhas for=E7as para ser o melhor engenheiro =
que
eu puder ser"

9 Answers

Phlip

8/17/2008 3:33:00 AM

0

Luiz Vitor Martinez Cardoso wrote:

> <% if @recipes.length == (i+1) then @id = 0 ; elsif
> i.remainder(2) == 1 then @id = 1 ; else @id = 2 end >%

How about this?

<% if @recipes.length == (i+1)
@id = 0
elsif i.remainder(2) == 1
@id = 1
else
@id = 2
end %>

I can't see what your specific error is, but that structure will at least be
easier to read and debug.

Also, any logic you can move to a controller - out of the <% erb %> - move it
there. Or better, into a model. The view should have the minimum possible logic.

--
Phlip

Todd Benson

8/17/2008 3:33:00 AM

0

On Sat, Aug 16, 2008 at 10:09 PM, Luiz Vitor Martinez Cardoso
<grabber@gmail.com> wrote:
> I'm trying to convert it:
>
> <% if @recipes.length == (i+1) %>
> <% @id = 0 %>
> <% elsif i.remainder(2) == 1 %>
> <% @id = 1 %>
> <% else %>
> <% @id = 2 %>
> <% end %>
>
> To something like:
>
> <% if @recipes.length == (i+1) then @id = 0 ; elsif
> i.remainder(2) == 1 then @id = 1 ; else @id = 2 end >%
>
> But in my tests the elsif condition is totally ignored, why?

Not sure, but...

if 1==1 then 'a' elsif 'a'=='a' then 'b' else 'c' end
=> "a"

if 1==2 then 'a' elsif 'a'=='b' then 'b' else 'c' end
=> "c"


With a cursory glance, I can only guess that your first condition is
always true. Maybe somebody could pipe in about ERB if that's a
factor, because I'm not familiar with it.

Todd

Stefano Crocco

8/17/2008 7:01:00 AM

0

On Sunday 17 August 2008, Luiz Vitor Martinez Cardoso wrote:
> I'm trying to convert it:
>
> <% if @recipes.length == (i+1) %>
> <% @id = 0 %>
> <% elsif i.remainder(2) == 1 %>
> <% @id = 1 %>
> <% else %>
> <% @id = 2 %>
> <% end %>
>
> To something like:
>
> <% if @recipes.length == (i+1) then @id = 0 ; elsif
> i.remainder(2) == 1 then @id = 1 ; else @id = 2 end >%
>
> But in my tests the elsif condition is totally ignored, why?
>
> Thanks for you attention!

It should work. Look at this:

require 'erb'
puts "Insert a number"
n = gets.to_i
str = '<%= if n%3 == 0 then "divisible by three";elsif n%2==0 then "divisible by two";end%>'
puts ERB.new(str).result

Entering 3 gives "divisible by 3", while entering 2 gives "divisible by two".

Stefano

Robert Klemme

8/17/2008 11:06:00 AM

0

On 17.08.2008 05:09, Luiz Vitor Martinez Cardoso wrote:
> I'm trying to convert it:
>
> <% if @recipes.length == (i+1) %>
> <% @id = 0 %>
> <% elsif i.remainder(2) == 1 %>
> <% @id = 1 %>
> <% else %>
> <% @id = 2 %>
> <% end %>
>
> To something like:
>
> <% if @recipes.length == (i+1) then @id = 0 ; elsif
> i.remainder(2) == 1 then @id = 1 ; else @id = 2 end >%
>
> But in my tests the elsif condition is totally ignored, why?
>
> Thanks for you attention!

Agreeing with the others: it's probably your expectation about the first
condition which is wrong.

Btw, here's another way to do it

@id = case when @recipes.length == i + 1: 0; when i.remainder(2) == 1:
1; else 2 end

Although I admit that I'd rather have it on several lines

@id = case
when @recipes.length == i + 1: 0
when i.remainder(2) == 1: 1
else 2
end

Kind regards

robert

Phlip

8/17/2008 1:13:00 PM

0

> @id = case when @recipes.length == i + 1: 0; when i.remainder(2) == 1:
> 1; else 2 end
>
> Although I admit that I'd rather have it on several lines

I suspect the original posted might not know you can write a multi-line
<% erb %> block! Some sample code puts a different <% %> on each line,
like the original post did...

Luiz Vitor Martinez Cardoso

8/17/2008 2:13:00 PM

0

Philp,

I really know!

Thanks,

On Sun, Aug 17, 2008 at 10:11 AM, Phlip <phlip2005@gmail.com> wrote:

> @id =3D case when @recipes.length =3D=3D i + 1: 0; when i.remainder(2) =
=3D=3D 1: 1;
>> else 2 end
>>
>> Although I admit that I'd rather have it on several lines
>>
>
> I suspect the original posted might not know you can write a multi-line
> <% erb %> block! Some sample code puts a different <% %> on each line,
> like the original post did...
>
>
>


--=20
Regards,

Luiz Vitor Martinez Cardoso
cel.: (11) 8187-8662
blog: rubz.org
engineer student at maua.br

"Posso nunca chegar a ser o melhor engenheiro do mundo, mas tenha certeza d=
e
que eu vou lutar com todas as minhas for=E7as para ser o melhor engenheiro =
que
eu puder ser"

Phlip

8/17/2008 3:51:00 PM

0

Luiz Vitor Martinez Cardoso wrote:

> I really know!

But did any respondent challenge the requirement? Why should any statement have
to fit on one line??

--
Phlip

Luiz Vitor Martinez Cardoso

8/17/2008 10:16:00 PM

0

Just for curious. I'm curious when i'm learning something new ;)

Regards,

On Sun, Aug 17, 2008 at 12:51 PM, Phlip <phlip2005@gmail.com> wrote:

> Luiz Vitor Martinez Cardoso wrote:
>
> I really know!
>>
>
> But did any respondent challenge the requirement? Why should any statemen=
t
> have to fit on one line??
>
> --
> Phlip
>
>


--=20
Regards,

Luiz Vitor Martinez Cardoso
cel.: (11) 8187-8662
blog: rubz.org
engineer student at maua.br

"Posso nunca chegar a ser o melhor engenheiro do mundo, mas tenha certeza d=
e
que eu vou lutar com todas as minhas for=E7as para ser o melhor engenheiro =
que
eu puder ser"

Michael Morin

8/17/2008 10:32:00 PM

0

Luiz Vitor Martinez Cardoso wrote:
> I'm trying to convert it:
>
> <% if @recipes.length == (i+1) %>
> <% @id = 0 %>
> <% elsif i.remainder(2) == 1 %>
> <% @id = 1 %>
> <% else %>
> <% @id = 2 %>
> <% end %>
>
> To something like:
>
> <% if @recipes.length == (i+1) then @id = 0 ; elsif
> i.remainder(2) == 1 then @id = 1 ; else @id = 2 end >%
>
> But in my tests the elsif condition is totally ignored, why?
>
> Thanks for you attention!
>

Ideally, even this rather trivial code is best left outside of ERB
files. Hide this away in a function and it can be as clean and
multi-liney as you want and doesn't muck up your ERB files. This is
doubleplus true if this code is used more than once. Cramming the
entire if statement onto line just makes it less readable.

--
Michael Morin
Guide to Ruby
http://ruby....
Become an About.com Guide: beaguide.about.com
About.com is part of the New York Times Company