(#3) Add initial formatter class

This commit is contained in:
Brian Cain 2015-10-01 23:39:23 -07:00
parent c738b0c566
commit 76a2d23973
2 changed files with 8 additions and 0 deletions

View file

@ -6,6 +6,7 @@ require 'vmfloaty/auth'
require 'vmfloaty/pooler'
require 'vmfloaty/version'
require 'vmfloaty/conf'
require 'vmfloaty/format'
class Vmfloaty
include Commander::Methods

7
lib/vmfloaty/format.rb Normal file
View file

@ -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