Christian Nadeau

Results 7 comments of Christian Nadeau

@rogerluan in case you have ruby 2.4.10 and get `Undefined method delete_prefix for ` https://www.bountysource.com/issues/48195031-string-delete_prefix-is-documented-for-2-4-1-but-does-not-exist-until-2-5-0dev It's maybe not the optimal way to fix this, but it fixes the error on...

a bit late, but I ran into the exact same issue in case it might help someone It's caused by cocoapods-binary that will precompile ALL pods not **EXPLICITLY DEFINED** in...

Hi @jkelvie , thanks for the ultra fast answer! Here is the [documentation of AMAZON.LITERAL](https://developer.amazon.com/docs/custom-skills/literal-slot-type-reference.html) You're absolutely right, I was trying to to force an intent, but that's a good...

Hi @jkelvie , as mentioned [above](https://github.com/bespoken/virtual-alexa/issues/66#issue-329961633), the schema could not be parsed and prevents any tests from being executed. Adding at least there definition and treating them as literals for...

Have a look at: https://github.com/grab/cocoapods-binary-cache/issues/62#issue-797678848 probably caused by Realm

🤔 according to [this test](https://github.com/opentok/opentok-network-test-js/blob/00d18222a1e36496d5d23db22c2644f721a7fe7f/test/NetworkTest.spec.ts#L31), it should be `import * as OT from '@opentok/client` but, from the sample (in JS, not in TypeScript), commenting the [opentok.min.js](https://github.com/opentok/opentok-network-test-js/blob/master/sample/index.html#L4) script and importing OT...

Found how to import it from TypeScript: ``` import '@opentok/client'; declare var OT: any; ```