Sha256: f8e1222df4b72d932126d02b13fd23676da5f40a7d444f84155c8d43a1ee0c9c

Contents?: true

Size: 895 Bytes

Versions: 1

Compression:

Stored size: 895 Bytes

Contents

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

		def usage
			usage = <<EOTXT

=== Commands
 help                           # show this usage

 domains:http                   # list HTTP domain details
 domains:mysql                  # list MySQL domains
 domains:status                 # check availability of all domains (pingability)
 
 dns                            # list DNS records
 dns <name>                     # list DNS records for <name>
 
 announce:list <list>           # list 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

1 entries across 1 versions & 1 rubygems

Version Path
sant0sk1-dreamy-0.2.4 lib/dreamy/commands/help.rb