forked from rayh/xcoder
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
45 lines (34 loc) · 1.02 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
require "bundler/gem_tasks"
require "yard"
require "yard/rake/yardoc_task"
task :default => [:specs, :build]
desc "Run specs"
task :specs do
system "rspec --color --format d --tag ~integration"
end
desc "Run integration tests"
task :integration => :reset do
system "rspec --color --format d --tag integration"
end
namespace :doc do
desc "Generate YARD docs"
YARD::Rake::YardocTask.new(:generate) do |t|
t.files = ['lib/**/*.rb', '-', 'README.md'] # optional
# t.options = ["-o ../xcoder-doc"]
end
end
task :reset => ['test_project:reset']
namespace :test_project do
task :reset do
puts "Reseting the TestProject Project File"
system "git checkout -- spec/TestProject"
puts "Removing any User schemes generated in the project"
system "rm -rf spec/TestProject/TestProject.xcodeproj/xcuserdata"
puts "Removing any installed files"
system "git clean -df spec/TestProject"
end
end
require './lib/xcoder/rake_task'
Xcode::RakeTask.new :xcode do |xcoder|
xcoder.directory = 'spec'
end