Daniel Westendorf
Daniel Westendorf
Came here after reading https://www.speedshop.co/2017/12/04/malloc-doubles-ruby-memory.html ``` Using Ruby version: ruby-2.4.2 ERROR: ld.so: object '/app/vendor/jemalloc/lib/libjemalloc.so.1' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. ``` This is after `heroku...
Currently the helper generates a `` for helper holders. Add configuration option to control tag and classes, at a helper and global level.
Currently, when get_schwifty has a problem rendering a view partial, you have look at the background queue's log messages to determine what the problem was. Ideally, in development, we'd render...
Currently, when the Rack middleware intercepts the HTTP request, submits a `POST` to the `breezy-pdf-lite` endpoint, it completely downloads the response prior to returning a response. This results is a...
Partially fixes #172. Previously schema would be dumped as such: ```ruby create_table "my_table", id: :integer, limit: 2, unsigned: true do |t| ... end ``` `limit` and `unsigned` would be ignored,...
Dependent on #180 + sorts functions when dumping schema for consistent schema changes + reliably sorts views and materialized views in schema Previously, functions where dumped in an unsorted fashion,...
Adds support for the `limit` option when creating a map.
Previous to ddfa259bbec88aefa3eaf2942392b8473a477601, we saw table definitions dumped as such: ```ruby create_table "my_table", id: false, force: :cascade do |t| t.integer "id", unsigned: true, limit: 2, null: false ... end ```...