Joe O'Driscoll
Joe O'Driscoll

Reputation: 289

What's another way of writing this block without using do-end?

How would you write this on the same line or on consecutive lines without do-end?

map.resources :magazines do |magazine| magazine.resources :ads end  

Upvotes: 1

Views: 132

Answers (2)

Rob Di Marco
Rob Di Marco

Reputation: 44982

wouldn't using curly braces work?

map.resources :magazines {|magazine| magazine.resources :ads}

Upvotes: 6

mmarx
mmarx

Reputation: 150

Instead of do/end, you could simply use {/}:

map.resources :magazines {|magazine| magazine.resources :ads}

Upvotes: 7

Related Questions