lib/phtools.rb in phtools-0.10.0 vs lib/phtools.rb in phtools-0.11.1
- old
+ new
@@ -1,6 +1,7 @@
#!/usr/bin/env ruby
+# frozen_string_literal: true
# encoding: UTF-8
# (c) ANB Andrew Bizyaev
require 'phtools/version'
require 'phbackup'
require 'phevent'
@@ -16,19 +17,20 @@
def self.about
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:
- phls\t(#{Phls::about}),
- phmove\t(#{Phmove::about}),
- phbackup\t(#{Phbackup::about}),
- phrename\t(#{Phrename::about}),
- phevent\t(#{Phevent::about}),
- phfixdto\t(#{Phfixdto::about}),
- phfixfmd\t(#{Phfixfmd::about}),
- phgettags\t(#{Phgettags::about}),
- phtagset\t(#{Phtagset::about}).
+ phls\t(#{Phls.about}),
+ phmove\t(#{Phmove.about}),
+ phbackup\t(#{Phbackup.about}),
+ phrename\t(#{Phrename.about}),
+ phevent\t(#{Phevent.about}),
+ phfixdto\t(#{Phfixdto.about}),
+ phfixfmd\t(#{Phfixfmd.about}),
+ phgettags\t(#{Phgettags.about}),
+ phtagset\t(#{Phtagset.about}).
For more information run these commands with -h option.
General info about phtools usage see at https://github.com/AndrewBiz/phtools.git
TEXT
+ about
end
end