mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-08 17:56:38 +08:00
14 lines
369 B
Ruby
14 lines
369 B
Ruby
# -*- coding: utf-8 -*-
|
|
$:.unshift("../../lib")
|
|
require 'motion/project'
|
|
|
|
ENV['output'] ||= 'pretty_spec_dox'
|
|
|
|
Motion::Project::App.setup do |app|
|
|
# Use `rake config' to see complete project settings.
|
|
app.name = 'TestSuite'
|
|
|
|
app.spec_files.insert(1, *FileList['../helpers/*.rb'])
|
|
app.deployment_target = ENV['deployment_target'] if ENV['deployment_target']
|
|
end
|