class EY::Repo::NotAGitRepository

Attributes

dir[R]

Public Class Methods

new(output) click to toggle source
Calls superclass method
# File lib/engineyard/repo.rb, line 8
def initialize(output)
  @dir = File.expand_path(ENV['GIT_DIR'] || ENV['GIT_WORK_TREE'] || '.')
  super("#{output} (#{@dir})")
end