lib/pry/commands/cat/abstract_formatter.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class Pry
  class Command
    class Cat
      class AbstractFormatter
        include Pry::Helpers::CommandHelpers
        include Pry::Helpers::BaseHelpers

        private

        def decorate(content)
          content.code_type = code_type
          content.between(*between_lines)
            .with_line_numbers(use_line_numbers?).highlighted
        end

        def code_type
          opts[:type] || :ruby
        end

        def use_line_numbers?
          opts.present?(:'line-numbers') || opts.present?(:ex)
        end

        def between_lines
          [opts[:start] || 1, opts[:end] || -1]
        end
      end
    end
  end
end