summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorDaniele Sluijters <daenney@users.noreply.github.com>2015-04-22 16:40:52 +0200
committerDaniele Sluijters <daenney@users.noreply.github.com>2015-04-22 16:44:41 +0200
commitfd169dc29490cf21f400603c8f0b812c771a7f27 (patch)
tree3658c32fc1548aa88715d2b5f5604323b3fce04e /Rakefile
parent114148c71019dbdc03731f9df509856696ab61cc (diff)
Rakefile: Cleanup
* Remove acceptance test runner * Remove blacksmith
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/Rakefile b/Rakefile
index 1778d2a..2343b25 100644
--- a/Rakefile
+++ b/Rakefile
@@ -4,13 +4,6 @@ require 'puppet/vendor/semantic/lib/semantic' unless Puppet.version.to_f < 3.6
require 'puppet-lint/tasks/puppet-lint'
require 'puppet-syntax/tasks/puppet-syntax'
-# These gems aren't always present, for instance
-# on Travis with --without development
-begin
- require 'puppet_blacksmith/rake_tasks'
-rescue LoadError
-end
-
Rake::Task[:lint].clear
PuppetLint.configuration.relative = true
@@ -33,11 +26,6 @@ exclude_paths = [
PuppetLint.configuration.ignore_paths = exclude_paths
PuppetSyntax.exclude_paths = exclude_paths
-desc "Run acceptance tests"
-RSpec::Core::RakeTask.new(:acceptance) do |t|
- t.pattern = 'spec/acceptance'
-end
-
desc "Populate CONTRIBUTORS file"
task :contributors do
system("git log --format='%aN' | sort -u > CONTRIBUTORS")