-
Notifications
You must be signed in to change notification settings - Fork 395
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Breaks with transformable properties #89
Comments
Either of those commits resolve this issue, I'm currently running with changing the template for safety. :) |
Right you are, I intend to make transformable property class output smarter as detailed in #86 (comment) |
Hmm, github can't seem to reopen issues atm, so I can't reopen #86, so your issue will serve as a handy placeholder for the v1.25 milestone :) |
This issue isn't fixed in 1.25, correct? As well as #86 ? |
It's fixed, but I want to make it smarter. |
@rentzsch, I am still hit by the missing space on transformable attributes in 1.25. |
Same here, not using arc. Followed http://raptureinvenice.com/getting-started-with-mogenerator/ |
Are you sure you're using the latest templates? Please check against https://github.com/rentzsch/mogenerator/tree/master/templates Apparently if you upgraded via homebrew you don't get upgraded templates by default. |
No, Wolf, I just downloaded the 1.25 from here and installed it. For now, I fixed my template manually, following changes in Daniel's following commit: https://github.com/danielctull/mogenerator/commit/c51c7442e015d89e156ddcea2a7420e772515221 In fact, this very issue has 2 commits from Daniel to address this issue but looks like you didn't merge his proposed changes. |
Ah, I misunderstood the extent of the problem. Somehow I missed the broken codegen in test mule's |
Fixed in 1.26. |
At the moment transformable properties are being generated like as so
@property (nonatomic, strong) idcolor;
with no space between the type and identifier.Two solutions to this seem to be:
-objectAttributeType
to return@"id "
instead of@"id"
<$if Attribute.hasTransformableAttributeType$> <$endif$>
to add the spaceI'm not sure which it should be, I believe this is part of changes @robrix made, so I'm not sure what side affects changing the return from that method may cause.
The text was updated successfully, but these errors were encountered: