-
Notifications
You must be signed in to change notification settings - Fork 349
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
Added module_name
attribute.
#209
Conversation
@@ -4,6 +4,10 @@ | |||
|
|||
##### Enhancements | |||
|
|||
* Added `module_name` attribute for use with frameworks. | |||
[Boris Bügling](https://github.com/neonichu) | |||
[Core#204](https://github.com/CocoaPods/Core/issues/205) |
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.
Should just be [#205]
|
||
it 'should mask invalid chars' do | ||
@spec.send(:c99ext_identifier, 'iOS-App BânánàLïb').should == 'iOS_App_B_n_n_L_b' | ||
end |
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.
What about normalising instead?
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.
good idea!
end | ||
|
||
it 'should mask invalid chars' do | ||
@spec.send(:c99ext_identifier, 'iOS-App BânánàLïb').should == 'iOS_App_B_n_n_L_b' |
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.
Should characters with accents instead be mapped to those without accents? Eloy's name is not built up of invalid characters.
á
should be shown as a
instead of _
?
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.
Indeed, was changed in f65331b
Added `module_name` attribute.
Added `module_name` attribute.
Changes Unknown when pulling ed492e9 on module-name-attribute into * on master*. |
Closes #205