forked from voxpupuli/puppet-augeasproviders_shellvar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
30 lines (24 loc) · 731 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
require 'rubygems'
require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-syntax/tasks/puppet-syntax'
require 'puppet-lint/tasks/puppet-lint'
require 'yard'
exclude_paths = [
"pkg/**/*",
"vendor/**/*",
"spec/**/*",
]
task :default => [:spec, :yard, :syntax, :lint]
desc "Run acceptance tests"
RSpec::Core::RakeTask.new(:acceptance) do |t|
t.pattern = 'spec/acceptance'
end
YARD::Rake::YardocTask.new do |t|
t.options = []
end
# Disable puppet-lint checks
PuppetLint.configuration.send("disable_80chars")
PuppetLint.configuration.send("disable_class_inherits_from_params_class")
# Ignore files outside this module
PuppetLint.configuration.ignore_paths = exclude_paths
PuppetSyntax.exclude_paths = exclude_paths