hub 1.7.0 → 1.8.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 +0 -1
- data/lib/hub.rb +1 -0
- data/lib/hub/commands.rb +113 -92
- data/lib/hub/context.rb +155 -20
- data/lib/hub/json.rb +76 -0
- data/lib/hub/version.rb +1 -1
- data/man/hub.1 +43 -3
- data/man/hub.1.html +24 -3
- data/man/hub.1.ronn +20 -2
- data/test/hub_test.rb +213 -42
- metadata +4 -3
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2012-01-03 00:00:00.000000000 Z
|
14
14
|
dependencies: []
|
15
15
|
description: ! " `hub` is a command line utility which adds GitHub knowledge to `git`.\n\n
|
16
16
|
\ It can used on its own or as a `git` wrapper.\n\n Normal:\n\n $ hub clone
|
@@ -29,6 +29,7 @@ files:
|
|
29
29
|
- lib/hub/args.rb
|
30
30
|
- lib/hub/commands.rb
|
31
31
|
- lib/hub/context.rb
|
32
|
+
- lib/hub/json.rb
|
32
33
|
- lib/hub/runner.rb
|
33
34
|
- lib/hub/standalone.rb
|
34
35
|
- lib/hub/version.rb
|
@@ -69,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
70
|
version: '0'
|
70
71
|
requirements: []
|
71
72
|
rubyforge_project:
|
72
|
-
rubygems_version: 1.8.
|
73
|
+
rubygems_version: 1.8.12
|
73
74
|
signing_key:
|
74
75
|
specification_version: 3
|
75
76
|
summary: Command-line wrapper for git and GitHub
|