mirror of
https://github.com/zhigang1992/ProMotion.git
synced 2026-05-28 23:50:54 +08:00
13 lines
340 B
Ruby
13 lines
340 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.detect_dependencies = true
|
|
end
|