Transforms a tool name like copy-info-plist to CopyInfoPlist
(self, name_string)
| 41 | return getattr(self, method)(*args[1:]) |
| 42 | |
| 43 | def _CommandifyName(self, name_string): |
| 44 | """Transforms a tool name like copy-info-plist to CopyInfoPlist""" |
| 45 | return name_string.title().replace("-", "") |
| 46 | |
| 47 | def ExecCopyBundleResource(self, source, dest, convert_to_binary): |
| 48 | """Copies a resource file to the bundle/Resources directory, performing any |