File: Rakefile

package info (click to toggle)
ruby-riemann-client 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 228 kB
  • sloc: ruby: 1,271; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 387 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'riemann'

require 'bundler/gem_tasks'

require 'github_changelog_generator/task'

GitHubChangelogGenerator::RakeTask.new :changelog do |config|
  config.user = 'riemann'
  config.project = 'riemann-ruby-client'
  config.exclude_labels = ['skip-changelog']
  config.future_release = "v#{Riemann::VERSION}"
  config.add_issues_wo_labels = false
end