bakeConv 1.5.0 → 1.5.1
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 +8 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d514ab29aeb5b2d257e3748874bf7d847b6d86f
|
4
|
+
data.tar.gz: 32f1ac395e2cd6360d40e9d86c6caea9c67aff32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fedc364fe23b42767c836ccb65cffe3277bce80ce2d87a720c22037c9759a8c49e0db6202cab436708875d96a04edddcb979d7170ffaa9e3f38aaec524ba32a1
|
7
|
+
data.tar.gz: 6de485f3eabfeb6c615b7f1df5d3b1cb5dfd56ebdbb04939db370368d065a9c4774434f95cd45dc8289b35466932ac98a132c7646f401b5db552a4a8d3b74e72
|
data/lib/Version.rb
CHANGED
data/lib/bakeConverter.rb
CHANGED
@@ -24,10 +24,14 @@ def main
|
|
24
24
|
mapConverted = 0
|
25
25
|
|
26
26
|
begin
|
27
|
+
if ARGV[0] == "--debug"
|
28
|
+
ARGV.rotate!
|
29
|
+
end
|
30
|
+
|
27
31
|
args = ARGV.select.each_with_index{|str, i| i.even? && str[0] == "-"}
|
28
|
-
opts = ARGV.select.each_with_index{|str, i| i.odd? && str[0] != "-"}
|
32
|
+
opts = ARGV.select.each_with_index { |str, i| i.odd? && str[0] != "-" }
|
29
33
|
|
30
|
-
|
34
|
+
puts Hash[(args.zip opts)]
|
31
35
|
|
32
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"
|
33
37
|
if (!ARGV.include?("-f") && !ARGV.include?("--file")) && ARGV.length != 0
|
@@ -101,6 +105,8 @@ def main
|
|
101
105
|
configFile = converterConfigFile.gsub('\\','/')
|
102
106
|
cfgFleFromCmdLne = cfgFleFromCmdLne.gsub('\\','/')
|
103
107
|
|
108
|
+
puts "cfgFle: #{cfgFleFromCmdLne}"
|
109
|
+
|
104
110
|
#-------------------------------------------------------
|
105
111
|
# Starting converting process:
|
106
112
|
#-------------------------------------------------------
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bakeConv
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Frauke Blossey
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-10-
|
11
|
+
date: 2015-10-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: launchy
|