Jonian Guveli
Jonian Guveli
I'm getting an error when using the buildpacks config below with a rails application: ``` https://github.com/heroku/heroku-buildpack-apt https://github.com/brandoncc/heroku-buildpack-vips https://github.com/gaffneyc/heroku-buildpack-jemalloc https://github.com/heroku/heroku-buildpack-ruby ``` ``` ! Could not detect rake tasks remote: : Could...
A stop command will also help with tools like [overmind](https://github.com/DarthSim/overmind). As it is now, if you start a rails server with it, it does not stop.
I'm using elasticsearch [aggregations](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations.html) to build filters. Currently I use only term count and min/max on numeric fields. I want to move away from es and was thinking to use...
Tantivy has [collectors](https://docs.rs/tantivy/0.17.0/tantivy/collector/index.html) that can be used for aggregations and especially [MultiCollector](https://docs.rs/tantivy/0.17.0/tantivy/collector/struct.MultiCollector.html) and can be used when the Collector types are unknown at compile time.
The proposed collector API looks great! Thank you for considering adding this feature. If only term count is added I think getting other aggregations like min, max, avg and mean...
Maybe savon can be removed and `net/http` can be used like in [europe](https://github.com/gem-shards/europe.rb) gem as you can see at https://github.com/gem-shards/europe.rb/blob/3622ce494fb10918a8413b827351d345f5c9a963/lib/europe/vat/vat.rb.
Another option is to use a lightweight SOAP helper like [lolsoap](https://github.com/loco2/lolsoap) that does not have many dependencies, only nokogiri. ```ruby # faraday can be replaced by net/http require 'faraday' require...
@yolk, looks great! Was the best solution to have zero dependencies. Thank you for your work!
Until #240 or #210 is accepted, you can achieve this with a module: ```js // nuxt.config.js module.exports = { modules: [ '~/modules/netlify.js' ] } ``` ```js // modules/netlify.js module.exports =...
Hi @logix2, on Arch Linux with `appmenu-gtk-module`, the menu-bars disappear for all the applications. Could you try with master branch, to see if the errors are fixed, or try without...