Created
August 5, 2013 21:38
-
-
Save fearoffish/6159841 to your computer and use it in GitHub Desktop.
latest rake file for ruby motion with test flight
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
# -*- coding: utf-8 -*- | |
$:.unshift("/Library/RubyMotion/lib") | |
require 'motion/project/template/ios' | |
Bundler.require | |
Motion::Project::App.setup do |app| | |
# Use `rake config' to see complete project settings. | |
app.name = 'rar' | |
app.identifier = "com.fearoffish.rar" | |
app.version = "0.0.1" | |
app.device_family = [:iphone, :ipad] | |
app.interface_orientations = [:portrait, :portrait_upside_down] | |
app.icons = ["resources/ipad_icon/Icon-72.png", "resources/ipad_icon/[email protected]", "resources/ipad_icon/Icon-Small-50.png", "resources/ipad_icon/[email protected]", "resources/ipad_icon/Icon-Small.png", "resources/ipad_icon/[email protected]", "resources/ipad_icon/LargeIcon.png", "resources/ipad_icon/LargeIconRound.png"] | |
app.seed_id = "my-seed" | |
app.interface_orientations = [:portrait] | |
app.testflight.sdk = 'vendor/TestFlight' | |
app.testflight.api_token = 'rar' | |
app.testflight.team_token = 'rar' | |
# Uncomment me to make a distribution ipa | |
# app.provisioning_profile = File.expand_path("~/Dropbox/Developer/rar_Distribution_Profile.mobileprovision") | |
# Uncomment me to make a device ipa | |
# app.codesign_certificate = "iPhone Developer: Jamie van Dyke (RAR)" | |
app.provisioning_profile = File.expand_path("~/Dropbox/Developer/rar_Dev_Profile.mobileprovision") | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment