gemy 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/bin/gemy +2 -2
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.4
|
data/bin/gemy
CHANGED
@@ -103,10 +103,10 @@ when 'install'
|
|
103
103
|
when 'push'
|
104
104
|
begin
|
105
105
|
ensure_clean(:push, options[:force])
|
106
|
-
versioned_name = "#{options[:name]}-#{
|
106
|
+
versioned_name = "#{options[:name]}-#{gem_version}.gem"
|
107
107
|
system %(gem build #{options[:name]}.gemspec)
|
108
108
|
system %(gem push #{versioned_name})
|
109
|
-
system %(git tag '#{
|
109
|
+
system %(git tag '#{gem_version}')
|
110
110
|
ensure
|
111
111
|
FileUtils.remove_entry_secure versioned_name, true
|
112
112
|
end
|