Sha256: 717385524bb510111bf1e552b8a89da0acaa4aaf9b6c9e77935f90fc0241f531

Contents?: true

Size: 1.56 KB

Versions: 110

Compression:

Stored size: 1.56 KB

Contents

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

      def initialize(file_with_embedded_line, _pry_, opts)
        @file_with_embedded_line = file_with_embedded_line
        @opts = opts
        @_pry_ = _pry_
        @code_from_file = Pry::Code.from_file(file_name)
      end

      def format
        raise CommandError, "Must provide a filename, --in, or --ex." if !file_with_embedded_line

        set_file_and_dir_locals(file_name, _pry_, _pry_.current_context)
        decorate(@code_from_file)
      end

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

        [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_.config.default_window_size || 7
      end

      def decorate(content)
        line_number ? super.around(line_number, code_window_size) : super
      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

Version data entries

110 entries across 103 versions & 28 rubygems

Version Path
logstash-filter-cache-redis-0.1.0 vendor/bundle/jruby/1.9/gems/pry-0.10.4-java/lib/pry/commands/cat/file_formatter.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb
tdiary-5.0.5 vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb
logstash-filter-csharp-0.1.0 vendor/bundle/jruby/2.3.0/gems/pry-0.10.4-java/lib/pry/commands/cat/file_formatter.rb
logstash-filter-htmlentities-0.1.0 vendor/bundle/jruby/1.9/gems/pry-0.10.4-java/lib/pry/commands/cat/file_formatter.rb
logstash-output-icinga-1.0.0 vendor/jruby/1.9/gems/pry-0.10.4-java/lib/pry/commands/cat/file_formatter.rb
lazy_record-0.2.1 vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb
lazy_record-0.2.0 vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb
lazy_record-0.1.9 vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb
lazy_record-0.1.8 vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb
lazy_record-0.1.7 vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb
lazy_record-0.1.6 vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb
lazy_record-0.1.4 vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb
tdiary-5.0.4 vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb
logstash-filter-zabbix-0.1.2 vendor/bundle/jruby/1.9/gems/pry-0.10.4-java/lib/pry/commands/cat/file_formatter.rb
lazy_record-0.1.3 vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb
lazy_record-0.1.2 vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb
lazy_record-0.1.1 vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb
lazy_record-0.1.0 vendor/bundle/gems/pry-0.10.4/lib/pry/commands/cat/file_formatter.rb