Sha256: 3b78c8d5ee70575ee8fd5d8daa67da507d0510d99ab9c40a607c5c80f3bf3b30
Contents?: true
Size: 702 Bytes
Versions: 1
Compression:
Stored size: 702 Bytes
Contents
require "rubycritic/smell" module Rubycritic module SmellAdapter class Reek def initialize(reek) @reek = reek end def smells @reek.smells.map do |smell| create_smell(smell) end end private def create_smell(smell) Smell.new( :locations => smell_locations(smell.source, smell.lines), :context => smell.context, :message => smell.message, :type => smell.subclass ) end def smell_locations(file_path, file_lines) file_lines.uniq.map do |file_line| Location.new(file_path, file_line) end.sort end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubycritic-0.0.10 | lib/rubycritic/smell_adapters/reek.rb |