Sha256: 9bafc18851c69bb9d498e112aee64eed8f917cd3dc054a76012ea5f4ea638db1

Contents?: true

Size: 1.85 KB

Versions: 6796

Compression:

Stored size: 1.85 KB

Contents

# frozen_string_literal: true

class Pry
  class Command
    class Cat
      class FileFormatter < AbstractFormatter
        attr_reader :file_with_embedded_line
        attr_reader :opts
        attr_reader :pry_instance

        def initialize(file_with_embedded_line, pry_instance, opts)
          unless file_with_embedded_line
            raise CommandError, "Must provide a filename, --in, or --ex."
          end

          @file_with_embedded_line = file_with_embedded_line
          @opts = opts
          @pry_instance = pry_instance
          @code_from_file = Pry::Code.from_file(file_name)
        end

        def format
          set_file_and_dir_locals(file_name, pry_instance, pry_instance.current_context)
          decorate(@code_from_file)
        end

        def file_and_line
          file_name, line_num = file_with_embedded_line.split(%r{:(?!/|\\)})

          [file_name, line_num ? line_num.to_i : nil]
        end

        private

        def file_name
          file_and_line.first
        end

        def line_number
          file_and_line.last
        end

        def code_window_size
          pry_instance.config.default_window_size || 7
        end

        def decorate(content)
          if line_number
            super(content.around(line_number, code_window_size))
          else
            super
          end
        end

        def code_type
          opts[:type] || detect_code_type_from_file(file_name)
        end

        def detect_code_type_from_file(file_name)
          code_type = @code_from_file.code_type

          if code_type == :unknown
            name = File.basename(file_name).split('.', 2).first
            case name
            when "Rakefile", "Gemfile"
              :ruby
            else
              :text
            end
          else
            code_type
          end
        end
      end
    end
  end
end

Version data entries

6,796 entries across 6,792 versions & 31 rubygems

Version Path
cybrid_api_bank_ruby-0.123.149 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
cybrid_api_id_ruby-0.123.149 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
cybrid_api_organization_ruby-0.123.149 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
cybrid_api_bank_ruby-0.123.148 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
cybrid_api_id_ruby-0.123.148 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
cybrid_api_organization_ruby-0.123.148 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
cybrid_api_bank_ruby-0.123.147 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
cybrid_api_organization_ruby-0.123.147 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
cybrid_api_id_ruby-0.123.147 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
ory-client-1.16.2 vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
avalara_sdk-24.12.2 vendor/bundle/ruby/2.7.0/gems/pry-0.13.1/lib/pry/commands/cat/file_formatter.rb
cybrid_api_bank_ruby-0.123.145 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
cybrid_api_organization_ruby-0.123.145 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
cybrid_api_id_ruby-0.123.145 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
cybrid_api_bank_ruby-0.123.144 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
cybrid_api_id_ruby-0.123.144 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
cybrid_api_organization_ruby-0.123.144 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
ory-client-1.16.1 vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
ory-client-1.16.0 vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb
cybrid_api_bank_ruby-0.123.143 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb