Class: Tasker::Generators::AuthenticatorGenerator::UsageInstructionsFormatter

Inherits:
Object
  • Object
show all
Defined in:
lib/generators/tasker/authenticator_generator.rb

Overview

Service class to format and display usage instructions Reduces complexity by organizing instruction display logic

Class Method Summary collapse

Class Method Details

.display(generator) ⇒ void

This method returns an undefined value.

Display complete usage instructions for the generator

Parameters:



77
78
79
80
81
82
83
84
# File 'lib/generators/tasker/authenticator_generator.rb', line 77

def display(generator)
  display_success_header(generator)
  display_created_files(generator)
  display_configuration_example(generator)
  display_type_specific_instructions(generator)
  display_test_instructions(generator)
  display_documentation_links(generator)
end