I installed Mogenerator. Now what do I do? How do I use it?

The first problem I have is that I have no idea where it was installed to. During the install process, it only let me select the hard drive to install it on, not the directory. The most natural location would be the Applications folder, but it isn't there.

Next, the readme (which I found online) states:

Xmo'd works by noticing when your *.xcdatamodel is saved. If the model file's Xcode project item comment contains xmod, an AppleScript is fired that creates a folder based on your model's file name and populates it with derived source code files from your model. It then adds the new folder to your project as a Group Reference and adds all the source files to your project.

There are several issues with the above statement that aren't clear:

  • What does "the model file's Xcode project item comment" refer to? How can I make it contain "xmod"?
  • Is adding this comment and having mogenerator monitor the .xcdatamodel file the only way to use mogenerator? Is there any way I can manually run mogenerator so that it recreates the generated files?
link|improve this question

79% accept rate
feedback

4 Answers

up vote 8 down vote accepted

mogenerator is a script that is installed into your developer directory as I recall. However it might be installed into the Xcode scripts directory under your ~/Library.

What do you mean by manually triggering the application? You can trigger a build by "touching" the data model. Any save on the data model will trigger the build

In Xcode if you select the model file and hit ⌘I you will get its metadata. Click on the comments tab and add xmod there. mogenerator looks for that comment to know if it should generate files.

Update

You can run mogenerator from the command line as well as have it monitor your files. Type mogenerator --help in the Terminal to see the options.

link|improve this answer
I updated that part to hopefully be more clear. Thanks for the answer. – Senseful Aug 25 '10 at 6:01
Answer updated. – Marcus S. Zarra Aug 25 '10 at 6:13
Thanks for the update. – Senseful Aug 25 '10 at 6:29
feedback

One more caveat to be aware of: You have to already set the Class properties of your entities to something different than NSManagedObject. Otherwise Xmo'd won't do anything.

Note: Xmo'd currently doesn't work with Xcode 4, afaik.

link|improve this answer
I think you accidently a word. – Regexident Jan 16 '11 at 16:35
Thanks! This sentence no verb. – Johannes Fahrenkrug Jan 17 '11 at 19:06
Thank you for this. This was the solution to my inability to get mogenerator to work. When creating a new entity in the .xcdatamodel file, you have to remember to set Class in addition to the Name; normally XCode fills it in automatically when you generate the class files I think. – Chase Johnson Mar 7 '11 at 16:55
This saved me some time. I can't find any documentation that tells you this. – brian Mar 16 '11 at 19:20
Note: Xmo'd currently doesn't work with Xcode 4, afaik. – Johannes Fahrenkrug Jul 11 '11 at 13:30
feedback

I searched my hard drive and found the following files:

The application is installed to: /usr/bin/mogenerator.

The /Library/Application Support/mogenerator/ directory contains some .motemplate files.

link|improve this answer
feedback

Studying line 22 of make_installer.command, I found that /Developer/Library/Xcode/Plug-ins/Xmod.pbplugin is also installed.

And then, searching mogenerator GitHub Issues for "uninstall," I found official instructions on how to uninstall mogenerator from the creator himself.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.