gub 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -16
  3. data/bin/gub +3 -0
  4. data/lib/gub/version.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 50ceb6be1bc62e8f96fa813a3fd85a5eac9379b6
4
- data.tar.gz: 61be6df636ad3c64d889d1a7f18c29b84bdc1352
3
+ metadata.gz: 072a3b63a77778a8d2f979c9f4d6d615c8ea3a77
4
+ data.tar.gz: 8facd31ac70710e31b364c474b0c490dec99f26f
5
5
  SHA512:
6
- metadata.gz: 0dfdf948ecbebc61dcf0a7738d33abad032eeb24ee077f743edb759757878aed3979db8e8d9dab395e86f44e8462acc1b8a4ab1b72524b014f2eb2132a07790f
7
- data.tar.gz: 2955081a384ad30703193baa1adac4020d1bdda0a773156251e11ed9c3aa2f380b8c257d586e3e355cfb92de152e8f4b87f3d37105ae1f2fed837735308c6acf
6
+ metadata.gz: d871b22b656b16454ba840246a6aabf4f1bb867118b32d019604f44f0c17d427b0ef6a6d763c86a7b692b66bfa151f565dba26150ae2d790ececbe9baa44c85a
7
+ data.tar.gz: 6e1bea14e32327df9ad57507c5d61b2a48c03dc5bfcbc33d8d704151c23c55ff64894e3ce7bfd2868d8416e59a3902ce3324e9939404df29902d344af3145bd6
data/README.md CHANGED
@@ -14,20 +14,11 @@ If this is your first time, execute:
14
14
 
15
15
  ## Usage
16
16
 
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
17
+ Please see the [wiki][] for basic usage and other documentation on using Gub.
33
18
 
19
+ [wiki]: https://github.com/owahab/gub/wiki
20
+
21
+ ## License
22
+ Released under the MIT [LICENSE][].
23
+
24
+ [license]: LICENSE.md
data/bin/gub CHANGED
@@ -1,4 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
+
3
+ debug = false
4
+
2
5
  require 'gub'
3
6
  # Start our command line interface
4
7
  Gub.start(debug)
data/lib/gub/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Gub
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Omar Abdel-Wahab