public
Rubygem
Description: Simple tool to help track git and svn vendor branches in a git repository
Homepage: http://evil.che.lu/projects/braid
Clone URL: git://github.com/evilchelu/braid.git
Search Repo:
evilchelu (author)
Wed May 07 03:36:19 -0700 2008
commit  367c3ec43109e105d7e2178e5693bd3ccc8f6a15
tree    2cf9aa2836f1185ad8ce051cb25a929cf44bdaea
parent  126eec929f306cdd67ccc19a49316ce3a378c4bc
braid / lib / braid.rb
100644 29 lines (23 sloc) 0.512 kb
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
$:.unshift dir = File.dirname(__FILE__)
 
begin
  require 'rubygems'
rescue LoadError
end
 
require 'open4'
require 'yaml'
require 'yaml/store'
 
module Braid
  MIRROR_TYPES = %w[git svn]
  WORK_BRANCH = "braid/track"
  CONFIG_FILE = ".braids"
  REQUIRED_GIT_VERSION = "1.5.4.5"
  REQUIRED_GIT_SVN_VERSION = "1.5.4.5"
end
 
require 'braid/version'
require 'braid/exceptions'
 
require 'braid/config'
require 'braid/operations'
 
require 'braid/command'
Dir["#{dir}/braid/commands/*"].each do |file|
  require file
end