Sha256: 152fafdbb991f3851690bdf0df002776e4c23544c032da195ab8fbdfede6870c
Contents?: true
Size: 565 Bytes
Versions: 6796
Compression:
Stored size: 565 Bytes
Contents
# frozen_string_literal: true class Pry class Config # Attributable provides the ability to create "attribute" # accessors. Attribute accessors create a standard "attr_writer" and a # customised "attr_reader". This reader is Proc-aware (lazy). # # @since v0.13.0 # @api private module Attributable def attribute(attr_name) define_method(attr_name) do value = Config::Value.new(instance_variable_get("@#{attr_name}")) value.call end attr_writer(attr_name) end end end end
Version data entries
6,796 entries across 6,792 versions & 31 rubygems