Ev Dolzhenko
Ev Dolzhenko
Something like this would be golden for code review, I assume just needs some `git blame` + `git-commit-link` plumbing?
Currently if somebody uses something like `normalize_attribute :name` it makes impossible to have `normalize_name` method in the corresponding model, I suggest the defined method is at least given some kind...
I have just upgraded 0.3.0 => 0.3.2 and suddenly all the links turned virgin blue. Obviously the cause is https://github.com/sporkd/compass-html5-boilerplate/commit/411db5 which moved link styling from `stylesheets/html5-boilerplate/_reset.scss` to `templates/project/partials/_page.scss`. I guess...
I think it would be useful to provide something like `templateWrapper` option, which will be able to wrap the output, it would make it possible to simplify generation of RequireJS/SystemJS/etc....
Citext column type is useful on Postgres for case-insesitive comparisons [0], currently searching for such column fails with ``` NameError: uninitialized constant SearchCopGrammar::Attributes::Citext ``` placing following code in initializer fixes...
Given the cluster of 3 nodes, shouldn't the QLEN return the same results regardless the node being asked? In my tests only original node returns proper queue length, but `GETJOB`...
My problem is that I'm not using minitest in my Rails project, but it's being pulled in as a dependency by ActiveSupport and so this [1] test returns true and...
`git log -L '/int main/',/^}/:main.c` command shows `-L` as unknown though its in linked git doc https://manpages.ubuntu.com/manpages/kinetic/en/man1/git-log.1.html
Basically I would like to write ``` rbind to 'lib/**/*.rb' 'rake spec' ``` instead of ``` rbind to 'lib/**/*.rb' -e 'system \"rake spec\"' ``` Does this seems reasonable? Crude hack...
Enabled the option (rspec-allow-multiple-compilation-buffers) but when I run verify the output still goes into the `*rspec-compilation*`. On the contrary I wanted new buffer to be created, probably someone can advice....