Created
November 26, 2017 12:44
-
-
Save mahmudahsan/e39b84fe39745b93ef5d14f578bdd8b1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def modifyXCodeProjByRuby(bundleIdentifier, path): | |
print("XCode Project Modified by Ruby") | |
rubyModifyCommand = "ruby RUBY_FILE_NAME.rb " + "\"" + bundleIdentifier + "\"" + " " + "\"" + path + "\"" | |
print(rubyModifyCommand) | |
os.system(rubyModifyCommand) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment