Jan Stevens
Jan Stevens
Hello, We always use bullet but in our new project using rails 5.2.rc1 we notice that using `config.active_record.verbose_query_logs = true` the query is always reported to origin from the bullet...
This PR prints the warnings from Aglio to the user console. I found it very easy to see the warnings (this indicates why the layout would not render), also helps...
Hello, Why did version 1.0.0 remove the html compressor? We have a lot of templates and our JS became noticeably bigger
From the ongoing discussion in #57 I took a small stab at it: - Extend `Callbacks` to include `before_request` and `after_request` callbacks - Pass the callbacks to the Executor so...
Hello, Thanks for this project, after struggling a day with various other GraphQL ruby clients I finally got recommended this one. The only part I'm fighting with is how I...
Hello, Since the last update to this awesome project is 4 months ago I decided to create a fork and manually do some pull requests. Right now I've added the...
Fixes #2427 When a dynamic page `getStaticProps` returns `{ "notFound": true }` the returned `html` from the pages `renderReqToHTML` will be null: https://github.com/vercel/next.js/blob/b188fab3360855c28fd9407bd07c4ee9f5de16a6/packages/next/server/render.tsx#L969-L977 Internally Next.js Server deals with this in...
### Issue Summary When a 404 gets triggered because of a dynamic page which does not exist, the returned json for that non existing page contains the HTML of the...
In rails it happens that you need to restart your complete server, coming from pow I could do it "easily" by touching a file `tmp/restart.txt` in my application folder. It...
Hello, We use a lot of default scopes / searches and sorts with ransack, for example we have in our controller ```ruby def index q = Tiger.preload(:animal, :cage).search(params[:q]) q.by_cage_id =...