bakeConv 1.5.1 → 1.5.2
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 +4 -4
- data/lib/Version.rb +1 -1
- data/lib/bakeConverter.rb +2 -5
- 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: ccaf42df2dd2839f2b59740ac7709eb6002326f0
|
4
|
+
data.tar.gz: bea04047131fca20b5fe52d41e1fc6b96972b016
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c1d6e7bce4bc0087356ec68c66601beafb89f4eba369fafd532dcb7c7c2b5882cc4be5a1843eb73b07ebf817349093fa1981fce0e0e365447499f173f08206a
|
7
|
+
data.tar.gz: 2670d654360ed1456282c7d8632dba4e90ee896a4aeeab40d1ad341f2e5779c145d497c64e1e4168199322b5de274995be280138cf88522a395d9392f132cd80
|
data/lib/Version.rb
CHANGED
data/lib/bakeConverter.rb
CHANGED
@@ -31,7 +31,7 @@ def main
|
|
31
31
|
args = ARGV.select.each_with_index{|str, i| i.even? && str[0] == "-"}
|
32
32
|
opts = ARGV.select.each_with_index { |str, i| i.odd? && str[0] != "-" }
|
33
33
|
|
34
|
-
puts Hash[(args.zip opts)]
|
34
|
+
#puts Hash[(args.zip opts)]
|
35
35
|
|
36
36
|
if ARGV[0] != "--help" && ARGV[0] != "-h" && ARGV[0] != "--show_doc" && ARGV[0] != "--version" && ARGV[0] != "-v" && ARGV[0] != "--show_license" && ARGV[0] != "--mock"
|
37
37
|
if (!ARGV.include?("-f") && !ARGV.include?("--file")) && ARGV.length != 0
|
@@ -103,10 +103,7 @@ def main
|
|
103
103
|
end
|
104
104
|
|
105
105
|
configFile = converterConfigFile.gsub('\\','/')
|
106
|
-
cfgFleFromCmdLne = cfgFleFromCmdLne.gsub('\\','/')
|
107
|
-
|
108
|
-
puts "cfgFle: #{cfgFleFromCmdLne}"
|
109
|
-
|
106
|
+
cfgFleFromCmdLne = cfgFleFromCmdLne.gsub('\\','/')
|
110
107
|
#-------------------------------------------------------
|
111
108
|
# Starting converting process:
|
112
109
|
#-------------------------------------------------------
|