Sha256: 485cbb4c62fed316f5671e00edea39a14fb82c145dbb95b09ce7a8ecf25b4d28
Contents?: true
Size: 1.67 KB
Versions: 2
Compression:
Stored size: 1.67 KB
Contents
require 'shellwords' def self.help(path) match "help #{path}" => proc {|cmd| file_name = Shellwords.split(path).join('_') help_text = File.expand_path("../#{file_name}.txt", __FILE__) cmd.output << File.read(help_text) } end help('login') help('logout') help('show images') help('show servers') help('show server') help('create server') help('update server') help('destroy server') help('railsify server') help('show loadbalancers') help('show loadbalancer') help('create loadbalancer') help('update loadbalancer') help('destroy loadbalancer') help('show nodes on loadbalancer') help('show node on loadbalancer') help('createnode on loadbalancer') help('update node on loadbalancer') help('destroy node on loadbalancer') help('show dbinstances') help('show dbinstance') help('create dbinstance') help('update dbinstance') help('destroy dbinstance') help('show databases on dbinstance') help('show database on dbinstance') help('create database on dbinstance') help('update database on dbinstance') help('destroy database on dbinstance') help('show users on dbinstance') help('show user on dbinstance') help('create user on dbinstance') help('ssh') help('show containers') help('show container') help('create container') help('update container') help('destroy container') help('show files in container') help('show file in container') help('create file in container') help('update file in container') help('destroy file in container') help('download file in container') help('show volumes') help('show volume') help('create volume') help('update volume') help('destroy volume') help('show attachments on server') help('attach volume to server') help('detach volume from server')
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rumm-0.0.19 | app/help/routes.rb |
rumm-0.0.18 | app/help/routes.rb |