文件操作 - Rakefile
返回文件管理
返回主菜单
删除本文件
文件: /opt/puppetlabs/puppet/lib/ruby/gems/3.2.0/gems/sys-filesystem-1.4.4/Rakefile
编辑文件内容
require 'rake' require 'rake/clean' require 'rspec/core/rake_task' require 'rubocop/rake_task' CLEAN.include('**/*.gem', '**/*.rbc', '**/*.rbx', '**/*.lock') namespace :gem do desc "Build the sys-filesystem gem" task :create => [:clean] do require 'rubygems/package' spec = Gem::Specification.load('sys-filesystem.gemspec') spec.signing_key = File.join(Dir.home, '.ssh', 'gem-private_key.pem') Gem::Package.build(spec) end desc "Install the sys-filesystem gem" task :install => [:create] do file = Dir['*.gem'].first sh "gem install -l #{file}" end end desc "Run the example program" task :example do sh "ruby -Ilib -Ilib/unix -Ilib/windows examples/example_stat.rb" end RuboCop::RakeTask.new namespace :rubocop do RuboCop::RakeTask.new(:unix) do |task| task.patterns = ['lib/sys/unix/sys/**/*.rb', 'spec/*unix*'] end RuboCop::RakeTask.new(:windows) do |task| task.patterns = ['lib/sys/windows/sys/**/*.rb', 'spec/*windows*'] end end desc "Run the test suite" RSpec::Core::RakeTask.new(:spec) task :default => :spec
修改文件时间
将文件时间修改为当前时间的前一年
删除文件