technicalpickles-jeweler 0.5.1 → 0.6.0
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 +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
|