Files
RubyMotion/test/TestSuite/Rakefile
2013-12-13 11:50:34 +01:00

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