Last active
September 27, 2019 11:11
-
-
Save irridescentrambler/cfc6be09f87dccaaec5a6a29fa6c9da9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'active_record' | |
ActiveRecord::Base.method(:new).owner | |
#=> ActiveRecord::Inheritance::ClassMethods | |
ActiveRecord::Base.method(:create).owner | |
#=> ActiveRecord::Persistence::ClassMethods | |
ActiveRecord::Base.method(:update).owner | |
#=> ActiveRecord::Querying | |
ActiveRecord::Base.method(:trust).owner | |
#=> Kernel | |
class User < ActiveRecord::Base | |
end | |
User.method(:where).owner | |
#=> ActiveRecord::Querying | |
User.method(:human_attribute_name).owner | |
#=> ActiveModel::Translation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment