Vern Coffey
Vern Coffey
The model: ``` class ContentImage < ApplicationRecord has_one_attached :image validates :image, attached: true, content_type: [:png, :jpg, :jpeg, :gif], size: { less_than: 20.megabytes }, dimension: { width: { min: 640 }...
Adding the ability to set timeout_in in the config file as a proc that evaluates with the user as an argument
When working with postgres jsonb columns, the build in rails where tools fail -------- ## Expected behavior Given that I have a postgres jsonb column like this: ``` create_table "widgets",...
I'm using a plugin to add a custom rule to add a shortcode and render a custom component in its place. This works when I render a simple tag like...
My application is doing a full reload on css changes. How can I prevent that? What version of esbuild will this work with? I'm using "esbuild-envfile-plugin": "^1.0.3", "esbuild-plugin-import-glob": "^0.1.1", "esbuild-sass-plugin":...