git-process 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
- # CHANGELOG - 1.1.0 #
1
+ # CHANGELOG - 1.1.1 #
2
+
3
+ ### Since 1.1.0 ###
4
+
5
+ * Fixed scoping in "git-sync"
2
6
 
3
7
  ### Since 1.0.8 ###
4
8
 
data/bin/git-sync CHANGED
@@ -10,7 +10,7 @@ require 'git-process/git_lib'
10
10
 
11
11
 
12
12
  class SyncOptions
13
- include GitProcessOptions
13
+ include GitProc::GitProcessOptions
14
14
 
15
15
 
16
16
  def summary
data/bin/git-to-master CHANGED
@@ -130,5 +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
134
- puts opts.inspect
133
+ GitProc::RebaseToMaster.new(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 = 0
17
+ PATCH = 1
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: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 0
10
- version: 1.1.0
9
+ - 1
10
+ version: 1.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jim Moore