Class: RubyCritic::Generator::Html::Overview

Inherits:
Base
  • Object
show all
Defined in:
lib/rubycritic/generators/html/overview.rb

Constant Summary collapse

TEMPLATE =
erb_template('overview.html.erb')

Constants inherited from Base

Base::LAYOUT_TEMPLATE, Base::TEMPLATES_DIR

Instance Method Summary collapse

Methods inherited from Base

erb_template, #file_directory, #file_href, #file_pathname

Methods included from ViewHelpers

#asset_path, #file_path, #javascript_tag, #smell_location_path, #stylesheet_path, #timeago_tag

Constructor Details

#initialize(analysed_modules) ⇒ Overview

Returns a new instance of Overview.



10
11
12
13
14
# File 'lib/rubycritic/generators/html/overview.rb', line 10

def initialize(analysed_modules)
  @turbulence_data = Turbulence.data(analysed_modules)
  @score = analysed_modules.score
  @max_score = AnalysedModulesCollection::MAX_SCORE
end

Instance Method Details

#file_nameObject



16
17
18
# File 'lib/rubycritic/generators/html/overview.rb', line 16

def file_name
  'overview.html'
end

#renderObject



20
21
22
23
# File 'lib/rubycritic/generators/html/overview.rb', line 20

def render
  index_body = TEMPLATE.result(get_binding)
  LAYOUT_TEMPLATE.result(get_binding { index_body })
end