AS guide: documents Module#(instance_)method_names

This commit is contained in:
Xavier Noria
2010-08-10 03:46:21 +02:00
parent cb9295c8a1
commit ae147b45bb

View File

@@ -1066,6 +1066,18 @@ In the previous example the macro generates +User#avatar_size+ rather than +User
NOTE: Defined in +active_support/core_ext/module/delegation.rb+
h4. Method Names
The builtin methods +instance_methods+ and +methods+ return method names as strings or symbols depending on the Ruby version. Active Support defines +instance_method_names+ and +method_names+ to be equivalent to them, respectively, but always getting strings back.
For example, +ActionView::Helpers::FormBuilder+ knows this array difference is going to work no matter the Ruby version:
<ruby>
self.field_helpers = (FormHelper.instance_method_names - ['form_for'])
</ruby>
NOTE: Defined in +active_support/core_ext/module/method_names.rb+
h3. Extensions to +Class+
h4. Class Attributes