Skip to content

Instantly share code, notes, and snippets.

Created August 27, 2013 01:10
Show Gist options
  • Save anonymous/6348591 to your computer and use it in GitHub Desktop.
Save anonymous/6348591 to your computer and use it in GitHub Desktop.
cache = {
:id => 1,
:pages => {
:id => 2,
:redirect => 'whatever',
:designs => {
:id => 3
}
},
{
:id => 4,
:designs => {
:id => 5
}
}
}
cache = {
:id => 1,
:pages => {
{ :id => 2, :redirect => 'whatever', :designs => { :id => 3 } },
{ :id => 4, :designs => { :id => 5 } }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment