spec/spec_helper.rb in emoji_data-0.0.3 vs spec/spec_helper.rb in emoji_data-0.1.0.rc1

- old
+ new

@@ -1,5 +1,16 @@ require 'rspec' +require 'simplecov' +require 'coveralls' +SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[ + SimpleCov::Formatter::HTMLFormatter, + Coveralls::SimpleCov::Formatter +] +SimpleCov.start do + add_filter '/spec' + add_filter '/.bundle' +end + require 'emoji_data' include EmojiData RSpec.configure do |config| config.color_enabled = true