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 bdec024 + ed6a68b commit e36c256
Show file tree
Hide file tree
Showing 4 changed files with 26 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,8 +1,13 @@
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.send("disable_variable_scope")
PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", 'tests/**/*.pp']

task :default => [:spec, :lint]
task :default => [
:syntax,
:lint,
:spec,
]
16 changes: 16 additions & 0 deletions manifests/init.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# == Class: module_skel
#
# simple template
#
# === Authors
#
# Joshua Hoblitt <[email protected]>
#
# === Copyright
#
# Copyright (C) 2013 Joshua Hoblitt
#

class module_skel {

}

0 comments on commit e36c256

Please sign in to comment.