Mathieu Derelle
Mathieu Derelle
I think `rotate_left` and `rotate_right` do not make much sense. If you imagine a circle, rotating left could mean - rotate the point at the bottom of the circle to...
For people who can not compile ruby with additional features (on heroku for instance) I've got an ok-ish workaround by subclassing Net::FTP and using the `open_socket` method from before this...
libpng12 has been replaced with libpng16 on heroku-18 (https://devcenter.heroku.com/articles/stack-packages) any update on this ? has someone been able to run this on heroku-18 ?
thanks @abury but it did not work for me I've replaced `gem 'wkhtmltoimage-binary` by `gem 'wkhtmltopdf-heroku'` and added an initializer : ``` IMGKit.configure do |config| config.wkhtmltoimage = Gem.bin_path('wkhtmltopdf-heroku', 'wkhtmltopdf-linux-amd64') end...
removing this gem and using the buildpack `https://github.com/chap/wkhtmltopdf-heroku-18-buildpack` worked for me
thanks could it be possible to have a similar way of doing it for arrays ? like `add_error("colors[3].foreground", :not_a_color)` for adding error to the forth hash inside array `colors` (it...
a workaround for my json api atm : ``` output['errors'] = flatten_outcome_errors(outcome.errors) ``` ``` def flatten_outcome_errors(nested_errors, memo_path = [], memo_flat_errors = []) return if nested_errors.nil? # can happen in arrays...
We have several `nuxt` projects using `airbrake-js` (with different versions : `1.5.0`, `1.6.3`, `1.6.8`, `v2.0.0-beta.2`) But it's not easy to migrate from the old package to the new ones, we...
Sorry for the late answer > Would adding an Airbrake module like the example one you provided fix this issue you mentioned? ie: would you monitor both frontend and backend...
it also need to add an error middleware in nuxt I've just found out about your express instrumentation https://github.com/airbrake/airbrake-js/tree/master/packages/node/examples/express It would work for us, because we use an hybrid express/[connect](https://github.com/senchalabs/connect)...