kreintjes
kreintjes
Running into the same issue as @ghost. @dark-panda it seems your issue is fixed in https://github.com/presidentbeef/brakeman/pull/1578. You could try it by using the main branch of this repo as explained...
Same problem over here. We were performing the authorize_resource after the load, but since we used inheritance in our controllers the authorize was performed on the wrong instance variable. We...
In rails 5.1 and 5.2 this isn't a problem any longer, so it appears Ransack 2.x doesn't fully support Rails 5.0.
@gregmolnar We have updated our app to Rails 5.2, so for us it's no longer a problem, but it's possible other users run into this. Maybe it would be wise...
Same problem over here when mounting an external hard drive with ntfs-3g. When I reconnect the drive (thus remounting it with mac's default ntfs driver), the files do appear as...
> There are other places than logout that `redirect_to` would need `allow_other_host: true`. Yes indeed. For instance we need to be able to set it for the registrations_controller: https://github.com/heartcombo/devise/blob/v4.8.1/app/controllers/devise/registrations_controller.rb#L25-L29
Other examples that crash: `Unit.new('m^2/1')` and `Unit.new('m^3/1')`. However, `Unit.new('m/1')` and `Unit.new('m^2')/Unit.new('1')` do work.
@olbrich any update on this? In the mean time we have applied some hacks to prevent this behaviour (by overriding `self.eliminate_terms` with a custom implementation), but it would be nice...
@olbrich thanks for the response. Our issue indeed seems similar to #210 although not exactly. I'm not sure if the proposed solution is workable for us. In our application users...
I can confirm @lawso017's issue and @p8's fix (with some adjustments). However, when directly providing a file, shouldn't Carrierwave Direct set the key for you automatically? This also allows to...