module TFSGraph

FIXME: DRY along side the Branch class

Wraps domain knowledge of changeset TFS access

Constants

VERSION

Public Class Methods

config() { |config| ... } click to toggle source
# File lib/tfs_graph.rb, line 8
def config
  return @config unless block_given?

  @config ||= begin
    config = Config.new
    yield config
    config
  end
end