Sha256: 5fc4027af764fcc24aae54fd104938565e28b9fa402c043d7c6a39666329aab9
Contents?: true
Size: 502 Bytes
Versions: 71
Compression:
Stored size: 502 Bytes
Contents
module Beaker module DSL module Helpers # Methods that help you interact with rake during ci setup module RakeHelpers class << self def load_tasks(beaker_root = File.expand_path("#{__dir__}/../../..")) task_dir = File.join(beaker_root, 'tasks') tasks = [ 'ci.rake' ] tasks.each do |task| load File.join(task_dir, task) end end end end end end end
Version data entries
71 entries across 71 versions & 1 rubygems