1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-18 16:55:13 +03:00
aports/testing/ruby-pathutil/tests-remove-unnecessary-requires.patch
Jakub Jirutka 0e4cb08457 testing/ruby-pathutil: new aport
Required for jekyll.
2021-07-01 13:38:53 +02:00

19 lines
501 B
Diff

--- a/spec/rspec/helper.rb
+++ b/spec/rspec/helper.rb
@@ -2,11 +2,12 @@
# Copyright: 2015 - 2017 Jordon Bedwell - MIT License
# Encoding: utf-8
-require "support/coverage"
-require "luna/rspec/formatters/checks"
-require "rspec/helpers"
require "pathutil"
+require "pathname"
+require "tempfile"
+require "tmpdir"
+require "json"
-Dir[File.expand_path("../../support/**/*.rb", __FILE__)].each do |f|
+Dir[File.expand_path("../../support/matchers/*.rb", __FILE__)].each do |f|
require f
end