git_utils 1.0.5 → 1.0.6

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.
data/bin/gem_publish.sh CHANGED
@@ -6,6 +6,6 @@ gem build ./*.gemspec &&
6
6
  gem push ./*.gem
7
7
  rm *.gem;
8
8
 
9
- sleep 10;
9
+ sleep 30;
10
10
 
11
11
  ls *.gemspec | sed 's/.gemspec$//g' | xargs gem install
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.5"
8
+ s.version = "1.0.6"
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.5'
2
+ VERSION = '1.0.6'
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: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 5
10
- version: 1.0.5
9
+ - 6
10
+ version: 1.0.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Glenn Nagel