class Aspector::AspectInstances

Public Instance Methods

apply_to_method(method) click to toggle source
# File lib/aspector/aspect_instances.rb, line 3
def apply_to_method method
  each do |aspect_instance|
    next if aspect_instance.options[:existing_methods_only]

    aspect_instance.apply_to_method method
  end
end