module Yatapp::Configuration
Constants
- CONFIGURATION_OPTIONS
Public Instance Methods
configure() { |self| ... }
click to toggle source
# File lib/yatapp/configuration.rb, line 17 def configure yield self end
options()
click to toggle source
# File lib/yatapp/configuration.rb, line 21 def options CONFIGURATION_OPTIONS.inject({}) do |opt, key| opt.merge!(key => send(key)) end end