class Upstream::Tracker

Attributes

path[R]
pull[R]

Public Class Methods

new(path, pull=false) click to toggle source
# File lib/upstream.rb, line 8
def initialize(path, pull=false)
  @path = path
  @pull = pull
end
run(path, pull) click to toggle source
# File lib/upstream.rb, line 13
def self.run(path, pull)
  new(path, pull).setup
end

Public Instance Methods

setup() click to toggle source
# File lib/upstream.rb, line 17
def setup
  wheneverizer = Wheneverizer.new(path, pull)
  wheneverizer.run
end