Janosch Müller
Janosch Müller
this would also fix #199
hi! this gem does not take special care of DB constraints. it basically just piggy-backs on active_records `dependent:` option and triggers at the same time as e.g. `dependent: :destroy`. as...
i also stumbled across this in a logging library which provides a `Log.warn` method. ## workaround: remove the private method ```ruby module Foo singleton_class.undef_method :warn end ``` ## explanation `#warn`...
> Do they provide it through method_missing? sadly yes. > What worries me is that fixing the warning is outside of user's control. not necessarily. it could say something along...
rebased to bring up-to-date with master. @tagliala could we get this one merged?
My use case is the same as in the original issue: running rails in API mode. I've been using this fork and the setting `parent_controller = 'ActionController::Base'` in production for...
hi! instances respond correctly now, but unfortunately, that neither helps with type checks nor with `rspec-mocks`. `rspec-mocks`' `#instance_double` method takes a class or module as argument, not an instance, so...
How about releasing the already merged fixes for now?
quick workaround: ```ruby config.middleware.insert( 0, Rack::UTF8Sanitizer, strategy: ->(invalid_str, sanitize_null_bytes: true) do invalid_str.force_encoding('utf-8').scrub('') end ) ```
These cases are handled correctly now: - `\1()` - `(\1)` - `(a)|b\1` - `(?a)|(?)\k` - `(a?)b\1` What remains to be solved are *potential* non-participating groups like `(a)?b\1` and `((a)|b)+\2`. To...