1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
require 'fileutils'
require 'logger'
require 'optparse'
require 'ostruct'
require 'set'
require 'yaml'
require 'pp'
require 'rbconfig'
# 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__)))
# requires git >= 1.0.5
require 'git'
#Only redefine if we are not using 1.9
unless (defined?(RbConfig) ? RbConfig : Config)::CONFIG["ruby_version"][/^\d\.9/]
# FIXME: Monkeypatch git until fixed upstream
module Git
class Lib
def config_get(name)
do_get = lambda do |x|
command('config', ['--get', name])
end
if @git_dir
Dir.chdir(@git_dir, &do_get)
else
build_list.call
end
end
end
end
end
require 'ticgit-ng/base'
require 'ticgit-ng/cli'
require 'ticgit-ng/attachment'
module TicGitNG
autoload :VERSION, 'ticgit-ng/version'
autoload :Comment, 'ticgit-ng/comment'
autoload :Ticket, 'ticgit-ng/ticket'
# options
# :logger => Logger.new(STDOUT)
# :tic_dir => "~/.#{ which_branch?() }"
# :working_directory => File.expand_path(File.join(@tic_dir, proj, 'working'))
# :index_file => File.expand_path(File.join(@tic_dir, proj, 'index'))
# :init => Boolean -- if true, allow initializing ticgit
def self.open(git_dir, options = {})
Base.new(git_dir, options)
end
class OpenStruct < ::OpenStruct
def to_hash
@table.dup
end
end
end
|