Pierre-Louis Gottfrois
Pierre-Louis Gottfrois
If the feature already exists, this is more of a question, otherwise it would be really nice to be able to do this. Kubernetes allows to define ENV variables using...
I'm trying to perform a where clause with a `$in` but without success: ``` Hookshot.Hook.with_events([1, 2]) |> Hookshot.Repo.all ** (Ecto.Query.CastError) web/models/hook.ex:63: value `[1, 2]` in `where` cannot be cast to...
I guess an image is worth a million words here: 
I have the following files: ``` ruby # app/controllers/api/v2/base.rb module Api module V2 class Base < Grape::API mount V2::Jobs end end end # app/controllers/api/v2/jobs.rb module Api module V2 class Jobs...
Currently the worker use the main broker connection which define on which exchange to subscribe to. Would be nice if we could specify the exchange on a per consumer basis....
I also would like your feedback on this. I'm in a situation where we use hutch in multiple services. Each consumers is namespaced under a `consumer` ruby module. We try...
I have the following scenario: 1. `GET` some url, returns a cacheable (for couple seconds) result with proper headers 2. `GET` same url within cached timeframe, does not hit the...
Thanks for the great work! I was looking for a way to get the raw http body. I'm using the gem to fetch my jsonapi API but i'd like to...
Is it possible or in the road map? ``` ruby class Song belongs_to :artist end class Artist has_many :songs end class SongRepresenter property :artist, extend: ArtistRepresenter end class ArtistRepresenter property...