Sha256: f95d2c4ed5e5751f0157228fce722649ee870653e62be83dcd05e33f8b6cf253
Contents?: true
Size: 1.93 KB
Versions: 2
Compression:
Stored size: 1.93 KB
Contents
# Sample Maid rules file -- a sampling to get you started. # # To use, remove ".sample" from the filename. Test using: # # maid -n # # For more help on Maid: # # * Run `maid help` # * Read the README at http://github.com/benjaminoakes/maid # * For more DSL helper methods, please see the documentation of Maid::Tools at http://rubydoc.info/gems/maid/0.1.0/Maid/Tools # * Come up with some cool tools of your own? Fork, make your changes, and send me a pull request on GitHub! # * Ask me a question over email (hello@benjaminoakes.com) or Twitter (@benjaminoakes) # Maid.rules do # NOTE: Currently, only Mac OS X supports `duration_s`. rule 'MP3s likely to be music' do dir('~/Downloads/*.mp3').each do |path| if duration_s(path) > 30.0 move(path, '~/Music/iTunes/iTunes Media/Automatically Add to iTunes/') end end end # NOTE: Currently, only Mac OS X supports `downloaded_from`. rule 'Old files downloaded while developing/testing' do dir('~/Downloads/*').each do |path| if downloaded_from(path).any? {|u| u.match 'http://localhost' || u.match('http://staging.yourcompany.com') } && 1.week.since?(last_accessed(path)) trash(path) end end end rule 'Linux ISOs, etc' do dir('~/Downloads/*.iso').each { |p| trash p } end rule 'Linux applications in Debian packages' do dir('~/Downloads/*.deb').each { |p| trash p } end rule 'Mac OS X applications in disk images' do dir('~/Downloads/*.dmg').each { |p| trash p } end rule 'Mac OS X applications in zip files' do dir('~/Downloads/*.zip').select do |path| candidates = zipfile_contents(path) candidates.any? { |c| c.match(/\.app$/) } end.each { |p| trash p } end rule 'Misc Screenshots' do dir('~/Desktop/Screen shot *').each do |path| if 1.week.since?(last_accessed(path)) move(path, '~/Documents/Misc Screenshots/') end end end # Add your own rules here. end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
maid-0.1.2 | lib/maid/rules.sample.rb |
maid-0.1.1 | lib/maid/rules.sample.rb |