Andrew Selder
Andrew Selder
In quoting.rb #is_binary_data? is called on a string. Looking at http://apidock.com/ruby/String/is_binary_data%3F it appears that this method was removed in Ruby 1.9.2 (This method is deprecated or moved on the latest...
Since we tend to run umbrella apps, I'd love to do something like: `mix sobelow -r apps/app1 -r apps/app2 -r apps/app3` and get a single consolidate report
We have a Sidekiq Enterprise subscription and one of the feature of that product is unique job checking (https://github.com/mperham/sidekiq/wiki/Ent-Unique-Jobs). Since the Chewy sidekiq worker only encodes the class and ids...
I was running it to a situation where I set the log_level of a Logger middleware to always be `:debug`, but I was still seeing log output with the Logger...
I'd love to see this library support a high level operation similar to `S3.upload` that would do a copy in parts transparently to the end user. The Ruby's SDKs `AWS::S3::ObjectMultipartCopier`....
I'd like to be able to instrument connects from my finch instances. The various connect telemetry events don't expose the pool ID or Finch instance. I'd love to see this...
Is it possible to support Liveview 0.18.0?
Is it possible to trigger a rebuild of proactively warmed cache manually, and if so how. Also, should I be using `Cachex.fetch` in conjuction with a proactively warmed cached to...
Similar to the behavior in Phoenix.Logger, allow dynamical computation of log levels. This allows users to do things like suppress logs for health checks.
Fire up IRB: Yajl::Parser.parse(Yajl::Encoder.encode({"a" => BigDecimal.new("Infinity")})) lead to: Yajl::ParseError Exception: lexical error: invalid char in json text. {"a":Infinity} (right here) ------^ Infinity is not legal JSON and the parser correctly...