technicalpickles-jeweler 0.5.1 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +2 -2
- data/lib/jeweler/release.rb +4 -1
- metadata +1 -1
data/VERSION.yml
CHANGED
data/lib/jeweler/release.rb
CHANGED
@@ -22,7 +22,10 @@ class Jeweler
|
|
22
22
|
|
23
23
|
protected
|
24
24
|
def any_pending_changes?
|
25
|
-
|
25
|
+
unless ENV['JEWELER_DEBUG'].nil? || ENV['JEWELER_DEBUG'].squeeze == ''
|
26
|
+
require 'ruby-debug'; breakpoint
|
27
|
+
end
|
28
|
+
!(@repo.status.added.empty? && @repo.status.deleted.empty? && @repo.status.changed.empty?)
|
26
29
|
end
|
27
30
|
end
|
28
31
|
end
|