Stefan Schüßler
Stefan Schüßler
Is it just the check that is not working or the tool itself?
@Marenz does the example work for you? You might have to adjust the devise. Run the `tty` command to find out a terminal's name. For example, on OS X the...
The file ending should be `.eco.erb`. Everything within `` is handled by ERB, whereas everything within `` is handled by Eco: ``` ``` This is because ERB replaces `
@yolk just wanted to let you know that I would also prefer to have a Savon free variant as the project's current state is a little uncertain: https://github.com/savonrb/savon/issues/904 What about...
Related to #78 – the `/=` ligature is already problematic in Ruby, but making `!=` and `/=` look identical would break the font.
@hauleth that looks good. I think the font should not attempt to interpret the characters or imply a meaning. It should merely make them look a bit nicer, IMO.
> Alternatively any of them should look like `≠` Sorry, I don't follow. Do you mean "none of them"?
FYI `BatchLoader` undefines several methods (see [`batch_loader.rb:144`](https://github.com/exAspArk/batch-loader/blob/e8148d84ce500f8f4c155ab1f5bc7a4fb943511d/lib/batch_loader.rb#L144)) including `is_a?` and PP's `pretty_print` which messes with IRB's inspector logic. If you try it outside of IRB, you'll see the actual `inspect`...
The delegation only works for / relies on method calls. Here's another example: ```ruby require 'batch-loader' class Foo; end foo = BatchLoader.for(1).batch do |ids, loader| ids.each { |id| loader.call(id, Foo.new)...
> If you enqueue or schedule one, it should not allow another job to enqueue within 10 minutes until that job runs. Since we don't schedule this job manually at...