Reputation: 289
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
Reputation: 44982
wouldn't using curly braces work?
map.resources :magazines {|magazine| magazine.resources :ads}
Upvotes: 6
Reputation: 150
Instead of do
/end
, you could simply use {
/}
:
map.resources :magazines {|magazine| magazine.resources :ads}
Upvotes: 7