module Traitify::Configuration
Constants
- VALID_OPTIONS_KEYS
Public Instance Methods
configure() { |self| ... }
click to toggle source
# File lib/traitify/configuration.rb, line 23 def configure yield self end
options()
click to toggle source
# File lib/traitify/configuration.rb, line 27 def options VALID_OPTIONS_KEYS.inject({}){|o,k| o.merge!(k => send(k)) } end