Yacine Petitprez

Results 31 comments of Yacine Petitprez

Hello, 1/ Would some people confirm they are agreeing with it? 2/ Any name ideas? I was thinking about `async`/`defer` but it seems close to `` attributes which is even...

Crystal is compiled software so it's hard to get information over your code (e.g. migrations files, model description) without compiling your code first. To use the CLI, you need to...

CLI is good for seed + migration currently. ```Makefile migrate: $(CRYSTAL_RUN) src/endpoints/server.cr -- clear migrate seed: $(CRYSTAL_RUN) src/endpoints/server.cr -- clear seed ``` this is an example of one of my...

Sorry for late reply. I'm not having a minute for myself until probably March. I don't understand this issue, there is a travis CI [here](https://travis-ci.org/anykeyh/clear). Isn't it enough ?

Constructor by hash should not be used; it is used internally with recordset but should not be used outside to feed the model like you do. The problem lay in...

I think there is a drop_table. Or I did it after you asked for it. You can still use `dir.up { execute "..." }` for operations not supported yet. Anyway...

I'm having little control over the generated content, as it uses built-in `crystal docs` command to generate the APIs. I will might give a look but this is not in...

Currently, I don't provide any tool to generate the schema and models based on the database. Work must be done over the CLI. Will proceed in the next week in...

Hello, I didn't went all the way with the fix as I had a though planning the last days. I'll make a proper test case and fix it during the...

Hello, I just made a spec and it passes without problem. Here is my test case based on your database schema: ```crystal require "../spec_helper" module ModelDifferentColumnNameSpec class Brand include Clear::Model...