andyl

Results 38 comments of andyl

Is there a different JavaScript test runner that handles sourcemaps??

Looks like the answer is 'no' - you can only establish one jasminerice environment, which loads all the test libraries from spec/javascripts/spec.js.coffee. FYI - I'd like to establish multiple environments...

+1 for renaming 'environment' to 'suite'. My first reaction upon re-reading my own question was to think about development/test/production environments - and that is an incorrect way to think about...

@bradphelan thanks for your suggestions. I followed your advice and everything works. Here is my solution: In `routes.rb`: ``` ruby if %w(development test).include? Rails.env mount Jasminerice::Engine => "/jasmine/:suite" end ```...

@marcandre - welcome on board - another AST guru! Given your RuboCop experience, you might be interested in the work we are doing now to [integrate with Credo](https://github.com/andyl/rfx/issues/3). This integration...

> Patches in this context are meant to be the textual changes derived from an change in the AST Yes. My first implementation was to shell out to linux diff/patch...

@antedeguemon thanks for posting your code I was able to run it locally. Studying. @fuelen - have not seen `elixir-io_tty` before - it looks interesting!

I had another look - seems like `tty_sl` is an Erlang module that makes it possible to read character-by-character, and is used in `IEx.CLI.start`. I am unable to find any...

Good hint - thanks! Was able to make progress - now the client is talking with the liftbridge server. But still not working end-to-end - not pulling messages from liftbridge....

@tylertreat thanks for your encouragement I kept poking at it and now it runs end-to-end. :+1: So we have a working proof-of-concept, but the code is still rough and there...