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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6cf46f045e6d318e334b3089a07dd110040a6c88
4
- data.tar.gz: db36b2b231f0b26cc7516c1b36715b72b5b44942
3
+ metadata.gz: 50ceb6be1bc62e8f96fa813a3fd85a5eac9379b6
4
+ data.tar.gz: 61be6df636ad3c64d889d1a7f18c29b84bdc1352
5
5
  SHA512:
6
- metadata.gz: abe07fd50a43871dc64bcf8d8005af413083beb885417cfd7e2f0d19ef966fbe8ae0e8447a4231f3a3312c4feaaffe03e381d7b56906d09c8a0894d058b4677a
7
- data.tar.gz: 8567de1aa0f2540500f6c4e7b86bab3ba8d11abe86c9f48a3ce0c7b4a961a36c65f294bf40023e57639982372d4354cb64215a3cc6feec2a8d017dda6e559c9f
6
+ metadata.gz: 0dfdf948ecbebc61dcf0a7738d33abad032eeb24ee077f743edb759757878aed3979db8e8d9dab395e86f44e8462acc1b8a4ab1b72524b014f2eb2132a07790f
7
+ data.tar.gz: 2955081a384ad30703193baa1adac4020d1bdda0a773156251e11ed9c3aa2f380b8c257d586e3e355cfb92de152e8f4b87f3d37105ae1f2fed837735308c6acf
data/README.md CHANGED
@@ -1,29 +1,33 @@
1
1
  # Gub
2
2
 
3
- TODO: Write a gem description
3
+ The missing Github Command Line Interface.
4
4
 
5
5
  ## Installation
6
6
 
7
- Add this line to your application's Gemfile:
7
+ Install Gub:
8
8
 
9
- gem 'gub'
10
-
11
- And then execute:
9
+ $ gem install gub
12
10
 
13
- $ bundle
11
+ If this is your first time, execute:
14
12
 
15
- Or install it yourself as:
16
-
17
- $ gem install gub
13
+ $ gub setup
18
14
 
19
15
  ## Usage
20
16
 
21
- TODO: Write usage instructions here
22
-
23
- ## Contributing
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
@@ -1,11 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
-
3
- debug = false
4
- if ENV.include?('GUB_ENV') && ENV['GUB_ENV'] == 'development'
5
- debug = true
6
- $:<< File.expand_path("~/Projects/gub/lib/")
7
- end
8
-
9
2
  require 'gub'
10
3
  # Start our command line interface
11
4
  Gub.start(debug)
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{Warning: Heavily Under Development, Still in early alpha}
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
@@ -7,12 +7,8 @@ module Gub
7
7
  class CLI < Thor
8
8
  include Thor::Actions
9
9
 
10
- default_task :version
10
+ default_task :help
11
11
 
12
- desc 'publish', 'Publish a local repo to Github'
13
- def publish
14
- end
15
-
16
12
  desc 'repos', 'List Github repositories'
17
13
  def repos
18
14
  rows = []
data/lib/gub/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Gub
2
- VERSION = "0.0.15"
2
+ VERSION = "0.1.0"
3
3
  end
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.15
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-09-30 00:00:00.000000000 Z
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: 'Warning: Heavily Under Development, Still in early alpha'
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: {}