crnixon / thor_tasks

My set of personal Thor scripts.

thor_tasks / flog.thor
100644 10 lines (8 sloc) 0.209 kb
1
2
3
4
5
6
7
8
9
10
# module: flog
class Flog < Thor
  desc "dir DIRS", "flog the specified directories"
  
  def dir(*dirs)
    dirs = ['.'] if dirs.empty?
    system "find #{dirs.join(' ')} -name \\*.rb | xargs flog"
  end
end