mirror of
https://github.com/zhigang1992/motion-pixate-layout.git
synced 2026-01-12 17:32:33 +08:00
17 lines
387 B
Ruby
17 lines
387 B
Ruby
require "bundler/gem_tasks"
|
|
$:.unshift("/Library/RubyMotion/lib")
|
|
require 'motion/project'
|
|
Bundler.setup
|
|
Bundler.require
|
|
|
|
require 'motion-pixate'
|
|
|
|
Motion::Project::App.setup do |app|
|
|
app.name = 'testSuite'
|
|
app.identifier = 'com.terriblelabs.motionPixateLayout.testSuite'
|
|
|
|
if File.exist?('vendor/PXEngine.framework')
|
|
app.pixate.framework = 'vendor/PXEngine.framework'
|
|
end
|
|
end
|