public
Rubygem
Fork of evilchelu/braid
Description: A simple tool for tracking vendor branches in git
Homepage: http://evil.che.lu/projects/braid
Clone URL: git://github.com/norbert/braid.git
Nitpick.
norbert (author)
Wed Jul 16 10:57:41 -0700 2008
commit  aeb4e2d9d99dc761eaca16547bb11f9e3e8a44d2
tree    de899dc410156257d9f4a7f3c866e08146bc809c
parent  110732bbb189277dd23f5870e954235ce0e7259f
...
1
 
2
 
3
4
5
6
7
 
8
9
10
11
12
13
14
...
1
2
3
4
5
 
 
 
 
6
7
8
 
 
9
10
11
0
@@ -1,14 +1,11 @@
0
 #!/usr/bin/env ruby
0
+
0
 $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../lib"))
0
+require 'braid'
0
 
0
-begin
0
- require 'rubygems'
0
-rescue LoadError
0
-end
0
+require 'rubygems'
0
 require 'main'
0
 
0
-require 'braid'
0
-
0
 Home = File.expand_path(ENV['HOME'] || '~')
0
 
0
 # mostly blantantly stolen from ara's punch script
...
1
2
3
4
5
6
7
8
 
 
9
10
11
...
13
14
15
16
17
18
19
...
1
2
 
 
 
 
 
3
4
5
6
7
8
...
10
11
12
 
13
14
15
0
@@ -1,11 +1,8 @@
0
 $:.unshift File.dirname(__FILE__)
0
 
0
-begin
0
- require 'rubygems'
0
-rescue LoadError
0
-end
0
-
0
 module Braid
0
+ VERSION = "0.4.9"
0
+
0
   CONFIG_FILE = ".braids"
0
   REQUIRED_GIT_VERSION = "1.5.4.5"
0
 
0
@@ -13,7 +10,6 @@ module Braid
0
   end
0
 end
0
 
0
-require 'braid/version'
0
 require 'braid/operations'
0
 require 'braid/mirror'
0
 require 'braid/config'
...
 
1
2
3
...
1
2
3
4
0
@@ -1,3 +1,4 @@
0
+require 'rubygems'
0
 require 'open4'
0
 
0
 module Braid

Comments

    No one has commented yet.