forked from pivotal/LicenseFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
40 lines (34 loc) · 1.05 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
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
require './lib/license_finder'
satisfied = true
LicenseFinder::PackageManager.package_managers.each do |package_manager|
satisfied = false unless package_manager.installed?(LicenseFinder::Logger.new(debug:true))
end
exit 1 unless satisfied
end
task :spec => :check_dependencies
task :features => :check_dependencies
task :default => [:spec, :features]