brigit 0.8.2 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Manifest +17 -0
- data/README.rdoc +9 -0
- data/Rakefile +2 -2
- data/bin/brigit +1 -3
- data/brigit.gemspec +125 -49
- data/help/grab.rdoc +16 -0
- data/help/hop.rdoc +36 -0
- data/help/map.rdoc +19 -0
- data/help/update.rdoc +9 -0
- data/lib/brigit/cli.rb +12 -43
- data/lib/brigit/commands/command.rb +43 -7
- data/lib/brigit/commands/grab_command.rb +23 -23
- data/lib/brigit/commands/hop_command.rb +91 -0
- data/lib/brigit/commands/map_command.rb +12 -9
- data/lib/brigit/commands/update_command.rb +4 -6
- data/lib/brigit/fallible.rb +1 -1
- data/lib/brigit/inventories/gitosis_inventory.rb +1 -1
- data/lib/brigit/listable.rb +1 -1
- data/lib/brigit/pretending.rb +25 -0
- data/lib/brigit/version.rb +2 -2
- data/lib/brigit.rb +33 -2
- data/test/brigit_test.rb +70 -0
- data/test/cli_test.rb +47 -0
- data/test/command_test.rb +47 -0
- data/test/fallible_test.rb +33 -0
- data/test/fixtures/gitosis-admin/gitosis.conf +16 -0
- data/test/fixtures/grab_command/existing_directory/stub +1 -0
- data/test/fixtures/submodule_methods/parent/submodule/foo.rb +1 -0
- data/test/gitosis_test.rb +40 -0
- data/test/grab_command_test.rb +55 -0
- data/test/inventory_test.rb +22 -0
- data/test/option_parser_test.rb +21 -0
- data/test/test_helper.rb +32 -1
- metadata +42 -6
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: brigit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- FiveRuns Development Team
|
@@ -9,10 +9,19 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-07-
|
12
|
+
date: 2008-07-12 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: echoe
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
16
25
|
description: Git utilities
|
17
26
|
email: dev@fiveruns.com
|
18
27
|
executables:
|
@@ -24,6 +33,7 @@ extra_rdoc_files:
|
|
24
33
|
- lib/brigit/cli.rb
|
25
34
|
- lib/brigit/commands/command.rb
|
26
35
|
- lib/brigit/commands/grab_command.rb
|
36
|
+
- lib/brigit/commands/hop_command.rb
|
27
37
|
- lib/brigit/commands/map_command.rb
|
28
38
|
- lib/brigit/commands/update_command.rb
|
29
39
|
- lib/brigit/config_parser.rb
|
@@ -31,15 +41,21 @@ extra_rdoc_files:
|
|
31
41
|
- lib/brigit/inventories/gitosis_inventory.rb
|
32
42
|
- lib/brigit/inventories/inventory.rb
|
33
43
|
- lib/brigit/listable.rb
|
44
|
+
- lib/brigit/pretending.rb
|
34
45
|
- lib/brigit/version.rb
|
35
46
|
- lib/brigit.rb
|
36
47
|
- lib/ext/option_parser.rb
|
37
48
|
- README.rdoc
|
38
49
|
files:
|
39
50
|
- bin/brigit
|
51
|
+
- help/grab.rdoc
|
52
|
+
- help/hop.rdoc
|
53
|
+
- help/map.rdoc
|
54
|
+
- help/update.rdoc
|
40
55
|
- lib/brigit/cli.rb
|
41
56
|
- lib/brigit/commands/command.rb
|
42
57
|
- lib/brigit/commands/grab_command.rb
|
58
|
+
- lib/brigit/commands/hop_command.rb
|
43
59
|
- lib/brigit/commands/map_command.rb
|
44
60
|
- lib/brigit/commands/update_command.rb
|
45
61
|
- lib/brigit/config_parser.rb
|
@@ -47,14 +63,26 @@ files:
|
|
47
63
|
- lib/brigit/inventories/gitosis_inventory.rb
|
48
64
|
- lib/brigit/inventories/inventory.rb
|
49
65
|
- lib/brigit/listable.rb
|
66
|
+
- lib/brigit/pretending.rb
|
50
67
|
- lib/brigit/version.rb
|
51
68
|
- lib/brigit.rb
|
52
69
|
- lib/ext/option_parser.rb
|
53
70
|
- Manifest
|
54
71
|
- Rakefile
|
55
72
|
- README.rdoc
|
73
|
+
- test/brigit_test.rb
|
74
|
+
- test/cli_test.rb
|
75
|
+
- test/command_test.rb
|
56
76
|
- test/config_parser_test.rb
|
77
|
+
- test/fallible_test.rb
|
57
78
|
- test/fixtures/example.conf
|
79
|
+
- test/fixtures/gitosis-admin/gitosis.conf
|
80
|
+
- test/fixtures/grab_command/existing_directory/stub
|
81
|
+
- test/fixtures/submodule_methods/parent/submodule/foo.rb
|
82
|
+
- test/gitosis_test.rb
|
83
|
+
- test/grab_command_test.rb
|
84
|
+
- test/inventory_test.rb
|
85
|
+
- test/option_parser_test.rb
|
58
86
|
- test/test_helper.rb
|
59
87
|
- brigit.gemspec
|
60
88
|
has_rdoc: true
|
@@ -77,9 +105,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
77
105
|
version:
|
78
106
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
79
107
|
requirements:
|
80
|
-
- - "
|
108
|
+
- - "="
|
81
109
|
- !ruby/object:Gem::Version
|
82
|
-
version: "
|
110
|
+
version: "1.2"
|
83
111
|
version:
|
84
112
|
requirements: []
|
85
113
|
|
@@ -89,5 +117,13 @@ signing_key:
|
|
89
117
|
specification_version: 2
|
90
118
|
summary: Git utilities
|
91
119
|
test_files:
|
120
|
+
- test/brigit_test.rb
|
121
|
+
- test/cli_test.rb
|
122
|
+
- test/command_test.rb
|
92
123
|
- test/config_parser_test.rb
|
124
|
+
- test/fallible_test.rb
|
125
|
+
- test/gitosis_test.rb
|
126
|
+
- test/grab_command_test.rb
|
127
|
+
- test/inventory_test.rb
|
128
|
+
- test/option_parser_test.rb
|
93
129
|
- test/test_helper.rb
|