How do I set global configuration for RSpec in Ubuntu.
Specifically so, --color and --format specdoc stay turned on, across all my projects (ie every time I run rspe
In your spec_helper.rb file, include the following option:
spec_helper.rb
RSpec.configure do |config| config.color_enabled = true end
You then must require in each *_spec.rb file that should use that option.
*_spec.rb