-
Notifications
You must be signed in to change notification settings - Fork 464
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
Add support for adding subprojects #172
Conversation
Add support for adding subprojects
# Converts between camel case names used in the xcodeproj plist files | ||
# and the ruby symbols used to represent them. | ||
# | ||
module NameHelper |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The proliferation of ‘helpers’ is ok, but they should be named more semantically. If this helper is responsible for changing case of a string, then I don’t think NameHelper
really clarifies that. Also, ‘name’ doesn’t seem to be appropriate, isn’t it more like ‘keys’ ?
So how about something like PlistKeyCaseConverter
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@irrationalfab ^^
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is not about keys only but also the attributes of the objects. PlistCaseConverter
works for me
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gotcha, maybe just CaseConverter
then? The Plist
part in my suggestion was about the ‘keys being those in the plist’.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
No description provided.