class Reponaut::Application::Presenter

Public Instance Methods

format(repo) click to toggle source
# File lib/reponaut/presenter.rb, line 4
def format(repo)
  line = repo.name
  line = "#{line} -> #{repo.upstream}" if repo.fork?
  line
end