module BourbonIntegrator::Tasks

Attributes

config[R]

Public Class Methods

load(config) click to toggle source
# File lib/bourbon_integrator/tasks.rb, line 26
def self.load(config)
  @config = config
  tasks_path = File.join(File.dirname(__FILE__), "tasks")
  Dir["#{tasks_path}/*.rake"].each { |ext| ::Kernel.load(ext, true) } if defined?(::Rake)
end