module AfterDo::Loader

Constants

VERSION

Public Class Methods

load(config_path) click to toggle source
# File lib/after_do/loader.rb, line 12
def self.load(config_path)
  config = Config.new(config_path)

  config.aspects.each do |aspect|
    AspectApplier.new(aspect).apply
  end
end