Moshe Kamensky
Moshe Kamensky
Is there a reason to not support it? Thanks
When passing a `Pathname` object to `GoogleDrive::Session.from_config`, it fails since it expects a `Config` object. I suggest instead of check if the object is a string, to check if the...
I suggest including support for decorating `ActiveStorage` attachment. Since `ActiveStorage` does not derive from `ActiveRecord`, this is not automatic. I currently do it by putting ``` Draper.setup_orm(ActiveStorage::Attached) ``` in a...
I would like to have logical `or` between filters, for example find the users whose first _or_ last name is "Jones". I currently use the following to simulate it: ```ruby...
This is just a small issue, but I would expect ```ruby self.polymorphic = [] ``` to behave the same as no assignment at all. Instead, the behaviour changes, since the...
I would like the guards for an attribute (`:readable`, `:writable`) to receive the attribute name. The easiest solution for me would be if a lambda was allowed as a value...
Hi, I followed the advice in the pundit docs regarding closed systems, i.e., raising an exception when initializing the policy class. With this, a forbid_actions test fails, but I think...
Erb in my scss.erb files is not processed. The reason seems to be that the file type is not detected correctly, due to the order that extensions appear [here](https://github.com/sass/sassc-rails/blob/550bc2a272a31c252f2bcd43a8ce6476ff7ca8ed/lib/sassc/rails/importer.rb#L81). The...
Hi, In the [creation example](https://github.com/venuu/jsonapi-authorization/blob/master/docs/relationship-authorization.md#post-articles-with-an-author-relationship) (for instance), when ``create_with_author?`` does not exist, the fallback is to check ``update?`` for the user. I find this unreasonable: when creating the article I'm...
The way I read the docs, calling I18n.translate(:foo, default: [nil]) Should return `nil` rather than raise an exception (when `:foo` does not exist). However, this is not what happens in...