Class: SleepingKingStudios::Docs::Commands::Generate
- Inherits:
-
SleepingKingStudios::Docs::Commands::Generators::Base
- Object
- Cuprum::Command
- SleepingKingStudios::Docs::Commands::Generators::Base
- SleepingKingStudios::Docs::Commands::Generate
- Defined in:
- lib/sleeping_king_studios/docs/commands/generate.rb
Overview
Generates YARD documentation files.
Instance Attribute Summary
Attributes inherited from SleepingKingStudios::Docs::Commands::Generators::Base
Instance Method Summary collapse
-
#initialize(docs_path: , **options) ⇒ Generate
constructor
A new instance of Generate.
Methods inherited from SleepingKingStudios::Docs::Commands::Generators::Base
#dry_run?, #force?, #template_path, #verbose?, #version
Constructor Details
#initialize(docs_path: , **options) ⇒ Generate
Returns a new instance of Generate.
23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/sleeping_king_studios/docs/commands/generate.rb', line 23 def initialize( docs_path:, error_stream: $stderr, output_stream: $stdout, ** ) super(docs_path:, **) @error_stream = error_stream @output_stream = output_stream end |