Alexey Kuznetsov
Results
2
issues of
Alexey Kuznetsov
Currently plugin stops compilation process and throws an exception on ruby warnings ``` [00:56:48] Using gulpfile ~/code/myapp/gulpfile.js [00:56:48] Starting 'slim'... [00:56:48] Finished 'slim' after 8.53 ms [00:56:49] gulp-notify: [Compile Error]...
Here is an example: ``` > (1..4).to_json => "[\"1..4\"]" > JSON.generate [1..4] => "[\"1..4\"]" ``` ``` ruby class Range def to_json(*a) { 'json_class' => self.class.name, # = 'Range' 'data' =>...