lib/phtools.rb in phtools-0.1.3 vs lib/phtools.rb in phtools-0.2.4

- old
+ new

@@ -1,10 +1,35 @@ #!/usr/bin/env ruby # encoding: UTF-8 # (c) ANB Andrew Bizyaev -require "phtools/version" +require 'phtools/version' +require 'pharrange' +require 'phbackup' +require 'phclname' +require 'phevent' +require 'phfixdate' +require 'phfixfmd' +require 'phls' +require 'phmtags' +require 'phrename' +require 'phtagset' module PhTools def self.about - %Q{\nphtools v#{PhTools::VERSION} is a bundle of small CLI tools for arranging, renaming, tagging of the photo and video files. Helps to keep your photo-video assets in order. \nPlease run phtools in a terminal via CLI commands: phls, phrename, phbackup, pharrange, phclname, phevent, phfixdate, phfixmd, phmtags, phtagset.\nFor more information run these commands with -h option.} + about = <<TEXT +phtools v#{VERSION} is a bundle of small CLI tools for arranging, renaming, tagging +of the photo and video files. Helps to keep your photo-video assets in order. +Please run phtools in a terminal via CLI commands: + pharrange\t(#{Phrename::about}), + phbackup\t(#{Phbackup::about}), + phclname\t(#{Phclname::about}), + phevent\t(#{Phevent::about}), + phfixdate\t(#{Phfixdate::about}), + phfixmd\t(#{Phfixfmd::about}), + phls\t(#{Phls::about}), + phmtags\t(#{Phmtags::about}), + phrename \t(#{Phrename::about}), + phtagset\t(#{Phtagset::about}). +For more information run these commands with -h option. +TEXT end end