class TFSGraph::GraphPopulator
Public Class Methods
incrementally_update_all()
click to toggle source
# File lib/tfs_graph/graph_populator.rb, line 26 def incrementally_update_all populate_graph(Populators::SinceLast) end
populate_all_from_time(time)
click to toggle source
# File lib/tfs_graph/graph_populator.rb, line 30 def populate_all_from_time(time) populate_graph(Populators::SinceDate, time) end
populate_graph(type=Everything, *args)
click to toggle source
# File lib/tfs_graph/graph_populator.rb, line 21 def populate_graph(type=Everything, *args) populator = type.new *args populator.populate end
update_branch(project, branch)
click to toggle source
# File lib/tfs_graph/graph_populator.rb, line 38 def update_branch(project, branch) populate_graph(Populators::ForBranch, project, branch) end
update_project(project)
click to toggle source
# File lib/tfs_graph/graph_populator.rb, line 34 def update_project(project) populate_graph(Populators::ForProject, project) end