exAspArk
exAspArk
To update your helpers automatically, you can temporary hack it like: ``` ruby Dir["#{ Rails.root }/app/helpers/*.rb"].each { |file| require file } ```
Hey, I have an issue with permissions in a Pro version only: ``` > up version 0.7.7-pro ``` ``` > up deploy staging -v ... 561ms DEBU ensuring s3 bucket...
Not sure, but maybe allowing to write some custom key matchers would be useful in this case. For example: ```ruby REGEX = /\A\d+\z/ Dry::Validation.Schema do matcher(:string_number) { |key| key ~=...
OK, I'm at a point when I think that it all works incorrectly 😠I wrote a more complicated test case and tried to make it work: https://github.com/ankhers/mongodb_ecto/blob/2d195a33e4c2519b51ba37d003e836a72a880194/test/mongo_ecto_test.exs#L94-L113 It uses...
cc @ankhers @michalmuskala
Opened this PR to address the issue https://github.com/ankhers/mongodb_ecto/pull/171.
From our observation, you can either use `sidekiq_throttled` or `super_fetch`, but not both, unfortunately. > To prevent any problems, add the .setup! call to the bottom of your init file....
/cc @olleolleolle @glasser @SeanNguyen @lunks @jturkel @dynaum @klairetan
@bezoar17 in our particular case, we switched to Skylight since we use it for non-GraphQL instrumentations. Luckily, GraphQL-Ruby gem supports the tools (AppSignal, New Relic, Scout, Skylight, Datadog, Prometheus) out...
@joshjcarrier hey, thanks for opening the issue! The support for introspecting `lazy_resolve` wasn't implemented yet in the gem. > how this might be supported That's a good question. I'm not...