Sha256: 1c5f9f7c373826aa9c12e5a40ff08e0e3c1fb4bd43ccad6915eab247c227e135

Contents?: true

Size: 724 Bytes

Versions: 1

Compression:

Stored size: 724 Bytes

Contents

# Released under the MIT License.
# Copyright, 2020, 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

1 entries across 1 versions & 1 rubygems

Version Path
bake-modernize-0.13.0 lib/bake/modernize.rb