Yaro Shm
Yaro Shm
Today I was adding meta-tags to an existing app, and had to modify 50+ controllers & actions - a lot. ...so I thought: what If we could set meta tags...
perfect feature for the "one-size-fits-all theme" concept 💯
easier to navigate this way
Rails 7alpha Ruby 3 Getting this error when trying to add acts_as_taggable:
you shouldn't add `write` methods into helpers. it would be better to move [that code](https://github.com/Bishwas-py/deviser-club/blob/main/app/helpers/image_gen_helper.rb) into a Service. For reference, see how I [moved GenerateQr into a service](https://blog.corsego.com/qr-code-generation-active-storage-service-objects)
something like `tabindex="0"` should be added to the links so that they can be `Tab`-bed to. Will add more on this later @yshmarov ...
Hi! Actually I was looking for quite the opposite of what the gem provides - I want to validate that a field contains **only** an emoji. Like `validates :icon, emoji:...
## Description & Reproduction passwordless = magic link login (instead of devise). ran on this repo: https://github.com/yshmarov/insta2blog.com that's not a hard-coded secret right here, just a path: ## Expected Behavior...
## Description & Reproduction using devise, scanned this repo: https://github.com/corsego/corsego/ and the same devise exception gets raised twice: ## Expected Behavior ## Actual Behavior ## Possible Fix ## Your Environment...
When running `passwordless_sign_in(@user)`, I get the error `NoMethodError: undefined method `session' for nil`. It breaks [here](https://github.com/mikker/passwordless//blob/3b12614dd0ca377e7dc8c57ba9221a56538e5816/lib/passwordless/test_helpers.rb#L14-L15). It looks like `@request` is `nil` ``` rails 7.1.3 ruby 3.3.0 passwordless 1.4 ```...