Cody Cutrer

Results 171 comments of Cody Cutrer

While syntactically you can nest `let`s, at runtime, you get an error: ```ruby describe "something" do let(:abc) do let(:de) do 1 end 2 end it "works" do puts abc puts...

Yup. I just ran into this. First of all, it was broken completely if you didn't pass either an `other` or an `options`. But it's still counter-intuitive that calling `commit.diff`...

I've now tested with libssh2 built against gcrypt. when attempting to use in-memory ssh key without a public key (as you can with OpenSSL), you get `Rugged::SshError: Failed to authenticate...

I'm pretty sure the previous error was because libgcrypt can't handle my private keys at all. When using a libssh2 _with_ openssl, but _without_ ssh memory credentials (???), I get...

And backing up to the tangential discussion on having multiple managed providers, and allowing the UI to choose which provider to use of multiple managed providers, as well as knowing...

at the lowest level, _anything_ would be sufficient, so that the trigger's module id is in the context map in some way that's sent to the action's execute method. ideal...

> Even if it's just a boolean flag that would be sufficient. Or maybe a new field could be added to `event` that is always there and has an enum...

Yesterday I wrote #3135 without realizing this PR existed (even though I've been pointed to it before! Whoops, I must have a bad short term memory.) My PR doesn't reuse...

> @ccutrer As I said above: It's very difficult to create a generic transformation profile, even if I would prefer to do that. The reason is that the transformations have...

FYI I now have script-defined profiles implemented in a pre-release of the openhab-jrubyscripting helper library. You can check out the docs with an example at https://ccutrer.github.io/openhab-jrubyscripting/OpenHAB/DSL.html#profile-class_method. If you have a...