以下は、基本ObjectクラスにはないUserクラスのメソッドの一覧です...
>> 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", ...
注methods
クラスのとクラスのインスタンスのための方法です。
以下は、ActiveRecord基本クラスにないUserクラスのメソッドです。
>> 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.
Userクラスで定義された(多くの)has_many関係の結果として作成されたメソッドは、呼び出しの結果には含まれないことに注意してくださいmethods
。
追加しました has_manyの直接メソッドを追加しませんので注意してください。代わりに、ActiveRecord機構はRuby method_missing
とresponds_to
テクニックを使用して、メソッド呼び出しをその場で処理します。その結果、メソッドはmethods
メソッド結果にリストされません。
@current_user
か?