Jon Leighton

Results 28 issues of Jon Leighton

Thanks for Kooha! What a great tool. For recording terminal / code related demos it would be fantastic to be able to somehow capture the keystrokes and superimpose them visually...

enhancement
Needs design

@avdi has proposed a DSL syntax: https://gist.github.com/3757036 I initially resisted adding a DSL to FC because: - I didn't want to obscure "what lies beneath" too much - I don't...

If you're using handle_asynchronously, I think it's reasonable to assume that you want the delaying behaviour to be "transparent" within your app. Therefore, in test mode, the relevant methods should...

This provides a way to receive emails from other processes without resorting to shared mode and synchronous tests. For background, this builds on some work that I did to allow...

`` elements may be nested inside a `` element, and in this case the association is implicit and a `for` attribute is not needed on the ``. [Example from MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label):...

This input: ``` eex bla . ``` Formats to this: ``` eex bla . ``` But this input (note lack of space before `.`): ``` eex bla . ``` Is...

This function call doesn't get formatted: ``` eex ``` I think I would ideally expect the formatting to happen exactly as `mix format` does, which would mean this: ``` eex...

enhancement

This works fine: ``` eex ``` This causes an error: ``` eex ``` With this error: ``` Checking formatting... path/to/test.html.eex** (SyntaxError) nofile:1: syntax error before: fails (elixir) lib/code.ex:538: Code.format_string!/2 (prettier_eex_formatter)...

bug
enhancement

I would expect this line to get wrapped: ``` eex ``` But it doesn't. If I put a newline at the start: ``` eex ``` Then it gets reformatted with...

When PushType can't find a node, it [raises `ActiveRecord::RecordNotFound`](https://github.com/pushtype/push_type/blob/master/core/app/controllers/front_end_controller.rb#L41). I realised that I can add a `rescue_from` handler to my `ApplicationController` in order to handle this gracefully, but this isn't...