# frozen_string_literal: true ENV['CUCUMBER_COLORS'] = nil $LOAD_PATH.unshift(File.dirname(__FILE__)) # For Travis.... require 'cucumber/encoding' require 'simplecov_setup' require 'pry' require 'cucumber' RSpec.configure do |c| c.before do ::Cucumber::Term::ANSIColor.coloring = true end end module RSpec module WorkInProgress def pending_under(platforms, reason, &block) if [platforms].flatten.map(&:to_s).include? RUBY_PLATFORM pending "pending under #{platforms.inspect} because: #{reason}", &block else yield end end end end