Spencer

Results 20 issues of Spencer

I'm not sure if this is the best place to post this. My issues looks like it is similar to [439](https://github.com/benoitc/hackney/issues/439) but it might just be related to how I...

### Definition ```elixir defmodule ArgsValidator do use Decorator.Define, validate: 1 def validate(_, _, %{args: function_args}) do quote do: unquote(function_args) end end ``` ### Usage ```elixir use ArgsValidator @decorate validate([&Ecto.UUID.cast/1]) defdelegate...

If husky is compiled with a given version of erlang, and ran on a machine that has a different erlang version it breaks.

- [x] Yes, I reviewed the [contribution guidelines](https://make.wordpress.org/cli/handbook/contributing/). - [x] Yes, more specifically, I reviewed the guidelines on [how to write clear bug reports](https://make.wordpress.org/cli/handbook/bug-reports/). **Describe the current, buggy behavior** `search-replace`...

I'm calling a service that requires HTTP method to be 'GET' instead of 'POST'. I could see it make sense to allow the [transport options](https://github.com/baalexander/node-xmlrpc/blob/d9c88c4185e16637ed5a22c1b91c80e958e8d69e/lib/client.js#L106) to be be modified on...

I ran into a case where I wanted to return `:ignore` in my Vault `init/1` callback, but the strict match on `{:ok, pid}` was causing the supervisor to crash.

It would nice if there were a `ignore_error` option that could be set to `true` and default to `false`. Use case: I want to execute `kubectl delete job ` and...

It would be really nice to have some notion of environments. My understanding is that `Jars::Installer.new.vendor_jars!` looks at anything in [Gem::Specification requirements](https://guides.rubygems.org/specification-reference/#requirements) and installs them into the `ENV['JARS_HOME']` directory. I...

Sometimes I need to capture a mocked function's arguments and then compare them to the nth time that that function was called. It was able to accomplish this by dropping...