lulalala

Results 24 issues of lulalala

I want to write my custom method which will do something differently when 3 attempts have been reached. I am wondering if I can access the attempts counter inside my...

I have a validation on an amount value. It is checked against a dynamic minimum value (think it as some currency exchange). So if the amount is not over the...

rails limitation

When `%{attribute}` or `%{model}` are used in the error message, they are always capitalized. This can look weird when they are placed at the middle of the sentence. This is...

rails limitation

When using Adobe InDesign 15, applying the font results in the forward slashes not shown. InDesign would warn and show the slash using the base font. If I force apply...

Inspecting the [original tmx file](https://github.com/browserquest/BrowserQuest/tree/master/tools/maps/tmx) its map file width is 16px. However the new tmx file in phaserquest is different, being 32px. When my 16px grid map is run under...

It seems when grass layer is deleted, character would be displayed on above tiles which it shouldn't (e.g. house roofs, top of trees). (However I can only reproduce it from...

For undocumented gems, YARD would default the return value as `Object`. However, when the lib contains its own namespaced `Object` class, and return value would be linked to that incorrect...

### Describe the problem I accidentally provided a hash `{}` as `value`, and this gives cryptic error: ### Steps to reproduce the problem ``` prompt.ask("Foo?", value: {}) ``` ### Actual...

### Describe the problem Allow `messages` to be passed as keyword argument. This is handy for us because we don't want to use a block to configure the ask, instead...

bug

In Ruby 3, keyword arguments has to be splat into its own using double splat. See https://www.ruby-lang.org/en/news/2019/12/12/separation-of-positional-and-keyword-arguments-in-ruby-3-0/ This fixes the following error: ```log in `initialize': wrong number of arguments (given...