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 CHANGED
@@ -3,7 +3,6 @@ License.txt
3
3
  Manifest.txt
4
4
  README.txt
5
5
  Rakefile
6
- TODO.txt
7
6
  bin/braid
8
7
  config/hoe.rb
9
8
  config/requirements.rb
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
- h3. Install with rubygems
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
- h3. Get it from the git repository
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
- h3. Usage
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
- h3. Contributing
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
- h3. Mad props
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.6"
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-29}
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", "TODO.txt"]
15
- s.files = ["History.txt", "License.txt", "Manifest.txt", "README.txt", "Rakefile", "TODO.txt", "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"]
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
@@ -2,7 +2,7 @@ module Braid #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 3
5
- TINY = 6
5
+ TINY = 7
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
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.6
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-29 00:00:00 -07:00
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