forked from jhoblitt/puppet-smartd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request jhoblitt#19 from jhoblitt/feature/boilerplate_update
Feature/boilerplate update
- Loading branch information
Showing
4 changed files
with
14 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
pkg/ | ||
spec/fixtures/manifests/ | ||
spec/fixtures/modules/ | ||
.bundle | ||
Gemfile.lock | ||
*.orig | ||
*.rej | ||
*.patch | ||
pkg/ | ||
*.rej | ||
.rspec_system/ | ||
spec/fixtures/manifests/ | ||
spec/fixtures/modules/ | ||
*.swp | ||
.vagrant |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
Copyright 2012 Massachusetts Institute of Technology | ||
Copyright (C) 2013-2014 Joshua Hoblitt <[email protected]> | ||
|
||
Permission to use, copy, modify, and distribute this software and | ||
its documentation for any purpose and without fee is hereby | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
require 'puppetlabs_spec_helper/rake_tasks' | ||
require 'rspec-system/rake_task' | ||
require 'puppet-syntax/tasks/puppet-syntax' | ||
require 'puppet-lint/tasks/puppet-lint' | ||
require 'rspec-system/rake_task' | ||
|
||
PuppetLint.configuration.send("disable_class_inherits_from_params_class") | ||
PuppetLint.configuration.ignore_paths = ['pkg/**/*.pp', 'spec/**/*.pp', 'tests/**/*.pp'] | ||
PuppetLint.configuration.ignore_paths = [ | ||
'pkg/**/*.pp', | ||
'spec/**/*.pp', | ||
'tests/**/*.pp', | ||
] | ||
|
||
task :default => [ | ||
:syntax, | ||
:lint, | ||
:spec, | ||
] | ||
|
||
# vim:ft=ruby |