forked from pivotal/LicenseFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
56 lines (50 loc) · 1.35 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
46
47
48
49
50
51
52
53
54
55
56
require 'bundler'
Bundler::GemHelper.install_tasks
require './lib/license_finder/platform'
require 'rspec/core/rake_task'
desc "Run all specs in spec/"
task :spec do
RSpec::Core::RakeTask.new(:spec) do |t|
t.fail_on_error = true
t.pattern = "./spec/**/*_spec.rb"
t.rspec_opts = %w[--color]
end
end
desc "Run all specs in features/"
task :features do
RSpec::Core::RakeTask.new(:features) do |t|
t.fail_on_error = true
t.pattern = "./features/**/*_spec.rb"
opts = %w[--color --format d]
opts += LicenseFinder::Platform.darwin? ? [] : %w[--tag ~ios]
t.rspec_opts = opts
end
end
desc "Check for non-Ruby development dependencies."
task :check_dependencies do
dependencies = {
"mvn" => "Maven",
"npm" => "NPM",
"pip" => "Pip",
"gradle" => "Gradle",
"bower" => "Bower",
"rebar" => "Rebar",
"godep" => "Go"
}
dependencies["pod"] = "Cocoapods" if LicenseFinder::Platform.darwin?
satisfied = true
dependencies.each do |dependency, description|
printf "checking dev dependency for #{description} ... "
`which #{dependency}` ; status = $?
if status.success?
puts "OK"
else
puts "missing `#{dependency}`"
satisfied = false
end
end
exit 1 unless satisfied
end
task :spec => :check_dependencies
task :features => :check_dependencies
task :default => [:spec, :features]