Updated method signatures in the gem to use keyword arguments instead of named arguments.
MonopayRuby::Invoices::SimpleInvoice::new
method was affected by this change.
the method was called like new("redirect/url", "webhook/url")
. Now, it should be called like new(redirect_url: "redirect/url", webhook_url: "webhook/url")
.
This is a breaking change and will require updating your code if you are updating to this version of the gem from an earlier version.
- Fix typo in a
README.md
file - Add ability to pass reference to an invoice by
reference
parameter in aMonopayRuby::Invoices::SimpleInvoice::create
method - Use keyword parameter of
destination
for "MonopayRuby::Invoices::SimpleInvoice::create" method
- Initial public release