Class: RubyCritic::Generator::Html::CodeIndex

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

Constant Summary collapse

TEMPLATE =
erb_template('code_index.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, #code_index_path, #file_path, #smell_location_path, #timeago_tag

Constructor Details

#initialize(analysed_modules) ⇒ CodeIndex

Returns a new instance of CodeIndex.



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

def initialize(analysed_modules)
  @analysed_modules = analysed_modules
  set_header_links if Config.compare_branches_mode?
end

Instance Method Details

#file_nameObject



22
23
24
# File 'lib/rubycritic/generators/html/code_index.rb', line 22

def file_name
  'code_index.html'
end

#renderObject



26
27
28
29
# File 'lib/rubycritic/generators/html/code_index.rb', line 26

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


16
17
18
19
20
# File 'lib/rubycritic/generators/html/code_index.rb', line 16

def set_header_links
  @base_path = code_index_path(Config.base_root_directory, file_name)
  @feature_path = code_index_path(Config.feature_root_directory, file_name)
  @build_path = code_index_path(Config.compare_root_directory, file_name)
end