Class: BiolaWebServices::Configuration
- Inherits:
-
Object
- Object
- BiolaWebServices::Configuration
- Defined in:
- lib/biola_web_services/configuration.rb
Instance Attribute Summary collapse
-
#cert_path ⇒ Object
Returns the value of attribute cert_path.
-
#key_password ⇒ Object
Returns the value of attribute key_password.
-
#key_path ⇒ Object
Returns the value of attribute key_path.
-
#ssl_version ⇒ Object
Returns the value of attribute ssl_version.
-
#url ⇒ Object
Returns the value of attribute url.
-
#verify_ssl ⇒ Object
Returns the value of attribute verify_ssl.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
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_path ⇒ Object
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_password ⇒ Object
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_path ⇒ Object
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_version ⇒ Object
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 |
#url ⇒ Object
Returns the value of attribute url.
3 4 5 |
# File 'lib/biola_web_services/configuration.rb', line 3 def url @url end |
#verify_ssl ⇒ Object
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 |