Skip to content

Instantly share code, notes, and snippets.

@eliaskg
Created May 23, 2012 13:16
Show Gist options
  • Save eliaskg/2775186 to your computer and use it in GitHub Desktop.
Save eliaskg/2775186 to your computer and use it in GitHub Desktop.
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project'
gem 'motion-cocoapods', '=1.0.1'
require 'motion-cocoapods'
Motion::Project::App.setup do |app|
# Use `rake config' to see complete project settings.
app.name = 'MyApp'
app.icons = ['icons/icon.png', 'icons/icon@2x.png']
app.prerendered_icon = true
app.frameworks += [
'QuartzCore'
]
app.pods do
dependency 'JSONKit'
dependency 'ASIHTTPRequest'
dependency 'MBProgressHUD'
dependency 'PullToRefresh'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment