Jean Mertz

Results 58 issues of Jean Mertz

I tried to implement an FPS limit solution in my game by returning early from `Game::draw` if the minimum time between frames wasn't met yet, but noticed that this broke...

This exposes a toggle to enable/disable vsync. Some observations: * Because we don't have a builder for the window preferences, this is a breaking change (though a minor one). *...

I wanted to iterate over all currently pressed keys, which the current API does not expose.

This library looks great, and I love the simple API. I considered using this + [fasttemplate](https://github.com/valyala/fasttemplate) to transform JSON messages. `fasttemplate` supports passing a byte slice as the value to...

enhancement
question

Do you feel something for extracting "finding `.ruby-version` and reading its content" into a separate function like `__ruby_version_content`, and using that in the public `chruby_auto` function? There is only the...

@postmodern looking at this test: https://github.com/postmodern/chruby/blob/master/test/chruby_auto_test.sh#L102-L109 ``` bash function test_chruby_auto_leave_project_dir() { cd "$test_project_dir" && chruby_auto cd "$test_project_dir/.." && chruby_auto assertNull "did not reset the Ruby when leaving a versioned directory"...

tests

Whenever I assert the rendering of a template, I need to explicitly call `render` inside the `call` method for the specs to pass. Going down the stack a bit, it...

See the below specification: ``` ruby context 'For valid authentication' do Given { subject.params = { authentication: { email: '[email protected]' } } } Given { subject.authentication.stub(:legitimate?).and_return(true) } Given { Authentication.any_instance.stub_chain(:user,...

It would be nice if the gem was updated to generated the locales.js file in vendor/assets/javascripts/locales.js. Perhaps even better would be to make the path configurable but at least having...

I have (I guess?) some plugin that allows me to type `#` and it shows up as `# =>` in any Ruby document. It would be great if seeing-is-believing would...