diff options
author | Raphaël Pinson <raphael.pinson@camptocamp.com> | 2015-08-05 13:07:53 +0200 |
---|---|---|
committer | Raphaël Pinson <raphael.pinson@camptocamp.com> | 2015-08-05 13:07:53 +0200 |
commit | b3771c83f8b420f108fea8b018738270b66be8e2 (patch) | |
tree | a0d153b447357792c7960e0996f43c705e578703 /Rakefile | |
parent | e897dc36bc7aad957693ef02d8f06c76d9204e9c (diff) | |
download | puppet-dhcp-b3771c83f8b420f108fea8b018738270b66be8e2.tar.gz puppet-dhcp-b3771c83f8b420f108fea8b018738270b66be8e2.tar.bz2 |
Add publishing rake tasks
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -9,3 +9,15 @@ PuppetLint::RakeTask.new :lint do |config| 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 |