David Kimura PRO
Joined 7/18/2015
Drifting Ruby Owner
Ruby Rogues Panelist
David Kimura PRO said over 6 years ago on More on Stripe and Webhooks :
I just checked the `stripe_event` source and it looks like they've updated it to have the check in there. Because it is being called twice, I believe it is common for it to error out. [source](https://github.com/integrallis/stripe_event/blob/master/app/controllers/stripe_event/webhook_controller.rb) Try commenting out the `routes.rb` line for the controller and add `mount StripeEvent::Engine, at: '/stripe/event'`

David Kimura PRO said about 6 years ago on Production Deployment on Ubuntu :
I don't do too much with PostgreSQL, but is there specific cases that you're looking for?

David Kimura PRO said about 6 years ago on DataTables :
that definitely adds a level of complexity, but is solvable. the problem comes into play when you start searching. you would need a joins and search on the country as well. you could add a hash into the columns like `country: :name` and modify the search.

David Kimura PRO said about 6 years ago on WYSIWYG Editor with Summernote :
I've recently switched the Drifting Ruby comments over from Summernote to SimpleMDE which gives better familiarity to code editing WYSIWYG. Using three backticks, followed by a language, you can create the code blocks ```ruby def Foo puts bar end ```

David Kimura PRO said about 6 years ago on Client Side Validations :
It looks like `form_with` is not supported. https://github.com/DavyJonesLocker/client_side_validations/issues/696