evilchelu-braid 0.3.6 → 0.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Manifest.txt +0 -1
- data/README.txt +11 -8
- data/braid.gemspec +4 -4
- data/lib/braid/version.rb +1 -1
- metadata +2 -4
data/Manifest.txt
CHANGED
data/README.txt
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
= Braid
|
|
2
|
+
|
|
3
|
+
http://evil.che.lu/projects/braid/
|
|
4
|
+
|
|
5
|
+
== Description
|
|
6
|
+
|
|
1
7
|
Braid is a simple tool to help track git and svn vendor branches in a git
|
|
2
8
|
repository.
|
|
3
9
|
|
|
@@ -5,20 +11,17 @@ In purpose, it's similar to piston, but it's especially built on top of git
|
|
|
5
11
|
commands. This allows better integration with git and easier management of
|
|
6
12
|
merges.
|
|
7
13
|
|
|
8
|
-
The braid homepage is at
|
|
9
|
-
"http://evil.che.lu/projects/braid":http://evil.che.lu/projects/braid/
|
|
10
|
-
|
|
11
14
|
Braid is "hosted on github":http://github.com/evilchelu/braid.
|
|
12
15
|
|
|
13
16
|
*NOTE:* You will need at least git 1.5.4.5+ to run braid. You'll also need the
|
|
14
17
|
open4 and main gems.
|
|
15
18
|
|
|
16
|
-
|
|
19
|
+
== Install with rubygems
|
|
17
20
|
|
|
18
21
|
gem sources -a http://gems.github.com/ # only need to do this once
|
|
19
22
|
gem install evilchelu-braid
|
|
20
23
|
|
|
21
|
-
|
|
24
|
+
== Install from the git repository
|
|
22
25
|
|
|
23
26
|
Get a clone of the git repository using:
|
|
24
27
|
|
|
@@ -27,7 +30,7 @@ Get a clone of the git repository using:
|
|
|
27
30
|
rake install_gem
|
|
28
31
|
braid --help # see usage
|
|
29
32
|
|
|
30
|
-
|
|
33
|
+
=== Usage
|
|
31
34
|
|
|
32
35
|
braid help
|
|
33
36
|
braid help COMMANDNAME
|
|
@@ -35,12 +38,12 @@ h3. Usage
|
|
|
35
38
|
For more usage examples, documentation, feature requests and bug reporting,
|
|
36
39
|
check out the "braid wiki":http://github.com/evilchelu/braid/wikis.
|
|
37
40
|
|
|
38
|
-
|
|
41
|
+
=== Contributing
|
|
39
42
|
|
|
40
43
|
If you want to send a patch in, please fork the project on github, commit your
|
|
41
44
|
changes and send a pull request.
|
|
42
45
|
|
|
43
|
-
|
|
46
|
+
=== Mad props
|
|
44
47
|
|
|
45
48
|
Braid used to be quite lame before "Norbert Crombach":http://primetheory.org/
|
|
46
49
|
("github":http://github.com/norbert) resuscitated it by contribuing a bunch of
|
data/braid.gemspec
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = %q{braid}
|
|
3
|
-
s.version = "0.3.
|
|
3
|
+
s.version = "0.3.7"
|
|
4
4
|
|
|
5
5
|
s.specification_version = 2 if s.respond_to? :specification_version=
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Cristi Balan", "Norbert Crombach"]
|
|
9
|
-
s.date = %q{2008-04-
|
|
9
|
+
s.date = %q{2008-04-30}
|
|
10
10
|
s.default_executable = %q{braid}
|
|
11
11
|
s.description = %q{Braid is a simple tool to help track git and svn vendor branches in a git repository}
|
|
12
12
|
s.email = %q{evil@che.lu}
|
|
13
13
|
s.executables = ["braid"]
|
|
14
|
-
s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "README.txt"
|
|
15
|
-
s.files = ["History.txt", "License.txt", "Manifest.txt", "README.txt", "Rakefile", "
|
|
14
|
+
s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "README.txt"]
|
|
15
|
+
s.files = ["History.txt", "License.txt", "Manifest.txt", "README.txt", "Rakefile", "bin/braid", "config/hoe.rb", "config/requirements.rb", "lib/braid.rb", "lib/braid/command.rb", "lib/braid/commands/add.rb", "lib/braid/commands/diff.rb", "lib/braid/commands/remove.rb", "lib/braid/commands/setup.rb", "lib/braid/commands/update.rb", "lib/braid/config.rb", "lib/braid/exceptions.rb", "lib/braid/operations.rb", "lib/braid/version.rb", "braid.gemspec", "script/destroy", "script/generate", "setup.rb", "spec/braid_spec.rb", "spec/config_spec.rb", "spec/operations_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/deployment.rake", "tasks/environment.rake", "tasks/rspec.rake", "tasks/website.rake"]
|
|
16
16
|
s.has_rdoc = true
|
|
17
17
|
s.homepage = %q{http://evil.che.lu/projects/braid}
|
|
18
18
|
s.rdoc_options = ["--main", "README.txt"]
|
data/lib/braid/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: evilchelu-braid
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Cristi Balan
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2008-04-
|
|
13
|
+
date: 2008-04-30 00:00:00 -07:00
|
|
14
14
|
default_executable: braid
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
@@ -42,14 +42,12 @@ extra_rdoc_files:
|
|
|
42
42
|
- License.txt
|
|
43
43
|
- Manifest.txt
|
|
44
44
|
- README.txt
|
|
45
|
-
- TODO.txt
|
|
46
45
|
files:
|
|
47
46
|
- History.txt
|
|
48
47
|
- License.txt
|
|
49
48
|
- Manifest.txt
|
|
50
49
|
- README.txt
|
|
51
50
|
- Rakefile
|
|
52
|
-
- TODO.txt
|
|
53
51
|
- bin/braid
|
|
54
52
|
- config/hoe.rb
|
|
55
53
|
- config/requirements.rb
|