Class: Pry::Config::Value Private
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Value holds a value for the given attribute and decides how it should be read. Procs get called, other values are returned as is.
Instance Method Summary collapse
- #call ⇒ Object private
-
#initialize(value) ⇒ Value
constructor
private
A new instance of Value.
Constructor Details
#initialize(value) ⇒ Value
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Value.
11 12 13 |
# File 'lib/pry/config/value.rb', line 11 def initialize(value) @value = value end |
Instance Method Details
#call ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
15 16 17 18 19 20 21 |
# File 'lib/pry/config/value.rb', line 15 def call unless [Config::MemoizedValue, Config::LazyValue].include?(@value.class) return @value end @value.call end |