module Tod

Constants

VERSION

Public Class Methods

build(from_yml: '.travis.yml') click to toggle source
# File lib/tod.rb, line 13
def self.build(from_yml: '.travis.yml')
  yaml = YAML.load_file(from_yml)
  travis = Travis.new(yaml)
  Runner.new(travis)
end