Jean-Michel Fayard

Results 208 comments of Jean-Michel Fayard

I added support for kotlinVersion / androidGradleVersion in #41

Ah ah ah, I wish we were so advanced, but no it's just me

The `versions.properties` is auto-generated and will come with available updates next time you run `./gradlew refreshVersions` The rest is not

The CI doesn't seem to be working :)

@pavlospt it still doesn't run

The only way to test that a browser opens is to try it. It's good to have `open()` available. You could have `xdgOpen()` as well. But for something so common...

You could handle multiple platforms this way: ```kotlin fun main() { // default : all commands available shellRun { git.clone("https://github.com/lordcodes/turtle") } // a few core abstractions that work everywhere shellRun...

I think it's too complex though. Since there are subclasses of commands like `GitCommands`, `FileCommands`, ... we would have a matrix of `(All, Multiplatform, Unix, Linux, Mac, Windows) x (GitCommands,...

> It is actually something I have wondered about doing for a while, but haven't committed the time to doing it yet. I think the most painful part would be...

Many commands that either can take a long time to complete or can have potentially big side effects have a dry run flag. That's the case for Gradle for example:...