Skip to content

Instantly share code, notes, and snippets.

@mahmudahsan
Created November 26, 2017 12:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mahmudahsan/e39b84fe39745b93ef5d14f578bdd8b1 to your computer and use it in GitHub Desktop.
Save mahmudahsan/e39b84fe39745b93ef5d14f578bdd8b1 to your computer and use it in GitHub Desktop.
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