# File lib/pry/commands/cat/abstract_formatter.rb, line 22 def between_lines [opts[:start] || 1, opts[:end] || -1] end
# File lib/pry/commands/cat/abstract_formatter.rb, line 14 def code_type opts[:type] || :ruby end
# File lib/pry/commands/cat/abstract_formatter.rb, line 8 def decorate(content) content.code_type = code_type content.between(*between_lines). with_line_numbers(use_line_numbers?) end
# File lib/pry/commands/cat/abstract_formatter.rb, line 18 def use_line_numbers? opts.present?(:'line-numbers') || opts.present?(:ex) end