class Gem::Release::Context::Paths::Base

def current

def current
  [[cwd, cwd.basename.to_s]]
end

def cwd

def cwd
  @cwd ||= Pathname.pwd
end

def in_dir(dir, &block)

def in_dir(dir, &block)
  dir == cwd ? yield : Dir.chdir(dir, &block)
end