Вы также можете поместить конфигурацию в spec_helper.rb , если не хотите присоединять --color каждый раз, когда запускаете rspec.
RSpec.configure do |config|
# Use color in STDOUT
config.color_enabled = true
# Use color not only in STDOUT but also in pagers and files
config.tty = true
# Use the specified formatter
config.formatter = :documentation # :progress, :html, :textmate
end