sushi_fabric 0.0.9 → 0.1.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/lib/sushi_fabric/sushiApp.rb +1 -3
- data/lib/sushi_fabric/version.rb +1 -1
- metadata +1 -1
@@ -1,6 +1,6 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
# encoding: utf-8
|
3
|
-
# Version = '20131128-
|
3
|
+
# Version = '20131128-161947'
|
4
4
|
|
5
5
|
require 'csv'
|
6
6
|
require 'fileutils'
|
@@ -425,7 +425,6 @@ rm -rf #{@scratch_dir} || exit 1
|
|
425
425
|
@job_scripts << @job_script
|
426
426
|
@result_dataset << next_dataset
|
427
427
|
end
|
428
|
-
=begin
|
429
428
|
def save_data_set(data_set_arr, headers, rows)
|
430
429
|
data_set_hash = Hash[*data_set_arr]
|
431
430
|
if project = Project.find_by_number(data_set_hash['ProjectNumber'].to_i)
|
@@ -459,7 +458,6 @@ rm -rf #{@scratch_dir} || exit 1
|
|
459
458
|
data_set.id
|
460
459
|
end
|
461
460
|
end
|
462
|
-
=end
|
463
461
|
def run
|
464
462
|
test_run
|
465
463
|
|
data/lib/sushi_fabric/version.rb
CHANGED