Skip to content

Commit 5c0c379

Browse files
committed
[NEW] Xmo'd: model comments that start with -- are passed as args to mogenerator (David LeBer)
i.e: Comments that look like: xmod --base-class 'MYMOBase' Blah blah, other comments, etc blah Will result in: do shell script /usr/bin/mogenerator --model 'PATH_TO_MODEL' --output-dir 'OUTPUT_PATH' --base-class 'MYMOBase'
1 parent 6bbe218 commit 5c0c379

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

Xmod/Xmod.applescript

+16-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ on updateProjectXmod(_project)
1313
-- Iterate over every .xcdatamodel in the project.
1414
set modelList to every file reference of _project whose file kind is "wrapper.xcdatamodel"
1515
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+
1719
set modelInfo to my getModelInfo(full path of modelItr)
1820

1921
-- Figure out the model's parent group.
@@ -35,8 +37,20 @@ on updateProjectXmod(_project)
3537
set modelSrcGroup to item 1 of (every item reference of modelGroupRef whose full path is (srcDirPath of modelInfo))
3638
tell modelSrcGroup to delete every item reference -- clear it out for population in case we didn't just create it
3739

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+
3852
-- Meat.
39-
do shell script "/usr/bin/mogenerator --model '" & full path of modelItr & "' --output-dir '" & (srcDirPath of modelInfo) & "'"
53+
do shell script theScript
4054

4155
-- Build a list of resulting source files.
4256
tell application "System Events"

0 commit comments

Comments
 (0)