forked from jamonholmgren/ProMotion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
31 lines (28 loc) · 1012 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- coding: utf-8 -*-
RM_VERSION = "2.35"
unless File.exist?("/Library/RubyMotion#{RM_VERSION}/lib")
abort "Couldn't find RubyMotion #{RM_VERSION}. Run `sudo motion update --cache-version=#{RM_VERSION}`."
end
$:.unshift("/Library/RubyMotion#{RM_VERSION}/lib")
require 'motion/project/template/ios'
require 'bundler'
Bundler.require(:development)
require 'ProMotion'
Motion::Project::App.setup do |app|
app.name = 'ProMotion'
app.device_family = [ :ipad ] # so we can test split screen capability
app.detect_dependencies = false
# Adding file dependencies for tests
# Not too many dependencies necessary
app.files_dependencies({
"app/test_screens/table_screen_refreshable.rb" => [ "app/test_screens/test_table_screen.rb" ],
})
end
namespace :spec do
task :unit do
App.config.spec_mode = true
spec_files = App.config.spec_files - Dir.glob('./spec/functional/**/*.rb')
App.config.instance_variable_set("@spec_files", spec_files)
Rake::Task["simulator"].invoke
end
end