Class: ActivePayment::Configuration
- Inherits:
-
Object
- Object
- ActivePayment::Configuration
- Defined in:
- lib/active_payment/configuration.rb
Instance Attribute Summary collapse
-
#default_url_host ⇒ Object
Returns the value of attribute default_url_host.
-
#ip_security ⇒ Object
Returns the value of attribute ip_security.
-
#min_amount ⇒ Object
Returns the value of attribute min_amount.
-
#paypal_appid ⇒ Object
Returns the value of attribute paypal_appid.
-
#paypal_login ⇒ Object
Returns the value of attribute paypal_login.
-
#paypal_password ⇒ Object
Returns the value of attribute paypal_password.
-
#paypal_signature ⇒ Object
Returns the value of attribute paypal_signature.
-
#test ⇒ Object
Returns the value of attribute test.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
8 9 10 11 12 |
# File 'lib/active_payment/configuration.rb', line 8 def initialize @min_amount = 0 @ip_security = false @test = false end |
Instance Attribute Details
#default_url_host ⇒ Object
Returns the value of attribute default_url_host.
5 6 7 |
# File 'lib/active_payment/configuration.rb', line 5 def default_url_host @default_url_host end |
#ip_security ⇒ Object
Returns the value of attribute ip_security.
4 5 6 |
# File 'lib/active_payment/configuration.rb', line 4 def ip_security @ip_security end |
#min_amount ⇒ Object
Returns the value of attribute min_amount.
4 5 6 |
# File 'lib/active_payment/configuration.rb', line 4 def min_amount @min_amount end |
#paypal_appid ⇒ Object
Returns the value of attribute paypal_appid.
3 4 5 |
# File 'lib/active_payment/configuration.rb', line 3 def paypal_appid @paypal_appid end |
#paypal_login ⇒ Object
Returns the value of attribute paypal_login.
3 4 5 |
# File 'lib/active_payment/configuration.rb', line 3 def paypal_login @paypal_login end |
#paypal_password ⇒ Object
Returns the value of attribute paypal_password.
3 4 5 |
# File 'lib/active_payment/configuration.rb', line 3 def paypal_password @paypal_password end |
#paypal_signature ⇒ Object
Returns the value of attribute paypal_signature.
3 4 5 |
# File 'lib/active_payment/configuration.rb', line 3 def paypal_signature @paypal_signature end |
#test ⇒ Object
Returns the value of attribute test.
6 7 8 |
# File 'lib/active_payment/configuration.rb', line 6 def test @test end |