@@ -13,7 +13,9 @@ on updateProjectXmod(_project)
13
13
-- Iterate over every .xcdatamodel in the project.
14
14
set modelList to every file reference of _project whose file kind is " wrapper.xcdatamodel"
15
15
repeat with modelItr in modelList
16
- if comments of modelItr contains " xmod" then
16
+ set theComments to the comments of modelItr
17
+ if theComments contains " xmod" then
18
+
17
19
set modelInfo to my getModelInfo(full path of modelItr)
18
20
19
21
-- Figure out the model's parent group.
@@ -35,8 +37,20 @@ on updateProjectXmod(_project)
35
37
set modelSrcGroup to item 1 of (every item reference of modelGroupRef whose full path is (srcDirPath of modelInfo))
36
38
tell modelSrcGroup to delete every item reference -- clear it out for population in case we didn't just create it
37
39
40
+ -- Create the do shell script string and append any custom per model options to it
41
+ set theScript to " /usr/bin/mogenerator --model '" & full path of modelItr & " ' --output-dir '" & (srcDirPath of modelInfo) & " '"
42
+ set theParagraphs to every paragraph of theComments
43
+ repeat with theParagraph in theParagraphs
44
+ if (length of the characters of theParagraph) is greater than 2 then
45
+ set theToken to the first character of theParagraph & the second character of theParagraph
46
+ if theToken is " --" then
47
+ set theScript to theScript & " " & the text of theParagraph
48
+ end if
49
+ end if
50
+ end repeat
51
+
38
52
-- Meat.
39
- do shell script " /usr/bin/mogenerator --model ' " & full path of modelItr & " ' --output-dir ' " & (srcDirPath of modelInfo) & " ' "
53
+ do shell script theScript
40
54
41
55
-- Build a list of resulting source files.
42
56
tell application " System Events"
0 commit comments