module LunchMoney
typed: strict
typed: strict
typed: strict
Constants
- VERSION
Public Class Methods
config()
click to toggle source
# File lib/lunchmoney/config.rb, line 34 def self.config @configuration = T.let(nil, T.nilable(Config)) unless @configuration @configuration ||= Config.new end
configure(&block)
click to toggle source
# File lib/lunchmoney/config.rb, line 29 def self.configure(&block) block.call(config) end