Sha256: defe6eeaaf699b2e6c47cd6de188cc48e309d79ce2de55432586e733fda186dc
Contents?: true
Size: 570 Bytes
Versions: 3
Compression:
Stored size: 570 Bytes
Contents
# frozen_string_literal: true require 'bundler/gem_tasks' require 'rspec/core/rake_task' require 'rubocop/rake_task' task default: :all desc 'Runs all tasks: :specs, :rubocop and :danger_lint' task all: %i[specs lint] desc 'Ensure that the plugin passes `danger plugins lint`' task :danger_lint do sh 'bundle exec danger plugins lint' end desc 'Runs linting tasks: :rubocop and :danger_lint' task lint: %i[rubocop danger_lint] desc 'Run Unit Tests' RSpec::Core::RakeTask.new(:specs) desc 'Run RuboCop on the lib/specs directory' RuboCop::RakeTask.new(:rubocop)
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
danger-dangermattic-1.0.2 | Rakefile |
danger-dangermattic-1.0.1 | Rakefile |
danger-dangermattic-1.0.0 | Rakefile |