Faust Aguilar

Results 203 comments of Faust Aguilar

@samueleaton Sure, I use `shard check` on CI to ensure all dependencies tags are ok :wink:

@samueleaton Oh, I''m getting this error now: (no idea why :sweat_smile: ) ``` myapp1 git:(master) ✗ shards Fetching https://github.com/faustinoaq/sentry-run.git Fetching https://github.com/samueleaton/sentry.git Failed git ls-tree -r --full-tree --name-only v1.0.0 -- shard.yml...

I already cleaned up my shards cache :sweat_smile:

@samueleaton So weird, you have tagged sentry correctly, I checked twice :sweat_smile: I tried to test only sentry as dependency (without sentry-run) and I still got this error: ``` ➜...

I just found the issue (mentioned by @hmans on gitter) @samueleaton You have a 1.0.0 tag here: https://github.com/samueleaton/sentry/releases/tag/1.0.0 Can you remove it? :sweat_smile:

Well, I think this may be helpful to detect and report new crystal bugs :sweat_smile: Although, we should log the response as well `Log.logger.log(response)`, so this way is easier to...

Yeah, that functionality is called [Code Action](https://github.com/Microsoft/language-server-protocol/blob/master/protocol.md#code-action-request), and is in our Roadmap :) I'm thinking in taking information from error messages like this: ```crystal require "http" server = HTTP::Server.new("0.0.0.0", 8080)...

Hi, I already implementing basic Code Actions (including support for RubyMine :tada: ) although I think scry doesn't support code style suggestions yet, I guess we can include ameba tool...

So `crystal tool references` would be just like `crystal tool implementation` but reversed, right? ```crystal def foo # here you use go to references end foo # here you use...

> Does scry actually shell out to `crystal tool implementation`?! Yep :sweat_smile: We used to use implementations direct from compiler but scry was too slow and too big, please see:...