thegarage-gitx 2.8.0 → 2.8.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 10f4e21a3805920b5ca93946c11e56ef001efe97
4
- data.tar.gz: d9aadf889e5fb72ff04eea5a038415b1c7de1f82
3
+ metadata.gz: abb46a04e2a286ad90b7fa279739377e3b7eee3f
4
+ data.tar.gz: 606a6394ece6ec0fd541e7cbc11a54f6b6f18ac7
5
5
  SHA512:
6
- metadata.gz: bfd973230ab08b57c6dca5d53af1be8ba7b82f043ee17f03ef9aa58496f53c52592035143194015a89de3be1fb42d8f97b3e9b1c66687cb4325a3c29fd26588c
7
- data.tar.gz: c955f5f81ad7adca14b84537f64b0d7fefa6e02d88243e00c4fe1a57f2188d3e0f345635ad0a016c4b53e3653da2b4df3b6fe358b2b3ab34bf1dae92b9cf4c60
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
- require File.join(File.dirname(__FILE__), '..', 'lib', 'thegarage/gitx/cli', 'buildtag_command.rb')
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
- require File.join(File.dirname(__FILE__), '..', 'lib', 'thegarage/gitx/cli', 'cleanup_command.rb')
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
- require File.join(File.dirname(__FILE__), '..', 'lib', 'thegarage/gitx/cli', 'integrate_command.rb')
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
- require File.join(File.dirname(__FILE__), '..', 'lib', 'thegarage/gitx/cli', 'nuke_command.rb')
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
- require File.join(File.dirname(__FILE__), '..', 'lib', 'thegarage/gitx/cli', 'release_command.rb')
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
- require File.join(File.dirname(__FILE__), '..', 'lib', 'thegarage/gitx/cli', 'review_command.rb')
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)
@@ -2,6 +2,7 @@
2
2
 
3
3
  puts 'WARNING: git reviewrequest has been deprecated. use `git review` instead'
4
4
 
5
- require File.join(File.dirname(__FILE__), '..', 'lib', 'thegarage/gitx/cli', 'review_command.rb')
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
- require File.join(File.dirname(__FILE__), '..', 'lib', 'thegarage/gitx/cli', 'share_command.rb')
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
- require File.join(File.dirname(__FILE__), '..', 'lib', 'thegarage/gitx/cli', 'start_command.rb')
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
- require File.join(File.dirname(__FILE__), '..', 'lib', 'thegarage/gitx/cli', 'track_command.rb')
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
- require File.join(File.dirname(__FILE__), '..', 'lib', 'thegarage/gitx/cli', 'update_command.rb')
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)
@@ -1,5 +1,5 @@
1
1
  module Thegarage
2
2
  module Gitx
3
- VERSION = '2.8.0'
3
+ VERSION = '2.8.1'
4
4
  end
5
5
  end
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.0
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-17 00:00:00.000000000 Z
11
+ date: 2014-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rugged