tax_generator 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +1 -1
- data/lib/tax_generator/classes/processor.rb +1 -1
- data/lib/tax_generator/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0e429dc730d08412a3cfc1722c7a3a34a040f10d
|
4
|
+
data.tar.gz: 1524eab039942a1289af54266369805d26203744
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f01aeff0e8c4bfac118deb05e42b8f02d370c30697a24e613fb847f43a8523f9e0d727b6ac2123b637cb099d1e7a682d8ce0efc867be82e843d4c3713e1a60b
|
7
|
+
data.tar.gz: 170a43c99f43eb00e6fa5952d973ceb3d6eac4ea0e7c0054fa6c549a5a30e95087e789e625e0e9b23b337dbc1124a0341a4bcaa17f0f6cf2151caf4cb45657f0
|
data/Rakefile
CHANGED
@@ -22,5 +22,5 @@ task default: [:all]
|
|
22
22
|
|
23
23
|
desc 'Test the plugin under all supported Rails versions.'
|
24
24
|
task :all do |_t|
|
25
|
-
exec('bundle exec rubocop . && bundle exec inch --pedantic && bundle exec yard && bundle exec rake spec')
|
25
|
+
exec('bundle exec rubocop . && bundle exec inch --pedantic && bundle exec yard stats --list-undoc && bundle exec rake spec')
|
26
26
|
end
|
@@ -200,6 +200,7 @@ module TaxGenerator
|
|
200
200
|
def generate_files
|
201
201
|
jobs = fetch_file_jobs
|
202
202
|
delegate_job(*jobs)
|
203
|
+
wait_jobs_termination
|
203
204
|
end
|
204
205
|
|
205
206
|
# retrieves the information about the node from the tree and generates for each destination a new File
|
@@ -245,7 +246,6 @@ module TaxGenerator
|
|
245
246
|
@taxonomy = TaxGenerator::TaxonomyTree.new(taxonomy_file_path)
|
246
247
|
@taxonomy.print_tree
|
247
248
|
generate_files
|
248
|
-
wait_jobs_termination
|
249
249
|
else
|
250
250
|
log_message('Please provide valid options', log_method: 'fatal')
|
251
251
|
end
|