Skip to content

Instantly share code, notes, and snippets.

@kenchan
Created June 8, 2016 09:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenchan/45ab10c85366090244a584c1b1a61faf to your computer and use it in GitHub Desktop.
Save kenchan/45ab10c85366090244a584c1b1a61faf to your computer and use it in GitHub Desktop.
class Cart extend ActiveRecord::Base
include MyPrittyPrintable
end
module MyPrittyPrintable
def pritty_print
# attribute_namesをぐるぐるまわしながらkey: valueを出す
end
end
c = Cart.new
c.pritty_print # => いいかんじの表示
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment