lib/hoe/reek.rb in hoe-reek-1.1.0 vs lib/hoe/reek.rb in hoe-reek-1.1.1

- old
+ new

@@ -1,14 +1,27 @@ +#!/usr/bin/env ruby +# @encoding: utf-8 +# @author: Sascha Manns +# @abstract: hoe-reek is a small reek integration into hoe +# +# Copyright (c) 2015 Sascha Manns <samannsml@directbox.com> +# License: MIT + +# Dependencies + +# Main module for hoe-reek module Hoe::Reek - VERSION = '1.1.0' + # Versionizing the gem + VERSION = '1.1.1' + #attr_accessor :reek + 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