Hubert
Hubert
Hey, I just wanted to upgrade to doorkeeper 2.0 and grape 0.10 and noticed, that this gem doesn't work anymore. It seems that `Doorkeeper::DoorkeeperForBuilder.create_doorkeeper_for(*args)` has been removed from doorkeeper. So,...
I'm adding parallax to some elements at runtime. The first time, it works fine. But when I remove an element from the DOM, and I move my mouse outside the...
### Steps to reproduce > I tried to use the gist from [here](https://gist.github.com/coorasse/3f00f536563249125a37e15a1652648c) to reproduce the issue, but it throws an error `CanCan::NotImplemented: This model adapter does not support fetching...
Hi, consider the following ability: ``` class MyAbility include CanCan::Ability def initialize can %i[index show], Product, count_on_hand: [1..Float::INFINITY, nil] end end ability = MyAbility.new ``` The user should have access...
**Is your feature request related to a problem? Please describe.** A lot of sites these days (e.g. Google) split a login screen into two different views: First you enter the...
My application **does not use** `Money.default_infinite_precision = true` per default. However, in some cases I need it to be turned on. I haven't found a way to set it on...
Hi, I'd like to export opening hours into the schema.org format, see https://schema.org/OpeningHoursSpecification. Background is that I want to give Google the business hours via json+ld on my website, see...
When using long descriptions, e.g. ``` value "width", "Resizes the image to given width (in pixels) and keeps proportions. Resizing the image bigger than the original is not possible.", value:...
Rails provides with `Rails::Secrets.encrypt("foo")` a way to securely encrypt information. Rails 7 provides a nice interface to it via `encrypts :my_attribute`. Is there some way, this could be used with...
It seems like when handling unknown attributes for a `StoreModel.one_of` type, the keys of the backend get converted into symbols. See this example class: ``` class RestConfig include StoreModel::Model attribute...