Jeremy Woertink

Results 378 issues of Jeremy Woertink

In rails, I have this method ```ruby format = number_only ? "%n%u" : "%n%u #{thing.pluralize(number)}" number_to_human( number, format: format, precision: 2, units: { thousand: 'k', million: 'm' } ) ```...

feature request

A lot of the built-in tasks use `ARGV` and should just take advantage of our native CLI Args. These are currently done: * [x] - exec task * [x] -...

clarify api

Imagine you have params that come from some javascript request and they look like `{user: {nickname: "TheDude"}}`. It would be cool if we had a method to convert that in...

feature request

In the case that you need to tell lucky to not watch certain crystal files, we should have a way to customize that. ```yml host: 127.0.0.1 port: 5000 ignore_files: -...

feature request

This code: ```crystal class SomeAction < BrowserAction param code : String get "/some-action" do spawn { puts code } head 201 end end ``` results in this error at runtime:...

bug

[Ameba does this](https://github.com/crystal-ameba/ameba/blob/master/shard.yml#L11-L16 ) which is pretty neat. This would allow you to put it in a project as a development_dependency, then when you run your `shards install`, you could...

When using `IRB`, if you're writing out multi-line code, and you make a typo, you can use `ctrl-C` to sort of reset you back to normal. Take this for example:...

enhancement
blocked

Pulling this in from https://github.com/crystal-community/icr/pull/75#issuecomment-349060653 @veelenga wrote : > edit command may be a nice addition now. It could allow user to edit the file in vim or something like...

enhancement

I'm using this with Vue2, so not sure if it's related to that.... It seems which ever items has `children: []`, any item below that never gets rendered, but is...

I think this should be built in to Crystal. Right now from what I can tell, there's not a way to create an HTTP client using proxy without hand rolling...