tax_generator 0.0.3 → 0.0.4
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5bd5469428f87b51915700733e12b7827d0d5801
|
4
|
+
data.tar.gz: 9687d5a0379c8ad2b07faa529a358af5f0648474
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7659555826846aebc171616539fce3158b6bbefe9315d2562459793b18ab9987092607df1ac5cb6b727dc5c9b2c681647293137ad46b9cd38a94b22a66c20a9b
|
7
|
+
data.tar.gz: 509dc989e9a7f555368e28531b5f5e33fa2a7821efcf946c2896c90f522f859b41b9f89faa47c70088b97ea5fcfdb4e4d13785566edb63f0202e75fc79afc5f5
|
@@ -83,7 +83,7 @@ module TaxGenerator
|
|
83
83
|
def mark_job_completed
|
84
84
|
@processor.jobs[@job_id]['status'] = 'finished'
|
85
85
|
return if !@processor.alive? || !@processor.all_workers_finished?
|
86
|
-
@processor.condition.signal('completed')
|
86
|
+
@processor.condition.signal('completed')
|
87
87
|
end
|
88
88
|
|
89
89
|
# fetches the details needed to be passed to the erb template
|
@@ -1,4 +1,9 @@
|
|
1
|
-
Celluloid::
|
2
|
-
|
1
|
+
Celluloid::Logger::WithBacktrace.class_eval do
|
2
|
+
alias_method :original_decorate, :decorate
|
3
|
+
|
4
|
+
def decorate(string)
|
5
|
+
return if string.include?('signaled spuriously')
|
6
|
+
original_decorate(string)
|
7
|
+
end
|
3
8
|
|
4
9
|
end
|