Patrick Reagan

Results 9 comments of Patrick Reagan

It's probably best to use the XMLRPC library directly in this instance (and even if you're building a Rails app that responds to XMLRPC calls). I converted my blog software...

I haven't played with the SOAP portion of AWS, so I'm not sure how much work would be involved in creating a DSL for a SOAP endpoint. It looks like...

I ran into this issue as well -- I ended up forking the repository and making a change to the `isBodyOrParametersMatching` utility function: https://github.com/KindHealth-Holdings/axios-mock-adapter/commit/6793904f9e6a031a4e3bfa439025b08500d1cc8d I haven't battle tested it much...

Added in 4c19355ba6bcbb7dccb72a8ee6bcd04691533d4a. Two things to note: - I only use `--exclude` when syncing the local cache to the remote server, syncing to the release directory doesn't need this flag...

I'm not sure what my options are here -- the relevant part from `deploy:update_code`: ``` task :update_code, :except => { :no_release => true } do on_rollback { run "rm -rf...

@nnevala @follmann -- I'll close this out at the end of the week if I don't hear from you guys. It's been a while since this was submitted, so you...

I'm using this in a Rails project and have some places where I want to decorate the underlying `ChargeBee::Entitlement` object using [`delegate_missing_to`](https://github.com/rails/rails/blob/v7.1.5.1/activesupport/lib/active_support/core_ext/module/delegation.rb#L318-L367), but can't due to `respond_to?` not being implemented...

I dug through the Ruby docs across versions for `method_missing` and `respond_to(_missing)?` and I think @sobrinho's referenced Thoughtbot post is a succinct explanation of the problem and solution. As far...