Class: Payoneer::Configuration
- Inherits:
-
Object
- Object
- Payoneer::Configuration
- Defined in:
- lib/payoneer/configuration.rb
Class Attribute Summary collapse
-
.client_cert ⇒ Object
Returns the value of attribute client_cert.
-
.client_cert_passwd ⇒ Object
Returns the value of attribute client_cert_passwd.
-
.environment ⇒ Object
Returns the value of attribute environment.
-
.partner_id ⇒ Object
Returns the value of attribute partner_id.
-
.password ⇒ Object
Returns the value of attribute password.
-
.program_id ⇒ Object
Returns the value of attribute program_id.
-
.username ⇒ Object
Returns the value of attribute username.
Class Method Summary collapse
Class Attribute Details
.client_cert ⇒ Object
Returns the value of attribute client_cert.
4 5 6 |
# File 'lib/payoneer/configuration.rb', line 4 def client_cert @client_cert end |
.client_cert_passwd ⇒ Object
Returns the value of attribute client_cert_passwd.
4 5 6 |
# File 'lib/payoneer/configuration.rb', line 4 def client_cert_passwd @client_cert_passwd end |
.environment ⇒ Object
Returns the value of attribute environment.
4 5 6 |
# File 'lib/payoneer/configuration.rb', line 4 def environment @environment end |
.partner_id ⇒ Object
Returns the value of attribute partner_id.
4 5 6 |
# File 'lib/payoneer/configuration.rb', line 4 def partner_id @partner_id end |
.password ⇒ Object
Returns the value of attribute password.
4 5 6 |
# File 'lib/payoneer/configuration.rb', line 4 def password @password end |
.program_id ⇒ Object
Returns the value of attribute program_id.
4 5 6 |
# File 'lib/payoneer/configuration.rb', line 4 def program_id @program_id end |
.username ⇒ Object
Returns the value of attribute username.
4 5 6 |
# File 'lib/payoneer/configuration.rb', line 4 def username @username end |
Class Method Details
.configure ⇒ Object
6 7 8 9 10 |
# File 'lib/payoneer/configuration.rb', line 6 def configure @configuration ||= Payoneer::Configuration.tap do |config| yield config end end |