Class: ZaakpayRuby::Configuration
- Inherits:
-
Object
- Object
- ZaakpayRuby::Configuration
- Defined in:
- lib/zaakpay_ruby.rb
Overview
This is class for initialize the secret key
Instance Attribute Summary collapse
-
#log_level ⇒ Object
Returns the value of attribute log_level.
-
#secret_key ⇒ Object
Returns the value of attribute secret_key.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
12 13 14 15 |
# File 'lib/zaakpay_ruby.rb', line 12 def initialize self.secret_key = nil self.log_level = 'info' end |
Instance Attribute Details
#log_level ⇒ Object
Returns the value of attribute log_level.
10 11 12 |
# File 'lib/zaakpay_ruby.rb', line 10 def log_level @log_level end |
#secret_key ⇒ Object
Returns the value of attribute secret_key.
10 11 12 |
# File 'lib/zaakpay_ruby.rb', line 10 def secret_key @secret_key end |