Paul Pettengill
Paul Pettengill
AmEx CVC is 4 digits, AmEx CID (on back of card is 3 digits). Formance is currently accepting 3 digit CVC for AmEx in addition to 4 digits. If there...
Rather than allowing input of 4 characters in field, restrict input to 3 characters if the credit card type set is not AMEX.
Addressing deprecation warnings from changes to `debug_inspector` gem dependency. ````ruby .rbenv/versions/3.0.5/lib/ruby/gems/3.0.0/gems/binding_of_caller-1.0.0/lib/binding_of_caller/mri.rb:21: warning: constant RubyVM::DebugInspector is deprecated ````
Just started getting this deprecation warning. ````ruby .rbenv/versions/3.0.5/lib/ruby/gems/3.0.0/gems/binding_of_caller-1.0.0/lib/binding_of_caller/mri.rb:21: warning: constant RubyVM::DebugInspector is deprecated ```` Looking into it a bit, it looks like `debug_inspector` updated its name and usage in a...
Rather than add a bunch of boilerplate tests for contract breaches, I was wondering if there was something similar to the `shoulda-matchers`. https://github.com/thoughtbot/shoulda-matchers/tree/main So for ````ruby class MyInteractor include Interactor...
The following code: ``` ruby # spec/controllers/concerns/concern_name_spec.rb describe ConcernName, type: :controller do controller(ApplicationController) do include ConcernName before_action :assign_resource, only: [:update, :destroy] def create; end def update; end def destroy; end...
### Orb version 1.4.6 ### What happened Went to update our Chrome version to just be set to the latest version by default. Updated our config to read: ````yaml -...
### Orb version 1.4.6 ### What happened **Running with specified version** Across 24 executions (2 runs with 12 parallelism) [resource_class: medium] averaged an install time of 8.75 seconds Executing ````yaml...
```ruby class FruitLoops < ApplicationRecord after_create :prime_cache, type: :create, serializer: ToucanSam after_update :prime_cache, type: :update, serializer: ToucanSam after_destroy :prime_cache, type: :destroy, serializer: ToucanSam # or possibly after_commit :prime_cache, serializer: ToucanSam...
### Is there an existing issue that is already proposing this? - [X] I have searched the existing issues ### Is your feature request related to a problem? Please describe...