diff --git a/lib/vmfloaty.rb b/lib/vmfloaty.rb index 2359815..4e89705 100644 --- a/lib/vmfloaty.rb +++ b/lib/vmfloaty.rb @@ -6,6 +6,7 @@ require 'vmfloaty/auth' require 'vmfloaty/pooler' require 'vmfloaty/version' require 'vmfloaty/conf' +require 'vmfloaty/format' class Vmfloaty include Commander::Methods diff --git a/lib/vmfloaty/format.rb b/lib/vmfloaty/format.rb new file mode 100644 index 0000000..f9726f6 --- /dev/null +++ b/lib/vmfloaty/format.rb @@ -0,0 +1,7 @@ + +class Format + # TODO: Takes the json response body from an HTTP GET + # request and "pretty prints" it + def self.get_hosts(hostname_hash) + end +end