Nick Pearson

Results 7 comments of Nick Pearson

To work around this, I've always used nested `if`/`unless` statements, which isn't pretty but it works. So, if you have this in a language that has a `not` operator: ```...

I've used the `boolean-expressions` gem to handle boolean logic like requested, though not in the context of Liquid. I'll just leave this link here in case it helps someone who...

You should probably call `to_s` on `icon` before trying to `split` it. Before this change, a `Symbol` could be passed in, but now it requires a `String`, potentially causing existing...

It's not ideal, but you can work around this with a `capture`. Using your test case (`{{funk | replace: "}", '}}' }}`) as an example: ``` {% capture match %}}{%...

Thanks @pushrax. For what it's worth, I've been using this in production for a few years now, and it comes in handy pretty often and reduces the noise in otherwise...

@fw42 Sure thing — all done.

I encountered this same problem via the RDS console and was able to work around it. The error message says "You must explicitly specify a new DB cluster parameter group"...