Class: Rubycritic::Generator::Html::Overview
- 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
- #file_name ⇒ Object
-
#initialize(analysed_modules) ⇒ Overview
constructor
A new instance of Overview.
- #render ⇒ Object
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.
11 12 13 14 15 |
# File 'lib/rubycritic/generators/html/overview.rb', line 11 def initialize(analysed_modules) @turbulence_data = Turbulence.data(analysed_modules) @score = analysed_modules.score @max_score = AnalysedModulesCollection::MAX_SCORE end |
Instance Method Details
#file_name ⇒ Object
17 18 19 |
# File 'lib/rubycritic/generators/html/overview.rb', line 17 def file_name "overview.html" end |
#render ⇒ Object
21 22 23 24 |
# File 'lib/rubycritic/generators/html/overview.rb', line 21 def render index_body = TEMPLATE.result(get_binding) LAYOUT_TEMPLATE.result(get_binding { index_body }) end |