class Options
Public Class Methods
get(path)
click to toggle source
# File lib/options.rb, line 5 def get(path) @options&.dig(*path.split('.')) end
set(options)
click to toggle source
# File lib/options.rb, line 9 def set(options) @options = options end