git_utils 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
data/bin/gem_publish.sh CHANGED
@@ -1,5 +1,7 @@
1
1
  #!/bin/bash
2
2
 
3
+ ./git_commit.sh "Releasing gem version $(cat VERSION)"
4
+
3
5
  rm *.gem;
4
6
  rake gemspec:generate &&
5
7
  gem build ./*.gemspec &&
data/git_utils.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{git_utils}
8
- s.version = "1.0.6"
8
+ s.version = "1.0.7"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = [%q{Glenn Nagel}]
data/lib/git_utils.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module GitUtils
2
- VERSION = '1.0.6'
2
+ VERSION = '1.0.7'
3
3
 
4
4
  ###
5
5
  # Overwrite the Manifest.txt file with the actual contents of this directory
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git_utils
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 6
10
- version: 1.0.6
9
+ - 7
10
+ version: 1.0.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - Glenn Nagel