I am using Ruby on Rails 3.0.10 and I would like to build an hash key\\value pairs in a conditional way. That is, I would like to add a key and its related value if a condition
Simple as this:
hash = { :key1 => value1, **(condition ? {key2: value2} : {}) }
Hope it helps!