Yann Gouverneur
Yann Gouverneur
Using the spreadsheet gem I've hit this bug when trying to load the attached XLS file, which obviously is bloated following a "save as" from XLSX to XLS in Microsoft...
Behavior is inconsistent between "flat" and nested schema when an exception occur. ## To reproduce ```ruby NestedSchema = Dry::Schema.Params do required(:value).filter(format?: /^\d+$/).value(:float) end ParentSchema = Dry::Schema.Params do required(:data).hash(NestedSchema) end #...
What would it take for the Rake/DuplicateTask cop to work across all rake files? The use case I'm facing is the following: * task_a.rake defines :task_a * task_b.rake defines :task_a...