Skip to content
This repository was archived by the owner on Jun 11, 2019. It is now read-only.

Commit 0b320b8

Browse files
committed
Travis blues
1 parent 9bc39d9 commit 0b320b8

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.gemfile.travis

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ puppetversion = ENV['PUPPET_VERSION']
44
gem 'puppet', puppetversion, :require => false
55
gem 'puppet-lint'
66
gem 'puppetlabs_spec_helper', '>= 0.1.0'
7-
gem 'rspec-puppet', '0.1.6'
7+
gem 'rspec-puppet'
88

Rakefile

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
require 'rubygems'
22
require 'puppetlabs_spec_helper/rake_tasks'
3-
require 'puppet_blacksmith/rake_tasks'
43
require 'puppet-lint'
54
PuppetLint.configuration.send("disable_80chars")
65
PuppetLint.configuration.send('disable_class_parameter_defaults')
6+
7+
# Blacksmith
8+
begin
9+
require 'puppet_blacksmith/rake_tasks'
10+
rescue LoadError
11+
puts "Blacksmith needed only to push to the Forge"
12+
end

0 commit comments

Comments
 (0)