Sha256: c6f20fec8134b4f87d65752bed54359db40e21d7a24db5f99bd0974fce39ea30
Contents?: true
Size: 554 Bytes
Versions: 3
Compression:
Stored size: 554 Bytes
Contents
# frozen_string_literal: true require "bundler/gem_tasks" require "rspec/core/rake_task" require "rubocop/rake_task" RSpec::Core::RakeTask.new(:specs) task default: :specs task :spec do Rake::Task["specs"].invoke Rake::Task["rubocop"].invoke # Rake::Task["spec_docs"].invoke end desc "Run RuboCop on the lib/specs directory" RuboCop::RakeTask.new(:rubocop) do |task| task.patterns = ["lib/**/*.rb", "spec/**/*.rb"] end desc "Ensure that the plugin passes `danger plugins lint`" task :spec_docs do sh "bundle exec danger plugins lint" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
danger-chikuwa-0.1.1 | Rakefile |
danger-chikuwa-0.1.0 | Rakefile |
danger-chikuwa-0.0.1 | Rakefile |