lib/przelewy24_payment.rb in przelewy24_payment-0.1.3 vs lib/przelewy24_payment.rb in przelewy24_payment-0.1.4
- old
+ new
@@ -32,21 +32,21 @@
def self.complete_url(params)
params
end
def self.post_url
- if @@mode == :development
- 'https://sandbox.przelewy24.pl/index.php'
- elsif @@mode == :production
+ if @@mode == :production
'https://secure.przelewy24.pl/index.php'
+ else
+ 'https://sandbox.przelewy24.pl/index.php'
end
end
def self.transaction_url
- if @@mode == :development
+ if @@mode == :production
+ 'https://secure.przelewy24.pl/transakcja.php'
+ else
'https://sandbox.przelewy24.pl/transakcja.php'
- elsif @mode == :production
- 'https://secure.przelewy24.pl/index.php'
end
end
def self.p24_price(price)
price.present? ? (price.to_f.round(2) * 100) : 0