Abbas Mousavi

Results 9 comments of Abbas Mousavi

@mxcl The scenario in my mind is to use cocoapods for 3rd party libraries and Cake to modularize my code. So for start, it is enough if the project builds...

@mxcl I have a sample project here: https://github.com/abbasmousavi/CakePods It has some pods and is integrated with Cake and it builds successfully. I am trying to add required dependency and search...

Sorry for the delay, thank you for fixing the project, now it builds. I am trying to implement the steps that you have done on the project in the code.

@mxcl please take a look at https://github.com/mxcl/Cake/pull/52. I am not familiar with tuist/xcodeproj, I have tried to follow the patterns in the code and I have tested the result on...

+1, please review and merge this.

The problem persists after #325 merge. @nicklockwood

If I use `.field("teams", .json)` it ends up on line 37 of`postgres-nio/Sources/PostgresNIO/Data/PostgresData+Array.swift` with this fatal error: `fatalError("No array type for \(elementType)")` `Fatal error: No array type for JSONB[]`

@0xTim if I wrap it in a class like ``` class TeamWrapper: Codable { let team: [[Person]] } ``` It will work without any problem, but the unwrapped double array...