Sha256: e4ed1d5bc3a75f25cf646d502d538c2c8cd04b8d95cf38514caa1191be82f520

Contents?: true

Size: 207 Bytes

Versions: 1

Compression:

Stored size: 207 Bytes

Contents

module Git

  class Config

    attr_writer :binary_path

    attr_accessor :git_ssh

    def initialize
      @binary_path = nil
    end

    def binary_path
      @binary_path || 'git'
    end

  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
git-1.2.9 lib/git/config.rb