Sha256: a8127155aa67e8d4ea63c1f67c066e409d62b857219219e0d9cfd171be8c90f9

Contents?: true

Size: 1.4 KB

Versions: 12

Compression:

Stored size: 1.4 KB

Contents

require "bundler/gem_tasks"

begin
  require "rspec/core/rake_task"
  RSpec::Core::RakeTask.new(:spec)
rescue LoadError
  puts "Rspec not available"
  task :spec
end

WINDOWS_PLATFORM = /mswin|win32|mingw/.freeze unless defined? WINDOWS_PLATFORM

begin
  require "cucumber"
  require "cucumber/rake/task"
  Cucumber::Rake::Task.new(:features) do |t|
    if RUBY_PLATFORM =~ WINDOWS_PLATFORM || RUBY_PLATFORM =~ /darwin/
      t.cucumber_opts = "--tags 'not @not-windows'"
    end
  end
rescue LoadError
  task :features
end

begin
  require "github_changelog_generator/task"

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

task default: %i{spec features}
task :ci do
  ENV["CI"] = "true"
  Rake::Task[:spec].invoke
  Rake::Task[:features].invoke
end

begin
  require "chefstyle"
  require "rubocop/rake_task"
  RuboCop::RakeTask.new(:style) do |task|
    task.options += ["--display-cop-names", "--no-color"]
  end
rescue LoadError
  puts "chefstyle/rubocop is not available.  gem install chefstyle to do style checking."
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
berkshelf-8.0.15 Rakefile
berkshelf-8.0.13 Rakefile
berkshelf-8.0.12 Rakefile
berkshelf-8.0.9 Rakefile
berkshelf-8.0.7 Rakefile
berkshelf-8.0.5 Rakefile
berkshelf-8.0.2 Rakefile
berkshelf-8.0.1 Rakefile
berkshelf-8.0.0 Rakefile
berkshelf-7.2.2 Rakefile
berkshelf-7.2.1 Rakefile
berkshelf-7.2.0 Rakefile