Class: Bovem::Console
- Inherits:
-
Object
- Object
- Bovem::Console
- Includes:
- Bovem::ConsoleMethods::Interactions, Bovem::ConsoleMethods::Logging, Bovem::ConsoleMethods::Output, Bovem::ConsoleMethods::StyleHandling
- Defined in:
- lib/bovem/console.rb
Overview
This is a text utility wrapper console I/O.
Constant Summary
Constant Summary
Constants included from Bovem::ConsoleMethods::Logging
Bovem::ConsoleMethods::Logging::DEFAULT_STATUSES
Instance Attribute Summary (collapse)
-
- (I18n) i18n
readonly
A i18n helper.
-
- (Fixnum) indentation
Current indentation width.
-
- (String) indentation_string
The string used for indentation.
Class Method Summary (collapse)
-
+ (Console) instance
Returns a unique instance for Console.
Instance Method Summary (collapse)
-
- (Console) initialize
constructor
Initializes a new Console.
-
- (Fixnum) line_width
Get the width of the terminal.
Methods included from Bovem::ConsoleMethods::Interactions
Methods included from Bovem::ConsoleMethods::Logging
#begin, #debug, #error, #fatal, #get_banner, #info, #progress, #status, #warn, #write, #write_banner_aligned
Methods included from Bovem::ConsoleMethods::Output
#emphasize, #format, #format_right, #indent, #reset_indentation, #set_indentation, #with_indentation, #wrap
Methods included from Bovem::ConsoleMethods::StyleHandling
Constructor Details
- (Console) initialize
Initializes a new Console.
706 707 708 709 710 |
# File 'lib/bovem/console.rb', line 706 def initialize @indentation = 0 @indentation_string = " " @i18n = Bovem::I18n.new(root: "bovem.console", path: Bovem::Application::LOCALE_ROOT) end |
Instance Attribute Details
- (I18n) i18n (readonly)
Returns A i18n helper.
689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 |
# File 'lib/bovem/console.rb', line 689 class Console attr_accessor :indentation, :indentation_string attr_reader :i18n include Bovem::ConsoleMethods::StyleHandling include Bovem::ConsoleMethods::Output include Bovem::ConsoleMethods::Logging include Bovem::ConsoleMethods::Interactions # Returns a unique instance for Console. # # @return [Console] A new instance. def self.instance @instance ||= Bovem::Console.new end # Initializes a new Console. def initialize @indentation = 0 @indentation_string = " " @i18n = Bovem::I18n.new(root: "bovem.console", path: Bovem::Application::LOCALE_ROOT) end # Get the width of the terminal. # # @return [Fixnum] The current width of the terminal. If not possible to retrieve the width, it returns `80. def line_width require "io/console" unless defined?($stdin.winsize) $stdin.winsize[1] rescue 80 end end |
- (Fixnum) indentation
Returns Current indentation width.
689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 |
# File 'lib/bovem/console.rb', line 689 class Console attr_accessor :indentation, :indentation_string attr_reader :i18n include Bovem::ConsoleMethods::StyleHandling include Bovem::ConsoleMethods::Output include Bovem::ConsoleMethods::Logging include Bovem::ConsoleMethods::Interactions # Returns a unique instance for Console. # # @return [Console] A new instance. def self.instance @instance ||= Bovem::Console.new end # Initializes a new Console. def initialize @indentation = 0 @indentation_string = " " @i18n = Bovem::I18n.new(root: "bovem.console", path: Bovem::Application::LOCALE_ROOT) end # Get the width of the terminal. # # @return [Fixnum] The current width of the terminal. If not possible to retrieve the width, it returns `80. def line_width require "io/console" unless defined?($stdin.winsize) $stdin.winsize[1] rescue 80 end end |
- (String) indentation_string
Returns The string used for indentation.
689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 |
# File 'lib/bovem/console.rb', line 689 class Console attr_accessor :indentation, :indentation_string attr_reader :i18n include Bovem::ConsoleMethods::StyleHandling include Bovem::ConsoleMethods::Output include Bovem::ConsoleMethods::Logging include Bovem::ConsoleMethods::Interactions # Returns a unique instance for Console. # # @return [Console] A new instance. def self.instance @instance ||= Bovem::Console.new end # Initializes a new Console. def initialize @indentation = 0 @indentation_string = " " @i18n = Bovem::I18n.new(root: "bovem.console", path: Bovem::Application::LOCALE_ROOT) end # Get the width of the terminal. # # @return [Fixnum] The current width of the terminal. If not possible to retrieve the width, it returns `80. def line_width require "io/console" unless defined?($stdin.winsize) $stdin.winsize[1] rescue 80 end end |
Class Method Details
+ (Console) instance
Returns a unique instance for Console.
701 702 703 |
# File 'lib/bovem/console.rb', line 701 def self.instance @instance ||= Bovem::Console.new end |
Instance Method Details
- (Fixnum) line_width
Get the width of the terminal.
715 716 717 718 719 720 |
# File 'lib/bovem/console.rb', line 715 def line_width require "io/console" unless defined?($stdin.winsize) $stdin.winsize[1] rescue 80 end |