Class: Pry::Command::Cat::FileFormatter
- Inherits:
-
AbstractFormatter
- Object
- AbstractFormatter
- Pry::Command::Cat::FileFormatter
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
Instance Attribute Summary collapse
-
#file_with_embedded_line ⇒ Object
readonly
Returns the value of attribute file_with_embedded_line.
-
#opts ⇒ Object
readonly
Returns the value of attribute opts.
-
#pry_instance ⇒ Object
readonly
Returns the value of attribute pry_instance.
Instance Method Summary collapse
- #file_and_line ⇒ Object
- #format ⇒ Object
-
#initialize(file_with_embedded_line, pry_instance, opts) ⇒ FileFormatter
constructor
A new instance of FileFormatter.
Methods included from Helpers::BaseHelpers
#colorize_code, #find_command, #heading, #highlight, #not_a_real_file?, #safe_send, #silence_warnings, #stagger_output, #use_ansi_codes?
Methods included from Helpers::CommandHelpers
#absolute_index_number, #absolute_index_range, #get_method_or_raise, #internal_binding?, #one_index_number, #one_index_range, #one_index_range_or_number, #restrict_to_lines, #set_file_and_dir_locals, #temp_file, #unindent
Methods included from Helpers::OptionsHelpers
Constructor Details
#initialize(file_with_embedded_line, pry_instance, opts) ⇒ FileFormatter
Returns a new instance of FileFormatter.
11 12 13 14 15 16 17 18 19 20 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb', line 11 def initialize(, pry_instance, opts) unless raise CommandError, "Must provide a filename, --in, or --ex." end @file_with_embedded_line = @opts = opts @pry_instance = pry_instance @code_from_file = Pry::Code.from_file(file_name) end |
Instance Attribute Details
#file_with_embedded_line ⇒ Object (readonly)
Returns the value of attribute file_with_embedded_line.
7 8 9 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb', line 7 def @file_with_embedded_line end |
#opts ⇒ Object (readonly)
Returns the value of attribute opts.
8 9 10 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb', line 8 def opts @opts end |
#pry_instance ⇒ Object (readonly)
Returns the value of attribute pry_instance.
9 10 11 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb', line 9 def pry_instance @pry_instance end |
Instance Method Details
#file_and_line ⇒ Object
27 28 29 30 31 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb', line 27 def file_and_line file_name, line_num = .split(%r{:(?!/|\\)}) [file_name, line_num ? line_num.to_i : nil] end |
#format ⇒ Object
22 23 24 25 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb', line 22 def format set_file_and_dir_locals(file_name, pry_instance, pry_instance.current_context) decorate(@code_from_file) end |