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