git-process 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/bin/git-new-fb CHANGED
@@ -55,4 +55,4 @@ DESC
55
55
  end
56
56
 
57
57
  opts = NewFeatureBranchOptions.new.parse_cli(File.basename(__FILE__), ARGV)
58
- NewFeatureBranch.new(GitLib.new('.', opts), opts).run
58
+ GitProc::NewFeatureBranch.new(GitProc::GitLib.new('.', opts), opts).run
data/bin/git-pull-request CHANGED
@@ -104,4 +104,4 @@ DESC
104
104
  end
105
105
 
106
106
  opts = PullRequestOptions.new.parse_cli(File.basename(__FILE__), ARGV)
107
- GitProc::PullRequest.new(GitLib.new('.', opts), opts).run
107
+ GitProc::PullRequest.new(GitProc::GitLib.new('.', opts), opts).run
data/bin/git-sync CHANGED
@@ -70,4 +70,4 @@ DESC
70
70
  end
71
71
 
72
72
  opts = SyncOptions.new.parse_cli(File.basename(__FILE__), ARGV)
73
- GitProc::Sync.new(GitLib.new('.', opts), opts).run
73
+ GitProc::Sync.new(GitProc::GitLib.new('.', opts), opts).run
data/bin/git-to-master CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require "rubygems"
4
- require "bundler/setup"
5
- $LOAD_PATH.unshift File.join(File.dirname(__FILE__), '../lib')
3
+ #require "rubygems"
4
+ #require "bundler/setup"
5
+ #$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '../lib')
6
6
 
7
7
  require 'git-process/git_process_options'
8
8
  require 'git-process/rebase_to_master'
@@ -130,4 +130,4 @@ DESC
130
130
  end
131
131
 
132
132
  opts = ToMasterOptions.new.parse_cli(File.basename(__FILE__), ARGV)
133
- GitProc::RebaseToMaster.new(GitLib.new('.', opts), opts).run
133
+ GitProc::RebaseToMaster.new(GitProc::GitLib.new('.', opts), opts).run
@@ -14,7 +14,7 @@ module GitProc
14
14
  module Version
15
15
  MAJOR = 1
16
16
  MINOR = 1
17
- PATCH = 1
17
+ PATCH = 2
18
18
  BUILD = nil
19
19
 
20
20
  STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-process
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 1
10
- version: 1.1.1
9
+ - 2
10
+ version: 1.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jim Moore