Class: MeetingBuddy::CLI
- Inherits:
-
Object
- Object
- MeetingBuddy::CLI
- Defined in:
- lib/meeting_buddy/cli.rb
Overview
Command Line Interface for MeetingBuddy
Handles command line argument parsing, session management, and audio processing for meeting recording and AI interaction.
Instance Method Summary collapse
-
#initialize(argv) ⇒ CLI
constructor
A new instance of CLI.
- #run ⇒ Object
Constructor Details
#initialize(argv) ⇒ CLI
Returns a new instance of CLI.
20 21 22 |
# File 'lib/meeting_buddy/cli.rb', line 20 def initialize(argv) = (argv) end |
Instance Method Details
#run ⇒ Object
24 25 26 27 28 29 30 |
# File 'lib/meeting_buddy/cli.rb', line 24 def run configure setup_dependencies start_session rescue Interrupt handle_shutdown end |