furion 1.0.8 → 1.0.8.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/bin/furion +1 -1
- data/lib/furion/file_editor.rb +0 -7
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: de60f21eaebb24d12a94110b907696c0b7dbc9bb308deb5fadabad1ff02d5b69
|
4
|
+
data.tar.gz: 699bb862f947c0c92e4a76cec7b5a8eaa25ff041449b90c50219365091fed69f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8ef667dcb984fddb8570c61c3bb524bd6f9fb6ee6d5c303e4018b8a556b33bb789a278117fddf74f5630001af5af3ef239e8d3e67f0abfe3b7b8d3ee690936a
|
7
|
+
data.tar.gz: 94aa38483bb12907c0e6bd0a8a4af8a91b9ad52c8306239cddb704087a9688f9612f8b2b1f7bff5e9e5c7bc924c905c27fe7aed3166f22ce3026270a5de6e34b
|
data/bin/furion
CHANGED
data/lib/furion/file_editor.rb
CHANGED
@@ -49,7 +49,6 @@ class FileEditor
|
|
49
49
|
# end
|
50
50
|
|
51
51
|
if line =~ /target +'#{projName}'/
|
52
|
-
puts "target "+projName
|
53
52
|
out.puts " loadFurionConfigPod()"
|
54
53
|
end
|
55
54
|
end
|
@@ -78,7 +77,6 @@ class FileEditor
|
|
78
77
|
keys = wrapperSDKDict.keys()
|
79
78
|
keys.insert(0,"commonCode")
|
80
79
|
keys.append("finnalInit")
|
81
|
-
puts keys
|
82
80
|
targetFilePath = ""
|
83
81
|
Find.find(Dir::pwd) do |path|
|
84
82
|
if path.end_with? "AppDelegate.m"
|
@@ -124,7 +122,6 @@ class FileEditor
|
|
124
122
|
if line =~ /\#Furion\#start-/
|
125
123
|
target = getTagFromExampleStartLabel(line)
|
126
124
|
if keys.include?(target)
|
127
|
-
puts "start recording"+target
|
128
125
|
inRecording = true
|
129
126
|
end
|
130
127
|
end
|
@@ -152,10 +149,6 @@ class FileEditor
|
|
152
149
|
end
|
153
150
|
|
154
151
|
def self.getTagFromExampleStartLabel(codeString)
|
155
|
-
# #Furion#start-[paramInit_common]
|
156
|
-
# removePre = codeString.tr("#Furion#start-[paramInit_", "")
|
157
|
-
# removeTail = removePre.tr("]","")
|
158
|
-
puts codeString.length
|
159
152
|
target = codeString[25,(codeString.length - 27)]
|
160
153
|
return target
|
161
154
|
end
|