lib/gemfury/error.rb in gemfury-0.4.2 vs lib/gemfury/error.rb in gemfury-0.4.3.rc

- old
+ new

@@ -11,6 +11,9 @@ # Client is not allowed to perform this operation Forbidden = Class.new(Error) # Returned if something is not found NotFound = Class.new(Error) + + # Corrupt Gem File + CorruptGemFile = Class.new(Error) end