Sha256: cdd531ec316341ddd369f8ea24a0a93d4b3642888fbf5bfdd525d2dc809d00e0
Contents?: true
Size: 1.82 KB
Versions: 1
Compression:
Stored size: 1.82 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('commands') help('login') help('logout') help('show images') help('show flavors') help('show servers') help('show server') help('create server') help('update server') help('destroy server') help('railsify server') help('install jenkins on server') help('create job on jenkins 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('create node 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('destroy 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('create attachment on server') help('destroy attachment on server')
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rumm-0.1.0 | app/help/routes.rb |