Application Naming - ParkinT/RubyMotion_Life GitHub Wiki
#Application Naming issues and guidance
The app.name
in the Rakefile cannot contain any spaces. Apparently, it is also adverse to apostrophe and question mark (probably also bang and other "shifted" symbols).
Here is a trick Steve Ross provided.
app.name = "Whos Here"
app.info_plist['CFBundleDisplayName'] = "Who's Here?"