Sha256: 7c4956c81cc3bd0db1a68a8ee0933e7a605ce8bd9fb1b644e7d5ea0a4c2f9bd2

Contents?: true

Size: 1.09 KB

Versions: 1

Compression:

Stored size: 1.09 KB

Contents

require 'rubycritic/generators/html/base'
require 'rubycritic/generators/html/line'

module RubyCritic
  module Generator
    module Html
      class CodeFile < Base
        LINE_NUMBER_OFFSET = 1
        TEMPLATE = erb_template('code_file.html.erb')

        def initialize(analysed_module)
          @analysed_module = analysed_module
          @pathname = @analysed_module.pathname
        end

        def file_directory
          @file_directory ||= root_directory + @pathname.dirname
        end

        def file_name
          @pathname.basename.sub_ext('.html')
        end

        def render
          file_code = ''
          File.readlines(@pathname).each.with_index(LINE_NUMBER_OFFSET) do |line_text, line_number|
            location = Location.new(@pathname, line_number)
            line_smells = @analysed_module.smells_at_location(location)
            file_code << Line.new(file_directory, line_text, line_smells).render
          end

          file_body = TEMPLATE.result(get_binding { file_code })
          LAYOUT_TEMPLATE.result(get_binding { file_body })
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubycritic-2.9.3 lib/rubycritic/generators/html/code_file.rb