Bart de Water
Bart de Water
The functionality in the OpenSSL gem was introduced in ruby/openssl#142 and supported by Net::HTTP in Ruby 2.5: https://github.com/ruby/ruby/commit/dcea9198a9d80bdf4eeacd9d9e9d883850a4a8d2 An example why this might be useful; for payment data the PCI...
https://github.com/Shopify/active_utils/pull/96 was failing because of ancient versions. Bump version to 4.0?
The monotonic clock can only move forward and is not subject to changes of the system clock, e.g. corrections due to NTP or VM adjustments. Same as https://github.com/activemerchant/active_merchant/pull/2566
Before this change it returns nil, this makes it easier to write code like ```ruby if JWT::Signature.verify(...) do_the_thing end ```
Adding code loading best practices as used inside Shopify. cc @andyw8
See https://github.com/rubocop/rails-style-guide/pull/323 This cop is extracted from Shopify's internal Rubocop repository. Many thanks to the original authors for their work. ----------------- Before submitting the PR make sure the following are...
See https://github.com/rubocop/rails-style-guide/pull/323 This cop is extracted from Shopify's internal Rubocop repository. Many thanks to the original authors for their work. ----------------- Before submitting the PR make sure the following are...
Regex anchoring was missing an IMO pretty important _why_ this is preferred, so added that. For the `match?` addition I considered merging it with the non-capturing group recommendation, but figured...
Per the discussion on Slack earlier today, where we reviewed internal code where seemingly the authors were not aware of the `self
The old example would send IDs (high cardinality - which can be expensive) for URLs like `/v1/accounts/acct_123/persons`. The new example tries to filter out anything that looks like an ID,...