Sha256: 17e5709e60271f0af2edfdc1c0104feec8a5b3c3c92df474571eff873eb722f8

Contents?: true

Size: 708 Bytes

Versions: 26

Compression:

Stored size: 708 Bytes

Contents

require 'byebug/helpers/var'

module Byebug
  #
  # Reopens the +var+ command to define the +all+ subcommand
  #
  class VarCommand < Command
    #
    # Shows global, instance and local variables
    #
    class AllCommand < Command
      include Helpers::VarHelper

      self.allow_in_post_mortem = true

      def self.regexp
        /^\s* a(?:ll)? \s*$/x
      end

      def self.description
        <<-EOD
          v[ar] a[ll]

          #{short_description}
        EOD
      end

      def self.short_description
        'Shows local, global and instance variables of self.'
      end

      def execute
        var_global
        var_instance('self')
        var_local
      end
    end
  end
end

Version data entries

26 entries across 25 versions & 3 rubygems

Version Path
dirwatch-0.0.2 vendor/bundle/ruby/2.3.0/gems/byebug-9.1.0/lib/byebug/commands/var/all.rb
tdiary-5.0.6 vendor/bundle/gems/byebug-9.1.0/lib/byebug/commands/var/all.rb
byebug-9.1.0 lib/byebug/commands/var/all.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/byebug-9.0.6/lib/byebug/commands/var/all.rb
tdiary-5.0.5 vendor/bundle/gems/byebug-9.0.6/lib/byebug/commands/var/all.rb
tdiary-5.0.4 vendor/bundle/gems/byebug-9.0.6/lib/byebug/commands/var/all.rb
byebug-9.0.6 lib/byebug/commands/var/all.rb
byebug-9.0.5 lib/byebug/commands/var/all.rb
byebug-9.0.4 lib/byebug/commands/var/all.rb
byebug-9.0.3 lib/byebug/commands/var/all.rb
byebug-9.0.2 lib/byebug/commands/var/all.rb
byebug-9.0.1 lib/byebug/commands/var/all.rb
byebug-9.0.0 lib/byebug/commands/var/all.rb
byebug-8.2.5 lib/byebug/commands/var/all.rb
byebug-8.2.4 lib/byebug/commands/var/all.rb
byebug-8.2.3 lib/byebug/commands/var/all.rb
byebug-8.2.2 lib/byebug/commands/var/all.rb
byebug-8.2.1 lib/byebug/commands/var/all.rb
byebug-8.2.0 lib/byebug/commands/var/all.rb
byebug-8.1.0 lib/byebug/commands/var/all.rb