Sha256: 75375c85519653c23f325d365fdd68db93293228d05ebface87706f7a669183d

Contents?: true

Size: 1.23 KB

Versions: 6914

Compression:

Stored size: 1.23 KB

Contents

# frozen_string_literal: true

class Pry
  class Command
    class Ls < Pry::ClassCommand
      class Formatter
        attr_writer :grep
        attr_reader :pry_instance

        def initialize(pry_instance)
          @pry_instance = pry_instance
          @target = pry_instance.current_context
          @default_switch = nil
        end

        def write_out
          return false unless correct_opts?

          output_self
        end

        private

        def color(type, str)
          Pry::Helpers::Text.send pry_instance.config.ls.send("#{type}_color"), str
        end

        # Add a new section to the output.
        # Outputs nothing if the section would be empty.
        def output_section(heading, body)
          return '' if body.compact.empty?

          fancy_heading = Pry::Helpers::Text.bold(color(:heading, heading))
          Pry::Helpers.tablify_or_one_line(fancy_heading, body, @pry_instance)
        end

        def format_value(value)
          Pry::ColorPrinter.pp(value, ''.dup)
        end

        def correct_opts?
          @default_switch
        end

        def output_self
          raise NotImplementedError
        end

        def grep
          @grep || proc { |x| x }
        end
      end
    end
  end
end

Version data entries

6,914 entries across 6,909 versions & 33 rubygems

Version Path
ory-client-0.0.1.alpha46 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
ory-client-0.0.1.alpha45 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
ory-client-0.0.1.alpha44 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
ory-client-0.0.1.alpha43 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
ory-client-0.0.1.alpha42 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
ory-client-0.0.1.alpha41 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
ory-client-0.0.1.alpha40 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
ory-client-0.0.1.alpha39 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
ory-client-0.0.1.alpha38 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
ory-client-0.0.1.alpha37 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
ory-client-0.0.1.alpha36 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
ory-kratos-client-0.8.2.alpha1 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
ory-client-0.0.1.alpha31 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
primary_connect_proto-0.4.0 vendor/bundle/ruby/2.6.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
primary_connect_proto-0.3.0 vendor/bundle/ruby/2.6.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
primary_connect_proto-0.2.0 vendor/bundle/ruby/2.6.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
primary_connect_proto-0.1.0 vendor/bundle/ruby/2.6.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
ory-client-0.0.1.alpha30 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
ory-client-0.0.1.alpha29 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb
primary_connect_proto-0.0.6 vendor/bundle/ruby/2.6.0/gems/pry-0.13.1/lib/pry/commands/ls/formatter.rb