Skip to content

Instantly share code, notes, and snippets.

@MikeSilvis
Created April 7, 2012 15:57
Show Gist options
  • Save MikeSilvis/2329928 to your computer and use it in GitHub Desktop.
Save MikeSilvis/2329928 to your computer and use it in GitHub Desktop.
Cart Products before Group_by
1.9.2p318 :087 > c.products
#=>
[
[0] #<Product:0x007fbc1ded2b38> {
:id => 3,
:name => "Racecar",
:description => "VRRRRRRRRRMMMMMMM",
:price_in_cents => 2065,
:active => 1,
:inactive_date => nil,
:created_at => Sat, 07 Apr 2012 15:36:10 UTC +00:00,
:updated_at => Sat, 07 Apr 2012 15:36:10 UTC +00:00,
:avatar_file_name => nil,
:avatar_content_type => nil,
:avatar_file_size => nil,
:avatar_updated_at => nil
},
[1] #<Product:0x007fbc22083cd0> {
:id => 1,
:name => "Apple",
:description => "Yummy wormy apple",
:price_in_cents => 100,
:active => 1,
:inactive_date => nil,
:created_at => Sat, 07 Apr 2012 15:36:09 UTC +00:00,
:updated_at => Sat, 07 Apr 2012 15:36:09 UTC +00:00,
:avatar_file_name => nil,
:avatar_content_type => nil,
:avatar_file_size => nil,
:avatar_updated_at => nil
},
[2] #<Product:0x007fbc1b948020> {
:id => 1,
:name => "Apple",
:description => "Yummy wormy apple",
:price_in_cents => 100,
:active => 1,
:inactive_date => nil,
:created_at => Sat, 07 Apr 2012 15:36:09 UTC +00:00,
:updated_at => Sat, 07 Apr 2012 15:36:09 UTC +00:00,
:avatar_file_name => nil,
:avatar_content_type => nil,
:avatar_file_size => nil,
:avatar_updated_at => nil
}
]
@j3j3
Copy link

j3j3 commented May 16, 2012

What an amazing gist.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment