This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setlocal expandtab shiftwidth=2 tabstop=2 | |
| set number | |
| set nocompatible | |
| syntax enable | |
| filetype plugin on | |
| " FINDING FILES: | |
| " search down into subfolders |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # frozen_string_literal: true | |
| class CustomFormatter | |
| RSpec::Core::Formatters.register self, :example_failed | |
| def initialize(output) | |
| @output = output | |
| end | |
| def example_failed(notification) |
OlderNewer