Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Ruby interface to the Bckbn API
gem install bckbn
Local configuration will override global configuration where
they conflict. Some config can only be set locally, like an
idempotency_key
.
require "bckbn"
Bckbn.api_base = "..."
Bckbn.access_token = "..."
Bckbn.worldpay_merchant_id = "..."
Bckbn::Transaction.capture({
litle_txn_id: "13254123434",
id: "12345",
report_group: "ABC Division"
})
require "bckbn"
api_base = "..."
access_token = "..."
worldpay_merchant_id = "..."
idempotency_key = "..."
Bckbn::Transaction.capture(
{
litle_txn_id: "13254123434",
id: "12345",
report_group: "ABC Division"
},
{
api_base: api_base,
access_token: access_token,
worldpay_merchant_id: worldpay_merchant_id,
idempotency_key: idempotency_key
}
)
An idempotency key can be added to allow retries without creating duplicate transactions. Successful POST requests will return a cached response. New requests can be issued by changing the request body or the idempotency key.
open doc/index.html
Run specs
bundle exec rake spec
Regenerate docs
bundle exec rake yard
Run linter
bundle exec rake rubocop
MIT
FAQs
Unknown package
We found that bckbn demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.