Sha256: 0e310fd481cbb38d6ff19d173e5d5ce1ad5a9b09c1c106fe38123a255a308e6e

Contents?: true

Size: 518 Bytes

Versions: 1

Compression:

Stored size: 518 Bytes

Contents

# frozen_string_literal: true

load 'tasks/rubocop.rake'
load 'tasks/debride.rake'
load 'tasks/flay.rake'
load 'tasks/reek.rake'
load 'tasks/brakeman.rake'
load 'tasks/fasterer.rake'
load 'tasks/rubycritic.rake'

namespace :bestie do
  task style: %i[
    rubocop
    rubycritic
  ]

  task smell: %i[
    debride
    flay
    reek
  ]

  task security: [
    :brakeman
  ]

  task performance: [
    :fasterer
  ]

  task all: %i[
    style
    smell
    security
    performance
  ]
end

task bestie: ['bestie:all']

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bestie-0.2.0 lib/tasks/bestie.rake