Ruby conditionals: Difference between revisions

From wikinotes
No edit summary
Line 1: Line 1:
= If Statement =
= If Statement =
<blockquote>
<source lang="ruby">
<source lang="ruby">
if platform == "linux"
if platform == "linux"
Line 14: Line 15:


<source lang="ruby">
<source lang="ruby">
if 1 == 1 then puts "equal!"  
if 1 == 1 then puts "equal!"
else puts "not equal"
else puts "not equal"
end
end
</source>
</source>
</blockquote><!-- If Statement -->


= unless =
= Unless =
<blockquote>
<source lang="ruby">
<source lang="ruby">
unless platform == "FreeBSD"
unless platform == "FreeBSD"
Line 25: Line 28:
end
end
</source>
</source>
</blockquote><!-- Unless -->


= case =
= Case =
<blockquote>
Tests value of capacity over several conditions.
Tests value of capacity over several conditions.
Each expression is compared against the value using the <code>===</code> [[ruby operators|operator]].  
Each expression is compared against the value using the <code>===</code> [[ruby operators|operator]].
<source lang="ruby">
<source lang="ruby">
case capacity
case capacity
Line 40: Line 45:
   "Error: capacity has an invalid value (#{capacity})"
   "Error: capacity has an invalid value (#{capacity})"
</source>
</source>
</blockquote><!-- Case -->


= ternary operator =
= Ternary Operator =
<blockquote>
<source lang="ruby">
<source lang="ruby">
val = val_if_true ? condition : val_if_false
val = val_if_true ? condition : val_if_false
</source>
</source>
</blockquote><!-- Ternary Operator -->

Revision as of 15:47, 14 May 2022

If Statement

if platform == "linux"
  puts "is linux"

elsif platform =~ /^win/          # if `platform` matches regex /^win/
  puts "is windows variant"

else
  puts "not linux or windows"

end
if 1 == 1 then puts "equal!"
else puts "not equal"
end

Unless

unless platform == "FreeBSD"
  puts "not FreeBSD"
end

Case

Tests value of capacity over several conditions. Each expression is compared against the value using the === operator.

case capacity
when 0
  "You ran out of gas."
when 71..100
  "The tank is almost full."
when /\AC/
  "blah"
else
  "Error: capacity has an invalid value (#{capacity})"

Ternary Operator

val = val_if_true ? condition : val_if_false