-
Great idea. Haven't dived into Tailwind because of the apparent need to pick a basic framework
```
âžś rails -v
Rails 7.1.3
Documents/Ruby/tailstart-main via đź’Ž ruby-3.3.0
âžś ./create.sh
Fetching …
-
As an example
```ruby
Dry::Schema.JSON do
each do
schema do
required(:name).filled(:str?)
required(:age).filled(:int?)
end
end
end
```
-
# Proposition de talk - Paris TypeScript
## Description du talk
**Voyage au pays des génériques**
Auto-complétion, type-safety, scalabilité… La plupart des développeurs s’accordent à dire que…
-
### Problem
We have a few large codebases which have been "runtime-typed" using the [DRY.rb](https://dry-rb.org) family of gems for a while now. All of the necessary type information used in our ap…
-
### Feature description
I propose that we add glossary entries for common physical types, along with reST substitutions to make them easier to use. Once that is done, I propose that we simplify/stan…
-
Hi! I am trying to get rid of `JSON.parse(input)` and `JSON.dump(output)` in activities/workflows and wanted to define Input and Output classes with dry-struct to define the structure.
Then I found…
-
### Descriptive summary
/Users/scherztc/.rbenv/versions/2.7.5/lib/ruby/gems/2.7.0/gems/dry-schema-1.10.2/lib/dry/schema/types_merger.rb:71: warning: Pattern matching is experimental, and the behavi…
-
I'm trying to use this lib for schema validation, and there is this use case where a key needs to be filled with a default, when nothing is passed.
I know that this wasn't in the scope of dry-valid…
-
Curry refers to a variety of dishes originating from the Indian subcontinent. It's characterized by the use of a complex combination of spices or herbs, including fresh or dried hot chillies. The spic…
-
I have code something like this
```
// things.ts
export type ThingDef = {
size: number;
};
const createThingDefs = (defs: T): { readonly [K in keyof T]: ThingDef } => defs;
export con…