Changeset 4534
- Timestamp:
- 07/03/06 23:27:47 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activesupport/lib/active_support/core_ext/module/aliasing.rb
r4482 r4534 18 18 # 19 19 # alias_method :foo_without_feature?, :foo? 20 # alias_method :foo?, :foo_with out_feature?20 # alias_method :foo?, :foo_with_feature? 21 21 # 22 22 # so you can safely chain foo, foo?, and foo! with the same feature.