lib/agile_utils/cli.rb in agile_utils-0.1.5 vs lib/agile_utils/cli.rb in agile_utils-0.2.0
- old
+ new
@@ -1,25 +1,11 @@
require "thor"
-require_relative "../agile_utils"
module AgileUtils
class CLI < Thor
- desc "main", "Main entry point"
- def main
- opts = options.symbolize_keys
- if opts[:version]
- puts "You are using AgileUtils version #{AgileUtils::VERSION}"
- exit
- end
- end
desc "usage", "Display help screen"
def usage
puts <<-EOS
-# List of available APIs
-require 'agile_utils'
-include AgileUtils
-
-# General methods
AgileUtils::Helper.capture
AgileUtils::Helper.make_list
AgileUtils::Helper.shell
AgileUtils::Helper.linux?
AgileUtils::Helper.osx?
@@ -29,9 +15,8 @@
AgileUtils::FileUtils.delete()
AgileUtils::FileUtils.gunzip()
AgileUtils::FileUtils.tar_gzip_files()
EOS
end
-
default_task :usage
end
end