Gabriele Renzi
Gabriele Renzi
html5 elements are also not indented i.e. <header>, I can't set g:html_indent_tags in .vimrc.after because apparently the variable is not initialized at that point yet. I reckon we should put...
@lossless1 it's probably invalidating the cache
oh hey @pirj ! Sorry I didn't realize this repo was public :D I'll try to address your comments in the next couple days, let me mark this as draft,...
also seen on on 1.9.3-p0. As a sidenote, should we report issues that happen with 1.9.2 but not 1.9.3 ?
I also hit another issue with this now, while using ActiveData which has type checks, and `ApolloUploadServer::Wrappers::UploadedFile` is not the same class that was expected (and not even an `Object`...
`foo *whatever` explodes an `Enumerable` as multiple arguments, i.e. ``` def foo(a,b, *rest) p [a,b,rest] end ary = [1,2,3,4] foo( ary) # => ArgumentError: wrong number of arguments (1 for...
it sorta works, in the sense that it now does params.require(:xx).permit(*MY_CONSTANT) which will fail at runtime cause MY_CONSTANT is from another scope (should be `MyModel::MY_CONSTANT`) but that is good enough...
it's quite hard to plan an integration and be sure it will work with real data without a schema, it would be great if you could publish it.
I also see this, some additional info in case it might help: I experience the errors in an extensionless script with a `vim: syntax=ruby` modeline. scriptnames for me is ```...