summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
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")