Skip to content

Commit

Permalink
Merge pull request #38 from nibalizer/fix_travis
Browse files Browse the repository at this point in the history
Update Rakefile to ignore vendor gems in syntax task
  • Loading branch information
cmurphy committed Jun 13, 2014
2 parents bca4e18 + a2cf8d6 commit a95d8e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
*.swn
pkg/
.vagrant/
.bundle/
vendor/
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ PuppetLint.configuration.send('disable_autoloader_layout')
PuppetLint.configuration.send('disable_class_inherits_from_params_class')
PuppetLint.configuration.send('disable_class_parameter_defaults')
PuppetLint.configuration.send('disable_documentation')
PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", "pkg/**/*.pp"]
PuppetLint.configuration.ignore_paths = ["vendor/**/*.pp", "spec/**/*.pp", "pkg/**/*.pp" ]
PuppetSyntax.exclude_paths = ["vendor/**/*"]

task :test => [
:syntax,
Expand Down

0 comments on commit a95d8e8

Please sign in to comment.