summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorMicah <micah@leap.se>2016-05-24 10:19:42 -0400
committerMicah <micah@leap.se>2016-05-24 10:19:42 -0400
commit38cf1269a499acd9b85390afd6200c2f143fbffc (patch)
tree1fef658020e58d2a368acedebdeda723860c287f /Rakefile
Squashed 'puppet/modules/systemd/' content from commit 6d47fd4
git-subtree-dir: puppet/modules/systemd git-subtree-split: 6d47fd4999fe03eba6fb11c4490dcbb90d937900
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 00000000..adcac180
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,23 @@
+require 'puppetlabs_spec_helper/rake_tasks'
+require 'puppet-lint/tasks/puppet-lint'
+
+Rake::Task[:lint].clear
+PuppetLint::RakeTask.new :lint do |config|
+ config.ignore_paths = ["spec/**/*.pp", "pkg/**/*.pp", "vendor/**/*.pp"]
+ config.disable_checks = ['80chars']
+ config.fail_on_warnings = true
+end
+
+PuppetSyntax.exclude_paths = ["spec/fixtures/**/*.pp", "vendor/**/*"]
+
+# Publishing tasks
+unless RUBY_VERSION =~ /^1\.8/
+ require 'puppet_blacksmith'
+ require 'puppet_blacksmith/rake_tasks'
+ require 'github_changelog_generator/task'
+ GitHubChangelogGenerator::RakeTask.new :changelog do |config|
+ m = Blacksmith::Modulefile.new
+ config.future_release = m.version
+ config.release_url = "https://forge.puppetlabs.com/#{m.author}/#{m.name}/%s"
+ end
+end