Class: GeneSystem::CLI
- Inherits:
-
Thor
- Object
- Thor
- GeneSystem::CLI
- Defined in:
- lib/gene_system/cli.rb
Overview
Command line interface helpers and actions
Instance Method Summary collapse
Instance Method Details
#describe ⇒ Object
96 97 98 99 |
# File 'lib/gene_system/cli.rb', line 96 def describe cmd = GeneSystem::Commands::DescribeManifest.new() cmd.run end |
#install ⇒ Object
58 59 60 61 |
# File 'lib/gene_system/cli.rb', line 58 def install cmd = GeneSystem::Commands::InstallManifest.new() cmd.run end |
#new ⇒ Object
33 34 35 36 |
# File 'lib/gene_system/cli.rb', line 33 def new cmd = GeneSystem::Commands::CreateManifest.new() cmd.run end |
#remove ⇒ Object
83 84 85 86 |
# File 'lib/gene_system/cli.rb', line 83 def remove cmd = GeneSystem::Commands::RemoveManifest.new() cmd.run end |
#version ⇒ Object
14 15 16 17 |
# File 'lib/gene_system/cli.rb', line 14 def version cmd = GeneSystem::Commands::PrintVersion.new() cmd.run end |