I am new to Ruby. I am looking for an elegant one line solution to this line of code:
puts "Year: ".colorize(:light_blue) + "#{instrument.year}"
I would like it to print "N/A"
if instrument.year
is ""
(an empty string). I imagine an unless, if or || might work, but so for nothing has quite worked for me. Still learning! I have several fields that need this treatment, so I'd like to avoid an if/else/end statement.
Thanks in advance!