2018-11-02 19:07:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Bundler; end
|
|
|
|
if RUBY_VERSION >= "2.4"
|
2019-06-01 05:49:40 -04:00
|
|
|
require_relative "vendor/fileutils/lib/fileutils"
|
2018-11-02 19:07:56 -04:00
|
|
|
else
|
|
|
|
# the version we vendor is 2.4+
|
|
|
|
require "fileutils"
|
|
|
|
end
|