Class: Beecart::Gateway::BaseGateway
- Inherits:
-
Object
- Object
- Beecart::Gateway::BaseGateway
- Defined in:
- lib/beecart/gateway/base_gateway.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#authorize(price) ⇒ Boolean
クレジットカードに対して与信をかける.
-
#charge(price) ⇒ Boolean
クレジットカードで本決済をかける.
-
#initialize(*args) ⇒ BaseGateway
constructor
A new instance of BaseGateway.
Constructor Details
#initialize(*args) ⇒ BaseGateway
Returns a new instance of BaseGateway.
7 |
# File 'lib/beecart/gateway/base_gateway.rb', line 7 def initialize *args; end |
Instance Method Details
#authorize(price) ⇒ Boolean
クレジットカードに対して与信をかける
19 |
# File 'lib/beecart/gateway/base_gateway.rb', line 19 def price; end |
#charge(price) ⇒ Boolean
クレジットカードで本決済をかける
13 |
# File 'lib/beecart/gateway/base_gateway.rb', line 13 def charge price; end |