Initial commit of vmfloaty

This commit is contained in:
Brian Cain 2014-10-28 21:57:59 -07:00
parent 1f86113243
commit 99b03e2994
9 changed files with 76 additions and 3 deletions

1
lib/vmfloaty.rb Normal file
View file

@ -0,0 +1 @@
require 'vmfloaty/cli'

25
lib/vmfloaty/cli.rb Normal file
View file

@ -0,0 +1,25 @@
require 'thor'
class CLI < Thor
desc "get", "Gets a vm"
def get
say 'Get a vm here'
end
desc "modify", "Modify a vm"
def modify
say 'Modify a vm'
end
desc "list", "List all active vms"
def list
say 'Listing your vms'
end
desc "release", "Schedules a vm for deletion"
def release
say 'Releases a vm'
end
end
CLI.start(ARGV)

5
lib/vmfloaty/version.rb Normal file
View file

@ -0,0 +1,5 @@
module Vmfloaty
module CLI
VERSION = '0.1.0'
end
end