Sha256: 0e9353ee3c38d7acc6b5179794de845100964c928a3105c0af1595f877782497
Contents?: true
Size: 760 Bytes
Versions: 5
Compression:
Stored size: 760 Bytes
Contents
# frozen_string_literal: true # Released under the MIT License. # Copyright, 2020-2022, by Samuel Williams. require "bake/modernize/version" require 'build/files/glob' require 'fileutils' module Bake module Modernize ROOT = File.expand_path("../..", __dir__) TEMPLATE_ROOT = Build::Files::Path.new(ROOT) + "template" def self.template_path_for(path) TEMPLATE_ROOT + path end def self.copy_template(source_path, destination_path) glob = Build::Files::Glob.new(source_path, '**/*') glob.each do |path| full_path = File.join(destination_path, path.relative_path) if File.directory?(path) FileUtils::Verbose.mkdir_p(full_path) else FileUtils::Verbose.cp(path, full_path) end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems