Sha256: f777ad005483966064340faa452fc7a73ba5bc6bc4cbba1ea1745c2916c7f971
Contents?: true
Size: 594 Bytes
Versions: 1
Compression:
Stored size: 594 Bytes
Contents
# Released under the MIT License. # Copyright, 2022, by Samuel Williams. require 'bake/modernize' require 'build/files/system' def readme update(root: Dir.pwd) end def update(root:) update_filenames(root) end private def update_filenames(root) root = Build::Files::Path.new(root) md_files = root.glob("*.md") # Move all .yml files to .yaml files :) md_files.each do |path| new_path = path.with(basename: path.basename.downcase) unless new_path == path Console.logger.info(self, "Moving #{path} to #{new_path}...") system("git", "mv", "-f", path, new_path) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bake-modernize-0.13.0 | bake/modernize/readme.rb |