Sha256: a60219b491850105cafd6c771f9ad15c9c15585ea1790e9feb383f91194df877

Contents?: true

Size: 653 Bytes

Versions: 6790

Compression:

Stored size: 653 Bytes

Contents

# frozen_string_literal: true

require 'ostruct'

class Pry
  # CommandState is a data structure to hold per-command state.
  #
  # Pry commands can store arbitrary state here. This state persists between
  # subsequent command invocations. All state saved here is unique to the
  # command.
  #
  # @since v0.13.0
  # @api private
  class CommandState
    def self.default
      @default ||= new
    end

    def initialize
      @command_state = {}
    end

    def state_for(command_name)
      @command_state[command_name] ||= OpenStruct.new
    end

    def reset(command_name)
      @command_state[command_name] = OpenStruct.new
    end
  end
end

Version data entries

6,790 entries across 6,786 versions & 31 rubygems

Version Path
passbase-1.0.0 vendor/bundle/ruby/2.7.0/gems/pry-0.13.1/lib/pry/command_state.rb
metanorma-cli-1.3.4 gems/ruby/2.6.0/gems/pry-0.13.1/lib/pry/command_state.rb
metanorma-cli-1.3.3.1 gems/ruby/2.6.0/gems/pry-0.13.1/lib/pry/command_state.rb
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/pry-0.13.1/lib/pry/command_state.rb
talon_one-2.0.0 vendor/bundle/ruby/2.3.0/gems/pry-0.13.1/lib/pry/command_state.rb
talon_one-2.0.0 vendor/bundle/ruby/2.7.0/gems/pry-0.13.1/lib/pry/command_state.rb
pry-0.13.1-java lib/pry/command_state.rb
pry-0.13.1 lib/pry/command_state.rb
pry-0.13.0-java lib/pry/command_state.rb
pry-0.13.0 lib/pry/command_state.rb