# This is an example of what you need to do to # Add a new command to MdInc: Just add a new # module level method to the MdInc::Commands # module and off you go. module MdInc module Commands def self.inc_up(path) inc(path).map {|s| s.upcase!} end end end