gemy 0.0.3 → 0.0.4
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/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
|