Skip to content

Commit 5ae1ce1

Browse files
author
Joshua Hoblitt
committed
Merge puppet-module_skel
1 parent afb41e2 commit 5ae1ce1

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
pkg/
22
spec/fixtures/
33
Gemfile.lock
4+
*.orig
5+
*.rej
6+
*.patch

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ end
99
gem 'rake'
1010
gem 'puppetlabs_spec_helper'
1111
gem 'puppet-lint'
12+
gem 'puppet-syntax'
1213

1314
# vim:ft=ruby

Rakefile

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
require 'puppetlabs_spec_helper/rake_tasks'
2+
require 'puppet-syntax/tasks/puppet-syntax'
23
require 'puppet-lint/tasks/puppet-lint'
34

5+
PuppetSyntax.exclude_paths = ["spec/fixtures/**/*"]
46
PuppetLint.configuration.send("disable_class_inherits_from_params_class")
57
PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", 'tests/**/*.pp']
68

7-
task :default => [:spec, :lint]
9+
task :default => [
10+
:syntax,
11+
:lint,
12+
:spec,
13+
]

0 commit comments

Comments
 (0)