x = {:name => "John", :data => {:physical => {:age => 25, :weight => 150}}}

I'm looking to move the subattributes of data up one level (but not necessarily simply flatten all attributes). In this case, I essentially want to move the :physical attribute "up" one level.

I'm trying this

y = x[:data']
y.each{ |key| x[key] = y[key] }

but I get ...

x = x.except(:data)
 => {:name=>"John", [:physical, {:age=>25, :weight=>150}]=>nil} 

I'm looking for ...

 => {:name=>"John", :physical => {:age=>25, :weight=>150}} 
link|improve this question

41% accept rate
feedback

2 Answers

up vote 5 down vote accepted

Try this:

x = x.merge(x.delete(:data))
link|improve this answer
Don't you mean :data, not :physical? – matt Jun 12 '11 at 22:11
Yes, fixed the answer. – Michaël Witrant Jun 12 '11 at 22:12
1  
Or merge! to avoid the extra copying. – mu is too short Jun 12 '11 at 22:41
feedback

I'd go after it this way:

x = {:name => "John", :data => {:physical => {:age => 25, :weight => 150}}}

x[:physical] = x.delete(:data)[:physical]

pp x #=> {:name=>"John", :physical=>{:age=>25, :weight=>150}}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.