exAspArk
exAspArk
Hey 👋 Not sure if anyone else needs it, but I wanted to be able to open files in a new buffer instead of windows or tabs. For example, by...
Hi, When I test the following code with `Pry`: ```ruby # foo.rb class Foo def inspect puts "Swallowed exception in #inspect" raise "bar" end end require 'pry' binding.pry ``` It...
Hey, I often see an error like: ``` [error] Cowboy returned 400 because it was unable to parse the request headers. This may happen because there are no headers, or...
Hi, Are there any options to describe schema with dynamic keys? Let's say I have a hash where keys are string numbers: ```ruby { foo: { '1' => { name:...
Fixes #170
Hey! I have a weird bug in my production application which I was able to reproduce in the repo with the latest `master` in `test/mongo_ecto_test.exs`: ```elixir test "where in ids...
We are looking for people to help out and maintain the gem since our company no longer uses [Apollo Engine](https://www.apollographql.com/engine/). Please comment on this issue if you're interested.
Hi, I have the following case: ```ruby require 'yajl' valid_json = '{"1":{"11":11,"12":12}}' invalid_json1 = valid_json.sub('":12}}', '') # => {"1":{"11":11,"12 Yajl::Parser.parse(invalid_json1) # => {"11"=>11} invalid_json2 = valid_json.sub(':12}}', '') # => {"1":{"11":11,"12"...