Marco Colli
Marco Colli
Do buildpacks define any convention about the **default port to use for the web server**? I mean, if I need to route the HTTP requests to a container built with...
I am building a Rails application that manages different K8s clusters for different customers. Basically the Rails application works like this: 1. The tenant writes some YAML files for configuring...
It would be useful to have the ability to add a link to the image. When the user clicks the image, that link is then opened.
This library loads jQuery textcomplete through `cdn.rawgit.com`, however that site is dead and no longer available. We need to replace this ``` https://cdn.rawgit.com/yuku-t/jquery-textcomplete/v1.3.4/dist/jquery.textcomplete.js ``` With a different CDN, this for...
Padding
Is there any way to configure the field padding? I have this CSS: ``` input { padding: .5em 1em; } ``` However emojionearea ignores that (and thus the inputs with...
I see that there aren't any commits since 2017... but the official Rails guide still suggests to use this gem. Is this gem still working / maintained? Is there a...
Slots
It would be nice to have a feature like this: https://viewcomponent.org/guide/slots.html For example, if you want to create a nav component, you may want to add multiple links: ``` ```
I have this model: ```ruby class Restaurant < ApplicationRecord def self.searchable_columns [:name, :username, :city] end end rest1 = Restaurant.create name: 'Restaurant Bracerie Marciano', city: 'Crevoladossola' ``` These commands return the...
Hello, is it possible to use DigitalOcean oauth (e.g. this official gem) to grant access only to specific resources (and not to the entire account)? For example, think about a...
## Environment - Ruby 3.3.1 - Rails 7.1.3.2 - Devise 4.9.3 ## Current behavior If you want to disable the format in Devise routes, this should work (based on comments...