Skip to content

Commit 7e74f57

Browse files
author
Joshua Hoblitt
committed
Merge puppet-module_skel
1 parent 35901b5 commit 7e74f57

File tree

6 files changed

+41
-37
lines changed

6 files changed

+41
-37
lines changed

.fixtures.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
fixtures:
2+
repositories:
3+
"stdlib": "git://github.com/puppetlabs/puppetlabs-stdlib.git"
4+
symlinks:
5+
"foo": "#{source_dir}"

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pkg/
2+
spec/fixtures/

Gemfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
source :rubygems
2+
3+
if puppetversion = ENV['PUPPET_GEM_VERSION']
4+
gem 'puppet', puppetversion, :require => false
5+
else
6+
gem 'puppet', :require => false
7+
end
8+
9+
gem 'rake'
10+
gem 'puppetlabs_spec_helper'
11+
gem 'puppet-lint'
12+
13+
# vim:ft=ruby

LICENSE

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright (C) 2012-2013 Joshua Hoblitt <[email protected]>
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.

Rakefile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
require 'puppetlabs_spec_helper/rake_tasks'
2+
require 'puppet-lint/tasks/puppet-lint'
3+
4+
#PuppetLint.configuration.send("disable_class_inherits_from_params_class")
5+
#PuppetLint.configuration.send("disable_variable_scope")
6+
PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", 'tests/**/*.pp']
7+
8+
task :default => [:spec, :lint]

metadata.json

-37
This file was deleted.

0 commit comments

Comments
 (0)