hoe-telicopter 0.1.8 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/hoe/hotelicutter.rb +1 -3
- data/lib/hoe/telicopter.rb +1 -1
- metadata +1 -1
data/lib/hoe/hotelicutter.rb
CHANGED
@@ -29,13 +29,11 @@ module Hoe::Hotelicutter
|
|
29
29
|
|
30
30
|
gems.each do |g|
|
31
31
|
new_name = "#{File.dirname(g)}/#{GEM_PREFIX}-#{File.basename(g)}"
|
32
|
-
puts "old name: #{g}" # TODO: remove
|
33
|
-
puts "new name: #{new_name}" # TODO: remove
|
34
32
|
# pre-append the prefix before publishing
|
35
33
|
File.rename(g, new_name)
|
36
34
|
# TODO - once gemcutter supports command invocation, use it.
|
37
35
|
# We could still fail here due to --format executable
|
38
|
-
|
36
|
+
sh Gem.ruby, "-S", "gem", "push", new_name
|
39
37
|
end
|
40
38
|
end
|
41
39
|
|
data/lib/hoe/telicopter.rb
CHANGED