Sha256: 75375c85519653c23f325d365fdd68db93293228d05ebface87706f7a669183d

Contents?: true

Size: 1.23 KB

Versions: 6843

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,843 entries across 6,838 versions & 33 rubygems

Version Path
ory-client-1.16.4 vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_id_ruby-0.123.179 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_organization_ruby-0.123.179 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_organization_ruby-0.123.177 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_id_ruby-0.123.177 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_organization_ruby-0.123.176 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_id_ruby-0.123.176 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_organization_ruby-0.123.175 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_id_ruby-0.123.175 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_id_ruby-0.123.174 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_organization_ruby-0.123.174 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_id_ruby-0.123.173 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_organization_ruby-0.123.173 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
ory-client-1.16.3 vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_organization_ruby-0.123.172 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_id_ruby-0.123.172 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_id_ruby-0.123.171 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_organization_ruby-0.123.171 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_id_ruby-0.123.170 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb
cybrid_api_organization_ruby-0.123.170 vendor/bundle/ruby/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb