utilitypack 0.5.1 → 0.5.2

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.
Files changed (3) hide show
  1. data/Rakefile +5 -0
  2. data/lib/utility_pack/version.rb +1 -1
  3. metadata +2 -2
data/Rakefile CHANGED
@@ -88,6 +88,11 @@ task :install => [:package] do
88
88
  sh %{gem#{BAT} install pkg/#{PKG_NAME}-#{PKG_VERSION}}
89
89
  end
90
90
 
91
+ desc "push gem"
92
+ task :push => [:package] do
93
+ sh %{gem#{BAT} push pkg/#{PKG_NAME}-#{PKG_VERSION}.gem}
94
+ end
95
+
91
96
  desc "uninstalls gem"
92
97
  task :uninstall => [:clean] do
93
98
  sh %{#{SUDO} gem#{BAT} uninstall #{PKG_NAME} -x}
@@ -2,7 +2,7 @@ module UtilityPack
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 5
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 1
9
- version: 0.5.1
8
+ - 2
9
+ version: 0.5.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Brian Pfeil