Sebastian Porto

Results 52 issues of Sebastian Porto

Using rmagick 2.15 we get `[DEPRECATION] requiring "RMagick" is deprecated. Use "rmagick" instead` Thanks

Added the gem to a rails 3 project, immediately started getting errors like: undefined method `deep_merge' for "%Y-%m-%d":String undefined method`deep_merge' for ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]:Array I haven't...

``` underscore "SomeClassName" == "some_class_name" ``` Doesn't add _ at the beginning. ``` dasherize "SomeClassName" == "-some-class-name" ``` Adds leading `_`. What is the logic for this. Seems unexpected.

![image](https://user-images.githubusercontent.com/1005498/119209499-4f457e00-baea-11eb-8f6b-412d9bbf0b6b.png) After the function signature, the first expression in the function appears immediately. This makes this function harder to read than it needs to be as the function signature and...

When a function signature is long the formatter formats like this: ``` pub fn record_field( name: String, get: fn(record) -> field, field_codec: Codec(field), ) -> AsymmetricalFieldCodec(record, field) { ``` The...

Hi, for your consideration. Instead of formatting ``` case key_result, val_result { Ok(key), Ok(val) -> Ok(#(key, val)) _, _ -> Error("") } ``` Consider formatting like ``` case key_result, val_result...

When there are many custom types it can get quite hard to distingush where are they coming from. E.g. In Rust you can do `WizardStage::SelectRecepients`. But in Gleam you cannot,...

Although pattern matching is great most of the time, there are a couple of cases where I rather use if/else (based on my experience with other languages). 1. When I...

area:language

Unsure if this is possible, seems not. If I import a variant from a module, most likely I want to import all variants for that custom type. e.g. module a:...

area:language
stage:design

Hi I cannot upgrade `justinmimbs/date` to 4 because of the peer dependecy here. Would be great to have a new version with the new version of the dependecy. Thanks