gub 0.0.15 → 0.1.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.
- checksums.yaml +4 -4
- data/README.md +21 -17
- data/bin/gub +0 -7
- data/gub.gemspec +2 -2
- data/lib/gub/cli.rb +1 -5
- data/lib/gub/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 50ceb6be1bc62e8f96fa813a3fd85a5eac9379b6
|
4
|
+
data.tar.gz: 61be6df636ad3c64d889d1a7f18c29b84bdc1352
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0dfdf948ecbebc61dcf0a7738d33abad032eeb24ee077f743edb759757878aed3979db8e8d9dab395e86f44e8462acc1b8a4ab1b72524b014f2eb2132a07790f
|
7
|
+
data.tar.gz: 2955081a384ad30703193baa1adac4020d1bdda0a773156251e11ed9c3aa2f380b8c257d586e3e355cfb92de152e8f4b87f3d37105ae1f2fed837735308c6acf
|
data/README.md
CHANGED
@@ -1,29 +1,33 @@
|
|
1
1
|
# Gub
|
2
2
|
|
3
|
-
|
3
|
+
The missing Github Command Line Interface.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
|
-
|
7
|
+
Install Gub:
|
8
8
|
|
9
|
-
gem
|
10
|
-
|
11
|
-
And then execute:
|
9
|
+
$ gem install gub
|
12
10
|
|
13
|
-
|
11
|
+
If this is your first time, execute:
|
14
12
|
|
15
|
-
|
16
|
-
|
17
|
-
$ gem install gub
|
13
|
+
$ gub setup
|
18
14
|
|
19
15
|
## Usage
|
20
16
|
|
21
|
-
|
22
|
-
|
23
|
-
|
17
|
+
List all available commands:
|
18
|
+
|
19
|
+
$ gub help
|
20
|
+
Commands:
|
21
|
+
gub add_upstream # Add repo upstream
|
22
|
+
gub clone [repo] # Clone a Github repository
|
23
|
+
gub finish [id] # Finish working on a Github issue
|
24
|
+
gub help [COMMAND] # Describe available commands or one specific command
|
25
|
+
gub info # Show current respository information
|
26
|
+
gub issue [id] # Show a Github issue
|
27
|
+
gub issues # List Github issues
|
28
|
+
gub repos # List Github repositories
|
29
|
+
gub setup # Setup Gub for the first time
|
30
|
+
gub start [id] # Start working on a Github issue
|
31
|
+
gub sync # Synchronize fork with upstream repository
|
32
|
+
gub version # Show Gub version
|
24
33
|
|
25
|
-
1. Fork it
|
26
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
-
5. Create new Pull Request
|
data/bin/gub
CHANGED
data/gub.gemspec
CHANGED
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = Gub::VERSION
|
9
9
|
spec.authors = ["Omar Abdel-Wahab"]
|
10
10
|
spec.email = ["owahab@gmail.com"]
|
11
|
-
spec.description = %q{
|
11
|
+
spec.description = %q{The missing command line tool for Github}
|
12
12
|
spec.summary = %q{The missing command line tool for Github}
|
13
|
-
spec.homepage = ""
|
13
|
+
spec.homepage = "http://github.com/owahab/gub"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
data/lib/gub/cli.rb
CHANGED
data/lib/gub/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Omar Abdel-Wahab
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-10-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -108,7 +108,7 @@ dependencies:
|
|
108
108
|
- - '>='
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
|
-
description:
|
111
|
+
description: The missing command line tool for Github
|
112
112
|
email:
|
113
113
|
- owahab@gmail.com
|
114
114
|
executables:
|
@@ -134,7 +134,7 @@ files:
|
|
134
134
|
- lib/gub/repository.rb
|
135
135
|
- lib/gub/setup.rb
|
136
136
|
- lib/gub/version.rb
|
137
|
-
homepage:
|
137
|
+
homepage: http://github.com/owahab/gub
|
138
138
|
licenses:
|
139
139
|
- MIT
|
140
140
|
metadata: {}
|