Skip to content

Commit

Permalink
Merge remote-tracking branch 'skel/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Hoblitt committed Aug 24, 2013
2 parents dddb48a + ed6a68b commit 4c6b9bc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
pkg/
spec/fixtures/
Gemfile.lock
*.orig
*.rej
*.patch
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ end
gem 'rake'
gem 'puppetlabs_spec_helper'
gem 'puppet-lint'
gem 'puppet-syntax'

# vim:ft=ruby
7 changes: 6 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet-syntax/tasks/puppet-syntax'
require 'puppet-lint/tasks/puppet-lint'

PuppetLint.configuration.send("disable_class_inherits_from_params_class")
PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", 'tests/**/*.pp']

task :default => [:spec, :lint]
task :default => [
:syntax,
:lint,
:spec,
]

0 comments on commit 4c6b9bc

Please sign in to comment.