Sha256: e2fc3632debef45a201018334e614fb1eae730ca7b5dac386fd9cddf103acd0c
Contents?: true
Size: 967 Bytes
Versions: 1
Compression:
Stored size: 967 Bytes
Contents
# Add the directory containing this file to the start of the load path if it # isn't there already. $:.unshift(File.dirname(__FILE__)) unless $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__))) require 'git/base' require 'git/path' require 'git/lib' require 'git/repository' require 'git/index' require 'git/working_directory' require 'git/log' require 'git/object' require 'git/branches' require 'git/branch' require 'git/remote' require 'git/diff' require 'git/status' =begin require 'git/author' require 'git/file' require 'git/sha' require 'git/ref' =end module Git def self.bare(git_dir) Base.bare(git_dir) end def self.open(working_dir, options = {}) Base.open(working_dir, options) end def self.init(working_dir = '.', options = {}) Base.init(working_dir, options) end def self.clone(repository, name, options = {}) Base.clone(repository, name, options) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
git-1.0.1 | lib/git.rb |