Files
ProMotion/Rakefile
2014-05-21 07:37:09 -07:00

14 lines
384 B
Ruby

# -*- coding: utf-8 -*-
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project/template/ios'
require 'bundler'
Bundler.require(:development)
require 'ProMotion'
Motion::Project::App.setup do |app|
app.name = 'ProMotion'
app.device_family = [ :ipad ] # so we can test split screen capability
app.frameworks += %w(CoreLocation MapKit)
app.detect_dependencies = true
end