Skip to content

Instantly share code, notes, and snippets.

@lukaszx0
Last active August 29, 2015 14:01
Show Gist options
  • Save lukaszx0/cbec8fe3adf9d517e34d to your computer and use it in GitHub Desktop.
Save lukaszx0/cbec8fe3adf9d517e34d to your computer and use it in GitHub Desktop.
Lukasz's Debugging Tricks
class Post < ActiveRecord::Base
has_many :comments
end
class Comments
belongs_to :post
end
Post.first.comments.class # => Array
Kernel.instance_method(:class).bind(Post.first.comments).call # => ActiveRecord::Associations::CollectionProxy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment