Last active
December 21, 2015 20:00
-
-
Save miry/6358507 to your computer and use it in GitHub Desktop.
Rubymotion: A nice trick to find a right profile instead to put a full path to the file
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
Motion::Project::App.setup do |app| | |
# Find Provising profile depends on Profile name | |
# https://github.com/HipByte/RubyMotion/blob/master/lib/motion/project/template/ios/config.rb#L88 | |
app.provisioning_profile('IOS Wildcard Team Profile') | |
#or use same as app name | |
app.provisioning_profile(app.name) | |
# ... | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment