Sha256: 2fa2c745e83cd2f28da275f4d5cba3bebe999bca58f0a4423e776debf16f7810

Contents?: true

Size: 292 Bytes

Versions: 1

Compression:

Stored size: 292 Bytes

Contents

class Settingson::Defaults
  def initialize(klass:)
    @__klass  = klass
    @__path   = '__defaults'
  end # initialize

  def method_missing(symbol, *args)
    Settingson::Store.new(
      klass: @__klass, path: @__path, defaults: true
    ).send(symbol, *args)
  end # method_missing
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
settingson-1.7.7 lib/settingson/defaults.rb