Skip to content

Instantly share code, notes, and snippets.

@careo
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save careo/96853b5a5cafef74abda to your computer and use it in GitHub Desktop.
Save careo/96853b5a5cafef74abda to your computer and use it in GitHub Desktop.
errbit config
class Configuration < Attributor::Model
attribute :host, String
attribute :protocol, String
attribute :port, String
attribute :enforce_ssl, String
attribute :confirm_err_actions, String
attribute :user_has_username, String
attribute :use_gravatar, String
attribute :gravatar_default, String
attribute :email_from, String
attribute :email_at_notices, String
attribute :per_app_email_at_notices, String
attribute :notify_at_notices, String
attribute :per_app_notify_at_notices, String
attribute :serve_static_assets, String
attribute :secret_key_base, String
attribute :mongo_url, String
attribute :github do
attribute :url, String
attribute :authentication, String
attribute :client_id, String
attribute :secret, String
attribute :org_id, String
attribute :access_scope, String
end
attribute :email_delivery_method, String
attribute :smtp do
attribute :address, String
attribute :port, String
attribute :authentication, String
attribute :user_name, String
attribute :password, String
attribute :domain, String
end
attribute :sendmail do
attribute :location, String
attribute :arguments, String
end
attribute :devise_modules, String
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment