Ruby conditionals

From wikinotes
Revision as of 15:47, 14 May 2022 by Will (talk | contribs)

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