technicalpickles-jeweler 0.10.1 → 0.10.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.
- data/VERSION.yml +1 -1
- data/lib/jeweler/tasks.rb +3 -1
- metadata +1 -1
data/VERSION.yml
CHANGED
data/lib/jeweler/tasks.rb
CHANGED
@@ -94,8 +94,10 @@ class Jeweler
|
|
94
94
|
@jeweler.release_gem_to_rubyforge
|
95
95
|
rescue NoRubyForgeProjectInGemspecError => e
|
96
96
|
abort "Setting up RubyForge requires that you specify a 'rubyforge_project' in your Jeweler::Tasks declaration"
|
97
|
+
rescue MissingRubyForgePackageError => e
|
98
|
+
abort "Rubyforge reported that the #{e.message} package isn't setup. Run rake rubyforge:setup to do so."
|
97
99
|
rescue RubyForgeProjectNotConfiguredError => e
|
98
|
-
abort "
|
100
|
+
abort "RubyForge reported that #{e.message} wasn't configured. This means you need to run 'rubyforge setup', 'rubyforge login', and 'rubyforge configure', or maybe the project doesn't exist on RubyForge"
|
99
101
|
end
|
100
102
|
end
|
101
103
|
end
|