Krzysztof Zych
Krzysztof Zych
https://github.com/mikepjb/vim-chruby is a de-facto rewrite of chruby in plain vim. It solves the problems people have (well, that I had) with chruby in vim: without it, the only way to...
https://gitlab.com/k3rni/pxdoc is a docset for the Phoenix Framework. When my [PR to add it to Dash](https://github.com/Kapeli/Dash-User-Contributions/pull/859) was rejected, I learned that Dash already has one, but it works only with...
From RFC2445: ``` The BYSETPOS rule part specifies a COMMA character (US-ASCII decimal 44) separated list of values which corresponds to the nth occurrence within the set of events specified...
Polyglot is my plugin of choice for syntax highlighting. However, ember.vim overwrites its rules for Handlebars files: ``` vim :autocmd BufRead *.hbs --- Auto-Commands --- BufRead *.hbs set filetype=html.handlebars syntax=mustache...
It's been added to the gem package task's prerequisites, so the binaries will be changed locally and then packed into the gem. This PR doesn't contain the packed binaries themselves....
Using [upx](https://upx.github.io/) on shipped wkhtmltopdf binaries drastically reduces their size. Each of the binaries (linux x86, linux x86_64, darwin x86) reduces to about 15MB. And with modern CPUs the decompression...
``` ruby require 'virtus' class OneField include Virtus.model attribute :one, String end module OtherField include Virtus.module attribute :two, Integer end obj = OneField.new one: 13 puts obj.attributes # (1) obj.extend...