git-hub 1.4.1 → 1.5.0
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/README.md +20 -20
- data/lib/hub/args.rb +48 -26
- data/lib/hub/commands.rb +43 -50
- data/lib/hub/context.rb +14 -9
- data/lib/hub/runner.rb +28 -27
- data/lib/hub/version.rb +1 -1
- data/man/hub.1 +103 -108
- data/man/hub.1.html +116 -161
- data/man/hub.1.ronn +49 -31
- data/test/fakebin/git +5 -1
- data/test/helper.rb +11 -0
- data/test/hub_test.rb +188 -140
- metadata +10 -25
metadata
CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 1
|
7
|
-
-
|
8
|
-
-
|
9
|
-
version: 1.
|
7
|
+
- 5
|
8
|
+
- 0
|
9
|
+
version: 1.5.0
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Chris Wanstrath
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-
|
17
|
+
date: 2010-12-28 00:00:00 +01:00
|
18
18
|
default_executable:
|
19
19
|
dependencies: []
|
20
20
|
|
@@ -52,31 +52,15 @@ has_rdoc: true
|
|
52
52
|
homepage: http://github.com/defunkt/hub
|
53
53
|
licenses: []
|
54
54
|
|
55
|
-
post_install_message:
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
You there! Wait, I say!
|
60
|
-
=======================
|
61
|
-
|
62
|
-
If you are a heavy user of `git` on the command
|
63
|
-
line you may want to install `hub` the old
|
64
|
-
fashioned way. Faster startup time, you see.
|
65
|
-
|
66
|
-
Check out the installation instructions at
|
67
|
-
http://github.com/defunkt/hub#readme under the
|
68
|
-
"Standalone" section.
|
69
|
-
|
70
|
-
Cheers,
|
71
|
-
defunkt
|
72
|
-
|
73
|
-
------------------------------------------------------------
|
74
|
-
|
55
|
+
post_install_message: "\n\
|
56
|
+
------------------------------------------------------------\n\n You there! Wait, I say!\n =======================\n\n If you are a heavy user of `git` on the command\n line you may want to install `hub` the old\n fashioned way. Faster startup time, you see.\n\n Check out the installation instructions at\n http://github.com/defunkt/hub#readme under the\n \"Standalone\" section.\n\n Cheers,\n defunkt\n\n\
|
57
|
+
------------------------------------------------------------\n\n"
|
75
58
|
rdoc_options: []
|
76
59
|
|
77
60
|
require_paths:
|
78
61
|
- lib
|
79
62
|
required_ruby_version: !ruby/object:Gem::Requirement
|
63
|
+
none: false
|
80
64
|
requirements:
|
81
65
|
- - ">="
|
82
66
|
- !ruby/object:Gem::Version
|
@@ -84,6 +68,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
84
68
|
- 0
|
85
69
|
version: "0"
|
86
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
87
72
|
requirements:
|
88
73
|
- - ">="
|
89
74
|
- !ruby/object:Gem::Version
|
@@ -93,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
93
78
|
requirements: []
|
94
79
|
|
95
80
|
rubyforge_project:
|
96
|
-
rubygems_version: 1.3.
|
81
|
+
rubygems_version: 1.3.7
|
97
82
|
signing_key:
|
98
83
|
specification_version: 3
|
99
84
|
summary: hub introduces git to GitHub
|