From 2f8b7cad854460779d84a464491cccf4547bc965 Mon Sep 17 00:00:00 2001 From: Joshua Hoblitt Date: Sat, 6 Jun 2015 10:39:30 -0700 Subject: [PATCH] add puppet-blacksmith gem --- Gemfile | 1 + Rakefile | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/Gemfile b/Gemfile index 7ac9540..c920b1b 100644 --- a/Gemfile +++ b/Gemfile @@ -29,6 +29,7 @@ group :beaker do gem 'beaker-rspec', :require => false gem 'pry', :require => false gem 'travis-lint', :require => false + gem 'puppet-blacksmith', :require => false end # vim:ft=ruby diff --git a/Rakefile b/Rakefile index 85eafa8..1170f9f 100644 --- a/Rakefile +++ b/Rakefile @@ -2,6 +2,11 @@ require 'puppetlabs_spec_helper/rake_tasks' require 'puppet-syntax/tasks/puppet-syntax' require 'puppet-lint/tasks/puppet-lint' +begin + require 'puppet_blacksmith/rake_tasks' +rescue LoadError +end + PuppetSyntax.exclude_paths = ['spec/fixtures/**/*'] PuppetLint::RakeTask.new :lint do |config|