class MlaActiveDutyStatus::Configuration
Attributes
ca_path[RW]
logging[RW]
max_years_for_age_check[RW]
mla_host[RW]
mla_path[RW]
open_timeout[RW]
read_timeout[RW]
ssl_verify[RW]
Public Class Methods
new()
click to toggle source
# File lib/mla_active_duty_status/configuration.rb, line 27 def initialize @max_years_for_age_check = 100 @mla_host = 'mla.dmdc.osd.mil' @mla_path = '/mla/single_record.xhtml' @ssl_verify = true @ca_path = nil @logging = false @open_timeout = 10 @read_timeout = 10 end