mirror of
https://github.com/zhigang1992/ProMotion.git
synced 2026-06-02 06:49:45 +08:00
17 lines
405 B
Ruby
17 lines
405 B
Ruby
$:.unshift("/Library/RubyMotion/lib")
|
|
require 'motion/project/template/ios'
|
|
require 'bundler'
|
|
Bundler.require
|
|
|
|
Motion::Project::App.setup do |app|
|
|
app.name = 'ProMotionTest'
|
|
app.version = "0.99.0"
|
|
app.redgreen_style = :focused # :focused, :full
|
|
|
|
# Devices
|
|
app.deployment_target = "6.0"
|
|
app.device_family = [:ipad] # so we can test split screen capability
|
|
|
|
app.detect_dependencies = true
|
|
end
|