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