Sha256: 4a5d6126f115691631708f83e8deab45e0e4c54c09ab6c088c36af79d671f2dd

Contents?: true

Size: 341 Bytes

Versions: 1

Compression:

Stored size: 341 Bytes

Contents

module Hoe::Reek
  VERSION = '1.1.0'

  def initialize_reek
    require 'reek/rake/task'
  end

  def define_reek_tasks
    Reek::Rake::Task.new do |t|
      t.name = 'reek'
      t.config_file = 'config.reek'
      t.source_files = 'lib/**/*.rb'
      t.reek_opts = ''
      t.fail_on_error = false
      t.verbose = true
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hoe-reek-1.1.0 lib/hoe/reek.rb