hub 1.6.1 → 1.7.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.
Potentially problematic release.
This version of hub might be problematic. Click here for more details.
- data/README.md +94 -60
- data/Rakefile +74 -38
- data/lib/hub/args.rb +16 -3
- data/lib/hub/commands.rb +340 -101
- data/lib/hub/context.rb +270 -112
- data/lib/hub/runner.rb +4 -2
- data/lib/hub/standalone.rb +13 -7
- data/lib/hub/version.rb +1 -1
- data/man/hub.1 +162 -80
- data/man/hub.1.html +163 -96
- data/man/hub.1.ronn +84 -167
- data/test/alias_test.rb +0 -1
- data/test/helper.rb +8 -8
- data/test/hub_test.rb +395 -71
- data/test/standalone_test.rb +0 -1
- metadata +8 -6
data/test/standalone_test.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Chris Wanstrath
|
9
|
+
- Mislav Marohnić
|
9
10
|
autorequire:
|
10
11
|
bindir: bin
|
11
12
|
cert_chain: []
|
12
|
-
date: 2011-
|
13
|
+
date: 2011-11-24 00:00:00.000000000 Z
|
13
14
|
dependencies: []
|
14
15
|
description: ! " `hub` is a command line utility which adds GitHub knowledge to `git`.\n\n
|
15
16
|
\ It can used on its own or as a `git` wrapper.\n\n Normal:\n\n $ hub clone
|
@@ -43,13 +44,13 @@ files:
|
|
43
44
|
- test/helper.rb
|
44
45
|
- test/hub_test.rb
|
45
46
|
- test/standalone_test.rb
|
46
|
-
homepage:
|
47
|
+
homepage: https://github.com/defunkt/hub
|
47
48
|
licenses: []
|
48
49
|
post_install_message: ! "\n------------------------------------------------------------\n\n
|
49
50
|
\ You there! Wait, I say!\n =======================\n\n
|
50
51
|
\ If you are a heavy user of `git` on the command\n line you may want
|
51
52
|
\ to install `hub` the old\n fashioned way. Faster startup time, you
|
52
|
-
see.\n\n Check out the installation instructions at\n
|
53
|
+
see.\n\n Check out the installation instructions at\n https://github.com/defunkt/hub#readme
|
53
54
|
\ under the\n \"Standalone\" section.\n\n Cheers,\n defunkt\n\n------------------------------------------------------------\n\n"
|
54
55
|
rdoc_options: []
|
55
56
|
require_paths:
|
@@ -68,8 +69,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
69
|
version: '0'
|
69
70
|
requirements: []
|
70
71
|
rubyforge_project:
|
71
|
-
rubygems_version: 1.8.
|
72
|
+
rubygems_version: 1.8.11
|
72
73
|
signing_key:
|
73
74
|
specification_version: 3
|
74
|
-
summary:
|
75
|
+
summary: Command-line wrapper for git and GitHub
|
75
76
|
test_files: []
|
77
|
+
has_rdoc:
|