lib/nyan_cat_wide_music_formatter.rb
# -*- coding: utf-8 -*- require 'nyan_cat_formatter' require 'nyan_cat_format/helpers' require 'nyan_cat_format/wide' require 'nyan_cat_format/music' NyanCatWideMusicFormatter = Class.new(NyanCatFormatter) do extend NyanCatFormat::Helpers include NyanCatFormat::Wide include NyanCatFormat::Music RSpec::Core::Formatters.register(self, :example_passed, :example_pending, :example_failed, :start_dump, :start) if rspec_3_or_greater? end