class Platformx::Configuration
PlatformX configuration class.
@author Tim Mushen
Attributes
Controls the aws access key id @return [String] the aws access key id
Controls the aws bucket name @return [String] aws bucket name
Controls the aws region @return [String] aws region
Controls the aws secret access key @return [String] the aws secret access key
Controls the mail address @return [String] the mail address
Controls mail authentication @return [String] mail authentication
Controls the mail domain @return [String] the mail domain
Controls the mail from @return [String] the mail from
Controls the mail password @return [String] the mail password
Controls the mail port number @return [String] the mail port number
Controls the mail user name @return [String] the mail user name
Public Class Methods
Initialize Platformx
configuration object and set defaults
# File lib/platformx.rb, line 126 def initialize # Bugsnag # @bugsnag_api_key = "" # X_mail @mail_from = "" @mail_address = "smtp.mailgun.org" @mail_port = "587" @mail_domain = "smtp.mailgun.org" @mail_user_name = "" @mail_password = "" @mail_authentication = "plain" # For AWS/Fog @aws_bucket = "" @aws_secret_access_key = "" @aws_access_key_id = "" @aws_region = "" end