Created
June 2, 2012 18:29
-
-
Save mattsgarrison/2859511 to your computer and use it in GitHub Desktop.
RubyMotion Rakefile configured for submitting to the App Store.
This file contains 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
$:.unshift("/Library/RubyMotion/lib") | |
require 'motion/project' | |
require 'bubble-wrap' | |
Motion::Project::App.setup do |app| | |
# Use `rake config' to see complete project settings. | |
app.name = 'Chatoms' | |
app.version = "2.0" | |
app.deployment_target = '5.1' | |
app.identifier = "com.iconoclastlabs.chatoms" | |
app.codesign_certificate = "iPhone Distribution: Iconoclast Labs LLC" | |
app.provisioning_profile = "/Users/mattgarrison/Library/MobileDevice/Provisioning\ Profiles/66B40B3F-CD20-44A1-A176-9AF40B27F8EF.mobileprovision" | |
app.device_family = [:iphone, :ipad] | |
app.icons = ['icon_iphone.png', 'icon_ipad.png', 'icon_iphone_retina.png', 'icon_ipad_retina.png'] | |
app.prerendered_icon = true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment