thegarage-gitx 2.8.0 → 2.8.1
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/bin/git-buildtag +2 -1
- data/bin/git-cleanup +2 -1
- data/bin/git-integrate +2 -1
- data/bin/git-nuke +2 -1
- data/bin/git-release +2 -1
- data/bin/git-review +2 -1
- data/bin/git-reviewrequest +2 -1
- data/bin/git-share +2 -1
- data/bin/git-start +2 -1
- data/bin/git-track +2 -1
- data/bin/git-update +2 -1
- data/lib/thegarage/gitx/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: abb46a04e2a286ad90b7fa279739377e3b7eee3f
|
|
4
|
+
data.tar.gz: 606a6394ece6ec0fd541e7cbc11a54f6b6f18ac7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9f0ad5754e30707060cb640f7efafa2f45834f55f787793a84ffb837ea305722a86f674939ad6ea3df9402277e4abd1c345366b73078a657f41b4837104dd24f
|
|
7
|
+
data.tar.gz: 7f26067c170033a2c6d23eb4100e2da3d7d5ad5530205ccc4e89dfd1997c75de229706fe29c3f46b5e40139bd9e081701d5300b5ef81629b8760d50a6740d49a
|
data/bin/git-buildtag
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
|
4
|
+
require 'thegarage/gitx/cli/buildtag_command'
|
|
4
5
|
args = ARGV.dup.unshift('buildtag')
|
|
5
6
|
Thegarage::Gitx::Cli::BuildtagCommand.start(args)
|
data/bin/git-cleanup
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
|
4
|
+
require 'thegarage/gitx/cli/cleanup_command'
|
|
4
5
|
args = ARGV.dup.unshift('cleanup')
|
|
5
6
|
Thegarage::Gitx::Cli::CleanupCommand.start(args)
|
|
6
7
|
|
data/bin/git-integrate
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
|
4
|
+
require 'thegarage/gitx/cli/integrate_command'
|
|
4
5
|
args = ARGV.dup.unshift('integrate')
|
|
5
6
|
Thegarage::Gitx::Cli::IntegrateCommand.start(args)
|
data/bin/git-nuke
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
|
4
|
+
require 'thegarage/gitx/cli/nuke_command'
|
|
4
5
|
args = ARGV.dup.unshift('nuke')
|
|
5
6
|
Thegarage::Gitx::Cli::NukeCommand.start(args)
|
data/bin/git-release
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
|
4
|
+
require 'thegarage/gitx/cli/release_command'
|
|
4
5
|
args = ARGV.dup.unshift('release')
|
|
5
6
|
Thegarage::Gitx::Cli::ReleaseCommand.start(args)
|
data/bin/git-review
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
|
4
|
+
require 'thegarage/gitx/cli/review_command'
|
|
4
5
|
args = ARGV.dup.unshift('review')
|
|
5
6
|
Thegarage::Gitx::Cli::ReviewCommand.start(args)
|
data/bin/git-reviewrequest
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
puts 'WARNING: git reviewrequest has been deprecated. use `git review` instead'
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
|
6
|
+
require 'thegarage/gitx/cli/review_command'
|
|
6
7
|
args = ARGV.dup.unshift('review')
|
|
7
8
|
Thegarage::Gitx::Cli::ReviewCommand.start(args)
|
data/bin/git-share
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
|
4
|
+
require 'thegarage/gitx/cli/share_command'
|
|
4
5
|
args = ARGV.dup.unshift('share')
|
|
5
6
|
Thegarage::Gitx::Cli::ShareCommand.start(args)
|
data/bin/git-start
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
|
4
|
+
require 'thegarage/gitx/cli/start_command'
|
|
4
5
|
args = ARGV.dup.unshift('start')
|
|
5
6
|
Thegarage::Gitx::Cli::StartCommand.start(args)
|
data/bin/git-track
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
|
4
|
+
require 'thegarage/gitx/cli/track_command'
|
|
4
5
|
args = ARGV.dup.unshift('track')
|
|
5
6
|
Thegarage::Gitx::Cli::TrackCommand.start(args)
|
data/bin/git-update
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
|
4
|
+
require 'thegarage/gitx/cli/update_command'
|
|
4
5
|
args = ARGV.dup.unshift('update')
|
|
5
6
|
Thegarage::Gitx::Cli::UpdateCommand.start(args)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: thegarage-gitx
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.8.
|
|
4
|
+
version: 2.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Sonnek
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-10
|
|
11
|
+
date: 2014-12-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rugged
|