Class: BiolaWebServices::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/biola_web_services/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



10
11
12
13
# File 'lib/biola_web_services/configuration.rb', line 10

def initialize
  @url = 'https://ws.biola.edu'
  @verify_ssl = true
end

Instance Attribute Details

#cert_pathObject

Returns the value of attribute cert_path.



4
5
6
# File 'lib/biola_web_services/configuration.rb', line 4

def cert_path
  @cert_path
end

#key_passwordObject

Returns the value of attribute key_password.



6
7
8
# File 'lib/biola_web_services/configuration.rb', line 6

def key_password
  @key_password
end

#key_pathObject

Returns the value of attribute key_path.



5
6
7
# File 'lib/biola_web_services/configuration.rb', line 5

def key_path
  @key_path
end

#ssl_versionObject

Returns the value of attribute ssl_version.



8
9
10
# File 'lib/biola_web_services/configuration.rb', line 8

def ssl_version
  @ssl_version
end

#urlObject

Returns the value of attribute url.



3
4
5
# File 'lib/biola_web_services/configuration.rb', line 3

def url
  @url
end

#verify_sslObject

Returns the value of attribute verify_ssl.



7
8
9
# File 'lib/biola_web_services/configuration.rb', line 7

def verify_ssl
  @verify_ssl
end