Created
August 30, 2014 16:23
-
-
Save pixlwave/c8952f760c1f4558bda0 to your computer and use it in GitHub Desktop.
RubyMotion Rakefile build locations
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
puts App.config.build_dir #=> ./build | |
puts File.join(App.config.versionized_build_dir('MacOSX')) #=> ./build/MacOSX-10.9-Development | |
puts App.config.app_bundle('MacOSX') #=> ./build/MacOSX-10.9-Development/MyApp.app/Contents | |
puts File.dirname(App.config.app_bundle_executable('MacOSX')) #=> ./build/MacOSX-10.9-Development/MyApp.app/Contents/MacOS | |
puts App.config.app_bundle_executable('MacOSX') #=> ./build/MacOSX-10.9-Development/MyApp.app/Contents/MacOS/MyApp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment