lib/buckaroo-ideal/request_signature.rb in buckaroo-ideal-0.0.1 vs lib/buckaroo-ideal/request_signature.rb in buckaroo-ideal-0.0.2

- old
+ new

@@ -30,16 +30,16 @@ # @return [Buckaroo::Ideal::Order] The order that is being signed. attr_reader :order # @return [Boolean] The configured test_mode in +Buckaroo::Ideal::Config+ - delegate :test_mode, to: Config + delegate :test_mode, :to => Config # @return [String] The configured merchant_key in +Buckaroo::Ideal::Config+ - delegate :merchant_key, to: Config + delegate :merchant_key, :to => Config # @return [String] The configured secret_key in +Buckaroo::Ideal::Config+ - delegate :secret_key, to: Config + delegate :secret_key, :to => Config # Initialize a new +Buckaroo::Ideal::Signature+ instance for the given # order. # # @param [Buckaroo::Ideal::Order] The order that needs to be signed.