class Morpho::Configuration

Attributes

api[RW]
auth[RW]
host[RW]
jwt[RW]
mailer[RW]
port[RW]
protocol[RW]

Public Class Methods

new() click to toggle source
# File lib/morpho/configuration.rb, line 17
def initialize
  self.host = ''
  self.port = ''
  self.protocol = ''

  self.mailer = Morpho::Configurations::Mailer.new
  self.api = Morpho::Configurations::API.new
  self.jwt = Morpho::Configurations::JWT.new
  self.auth = Morpho::Configurations::Auth.new
end