Sha256: f427a68eb7c9f0d2480c5ccc70611465fcdbae145cfd14d962407f93efb0c2e8

Contents?: true

Size: 589 Bytes

Versions: 3

Compression:

Stored size: 589 Bytes

Contents

require 'bundler'
require 'bundler/gem_tasks'

desc "run specs"
task :spec do
  sh "bundle exec rspec"
end

begin
  require "github_changelog_generator/task"

  GitHubChangelogGenerator::RakeTask.new :changelog do |config|
    config.future_release = Chef::Provisioning::FogDriver::VERSION
    config.enhancement_labels = "enhancement,Enhancement,New Feature".split(",")
    config.bug_labels = "bug,Bug,Improvement,Upstream Bug".split(",")
    config.exclude_labels = "duplicate,question,invalid,wontfix,no_changelog,Exclude From Changelog,Question".split(",")
  end
rescue LoadError
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
chef-provisioning-fog-0.26.1 Rakefile
chef-provisioning-fog-0.26.0 Rakefile
chef-provisioning-fog-0.25.1 Rakefile