Results 11 comments of Simon Dean

Hi @fwang. Thanks for the context We have an existing codebase we’re migrating from v0.x to v1.x to v2.x. We also have some newer codebases for some proof of concept...

Lowering the upload speed fixed a similar issue for me on my Mac. I changed this line in `platformio.ini` from this: ``` upload_speed = 921600 ``` to this: ``` upload_speed...

Hi. This fixed a similar issue for me. I didn't need to add a `exports` entry to my `package.json` files though. I fixed my issue by adding this to my...

It might be worth replacing: commands :rvmcmd => "/usr/local/rvm/bin/rvm" with: optional_commands :rvmcmd => "/usr/local/rvm/bin/rvm" That might prevent puppet from checking to see whether the rvm bin exists, helping you avoid...

@peter-reperger thanks for the pull request. I've added some comments to the code.

@riaan53 this will be implemented by pull request #19

Closed by c113a57, available in new version v1.0.0

Hi Mamta. The module can't ensure a site is started or stopped if that's what you mean. It will require some extra code to do it as appcmd.exe works a...

Hi. The module uses appcmd.exe to perform its work which means it needs IIS to be installed. For Windows 2008 R2 you can use the dism module to install IIS...

Hi. This is big issue when writing unit tests in Kotlin. It's really easy to create unit test in Kotlin that implicitly returns a none void return type. JUnit then...