rake
rake copied to clipboard
A make-like build utility for Ruby.
Fixing this requires moving a page, so I'm adding a step to the build process to enable adding raw HTML files, which lets me add a redirect page.
Consider this `Rakefile`: ```ruby require 'rake/clean' task default: :test task test: 'test.txt' file 'test.txt' => 'test0.txt' rule '.txt' => '.pre' do |t| sh 'cp', t.source, t.name end rule '.pre' do...
Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.13.2 to 2.13.3. Release notes Sourced from step-security/harden-runner's releases. v2.13.3 What's Changed Fixed an issue where process events were not uploaded in certain edge cases. Full Changelog:...
tl;dr - remove some win32-specific Rake logic that has long since been implemented by Ruby itself Rake's custom Windows-specific implementation (`Rake::Win32::win32_system_dir`) produces identical results to Ruby's standard library approach (`File.join(Dir.home,...
Before removing it in #669 this draft PR _(submitted as evidence only for the other PR)_ is intended to validate the equivalency of two approaches for determining Rake's "standard system...