Antonio Gelameris

Results 140 comments of Antonio Gelameris

There's the [FAQ](https://typelevel.org/cats-effect/docs/faq#scala-cli) section of the documentation that contains an example. Is it worth extracting in its own subsection? And maybe adding a section that shows the usage of decline-effect...

@nicopap your comment should be treated as documentation

@steinybot, how do you think we can proceed? The workaround works, and [the PR on ST4](https://github.com/antlr/stringtemplate4/issues/253) was merged. Can we close it, or is it something else to do? Plus...

It's not happening to me, the second time I prompt `sbt g8Test` the tests are not failing @melito00 @tonykoval can you confirm if is still happening? Env: ``` MacOsX 10.15.7...

After more than a week of investigations, I've been able to shrink down the problem. Let's start noting that [JGitIgnore](https://github.com/foundweekends/giter8/blob/develop/library/src/main/scala/giter8/JGitIgnore.scala) uses [FastIgnoreRule](https://github.com/foundweekends/giter8/blob/develop/library/src/main/scala/giter8/JGitIgnore.scala#L30) from the library `org.eclipse.jgit.ssh.jsch`. I wrote this test,...

@yoohaemin you are welcome if you want to contribute (I can't for this particular issue since I don't speak Japanese). You can simply submit a PR to modify [docs/ja/03/00.md](https://github.com/foundweekends/giter8/blob/develop/docs/ja/03/00.md) and...

Thanks for reporting. May I ask you if this happens with custom resolvers defined directly in the sbt build?

The fix is as simple as changing [this line](https://github.com/foundweekends/giter8/blob/develop/library/src/main/scala/g8.scala#L342) from ``` parameters.get("name").map(workingDirectory / G8.normalize(_)) ``` to something like: ``` parameters.get("name").map(name => workingDirectory / G8.normalize(name.replaceAll("""\W""", " ").trim())) ``` Using `wordOnly` will...

> I guess we could do something like `name.replaceAll("""[^a-zA-Z0-9\-_]""", " ")` so `_` and `-` are accepted? It's a good idea. Maybe it's worth extracting it in an ad-hoc templatizing...