Sha256: c8ad907ae9a67ecdbf95ea7db3821051b2fd20c5f42387e0b577b88d2b9f311d
Contents?: true
Size: 597 Bytes
Versions: 1
Compression:
Stored size: 597 Bytes
Contents
#!/usr/bin/env ruby require 'reap/application' HELP = <<-END Usage: #{File.basename($0)} [options] This command scans source code for developer notes and writes them to well organized files. This tool can lookup and list TODO, FIXME and other labeled comments from source code. files Glob(s) of files to search. labels Labels to search for. Defaults to [ 'TODO', 'FIXME' ]. output Output directory. Defaults to log/. This command is also executed when reap-log is executed. END if ARGV.include?('--help') puts HELP else app = Reap::Application.new app.log_notes end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
reap-9.4.0 | bin/reap-log-notes |