Skip to content

Instantly share code, notes, and snippets.

@mattsgarrison
Created June 2, 2012 18:29
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 mattsgarrison/2859511 to your computer and use it in GitHub Desktop.
Save mattsgarrison/2859511 to your computer and use it in GitHub Desktop.
RubyMotion Rakefile configured for submitting to the App Store.
$:.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