Poniżej wymieniono metody, które ma klasa User, a których podstawowa klasa Object nie ma ...
>> User.methods - Object.methods
=> ["field_types", "maximum", "create!", "active_connections", "to_dropdown",
"content_columns", "su_pw?", "default_timezone", "encode_quoted_value",
"reloadable?", "update", "reset_sequence_name", "default_timezone=",
"validate_find_options", "find_on_conditions_without_deprecation",
"validates_size_of", "execute_simple_calculation", "attr_protected",
"reflections", "table_name_prefix", ...
Zauważ, że methods
jest to metoda dla klas i dla instancji klas.
Oto metody, które ma moja klasa User, które nie należą do klasy bazowej ActiveRecord:
>> User.methods - ActiveRecord::Base.methods
=> ["field_types", "su_pw?", "set_login_attr", "create_user_and_conf_user",
"original_table_name", "field_type", "authenticate", "set_default_order",
"id_name?", "id_name_column", "original_locking_column", "default_order",
"subclass_associations", ...
# I ran the statements in the console.
Należy zauważyć, że metody utworzone w wyniku (wielu) relacji has_many zdefiniowanych w klasie User nie znajdują się w wynikach methods
wywołania.
Dodano Uwaga: has_many nie dodaje metod bezpośrednio. Zamiast tego, maszyna ActiveRecord wykorzystuje Ruby method_missing
i responds_to
techniki do obsługi wywołań metod w locie. W rezultacie metody nie są wymienione w methods
wyniku metody.
@current_user
?