Sha256: 3666ce87bc586132bbfee42b3d896e722729e3112aa4c9d2421ebb0185ba9f85

Contents?: true

Size: 840 Bytes

Versions: 3

Compression:

Stored size: 840 Bytes

Contents

module Dreamy::Command
	class Help < Base
		def index
			display usage
		end

		def usage
			usage = <<EOTXT

=== Commands
 help                           # show this usage

 domains                        # list domains: details
 domains:status                 # check availability of all domains (pingability)
 
 dns                            # list DNS records
 dns <name>                     # list DNS records for <name>
 
 announce:list <list>           # lists all subscribers to <name> list (eg - 'my_list@example.com')
 announce:add <list> <email>    # add subscriber with <email> to <list>
 announce:remove <list> <email> # remove subscriber with <email> from <list>
 
 users                          # list user accounts: details
 users:pw                       # list user accounts: usernames & passwords

EOTXT
		end
	end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sant0sk1-dreamy-0.2.1 lib/dreamy/commands/help.rb
sant0sk1-dreamy-0.2.2 lib/dreamy/commands/help.rb
sant0sk1-dreamy-0.2.3 lib/dreamy/commands/help.rb