Sha256: 33e1af1936c84f1b644660e25ea596909654c6e3dac9bbfed45941504a231113
Contents?: true
Size: 433 Bytes
Versions: 17
Compression:
Stored size: 433 Bytes
Contents
module NoNotifierNeeded module Config VALID_OPTIONS_KEYS = [ :from_email, :from_name, :bcc, :reply_to, :host, :controller, :action ].freeze # @private attr_accessor *VALID_OPTIONS_KEYS # Create a hash of options and their values def options VALID_OPTIONS_KEYS.inject({}) do |option, key| option.merge!(key => send(key)) end end end end
Version data entries
17 entries across 17 versions & 1 rubygems