Method: CrossCase.findTargetMethods
- Defined in:
- lib/mega/crosscase.rb
.findTargetMethods(*methodList) ⇒ Object
Find methods in the given methodList which are candidates for aliasing.
198 199 200 201 202 203 204 |
# File 'lib/mega/crosscase.rb', line 198 def self::findTargetMethods( *methodList ) methodList.flatten.each {|meth| next if /(singleton_)?method_added/ =~ meth transformedName = transform( meth ) or next yield( meth, transformedName ) } end |