Module: Bake::Modernize

Defined in:
lib/bake/modernize.rb,
lib/bake/modernize/license.rb,
lib/bake/modernize/version.rb

Defined Under Namespace

Modules: License

Constant Summary collapse

ROOT =
File.expand_path("../..", __dir__)
TEMPLATE_ROOT =
Build::Files::Path.new(ROOT) + "template"
VERSION =
"0.25.0"

Class Method Summary collapse

Class Method Details

.copy_template(source_path, destination_path) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/bake/modernize.rb', line 29

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)
			unless File.directory?(full_path)
				FileUtils.mkdir_p(full_path)
			end
		else
			if stale?(path, full_path)
				FileUtils::Verbose.cp(path, full_path)
			end
		end
	end
end

.stale?(source_path, destination_path) ⇒ Boolean

Returns:

  • (Boolean)


21
22
23
24
25
26
27
# File 'lib/bake/modernize.rb', line 21

def self.stale?(source_path, destination_path)
	if File.exist?(destination_path)
		return !FileUtils.identical?(source_path, destination_path)
	end
	
	return true
end

.template_path_for(path) ⇒ Object



17
18
19
# File 'lib/bake/modernize.rb', line 17

def self.template_path_for(path)
	TEMPLATE_ROOT + path
end