class Jeweler::Generator::Options

def self.git_config

Expose git config here, so we can stub it out for test environments
def self.git_config
  @git_config ||= if Pathname.new('~/.gitconfig').expand_path.exist?
                    Git.global_config
                  else
                    {}
                   end
end