mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-02 09:31:37 +08:00
14 lines
405 B
Ruby
14 lines
405 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['../../lib/motion/util/version.rb', '../helpers/*.rb'])
|
|
app.deployment_target = ENV['deployment_target'] if ENV['deployment_target']
|
|
end
|