spec/spec_helper.rb in danger-swiftlint-0.3.0 vs spec/spec_helper.rb in danger-swiftlint-0.4.0
- old
+ new
@@ -7,9 +7,13 @@
RSpec.configure do |config|
# Use color in STDOUT
config.color = true
end
+RSpec::Matchers.define :including do |x|
+ match { |actual| actual.include? x }
+end
+
require 'bundler/setup'
require 'pry'
require 'danger'
require 'cork'
\ No newline at end of file