module ACTV::Configurable
Constants
- AUTH_KEYS
- CONFIG_KEYS
Public Class Methods
keys()
click to toggle source
# File lib/actv/configurable.rb, line 32 def keys @keys ||= CONFIG_KEYS + AUTH_KEYS end
Public Instance Methods
configure() { |self| ... }
click to toggle source
Convenience method to allow configuration options to be set in a block
# File lib/actv/configurable.rb, line 5 def configure yield self self end