lib/sunzi/cloud/ec2.rb in sunzi-0.4.0 vs lib/sunzi/cloud/ec2.rb in sunzi-0.4.1

- old
+ new

@@ -1,15 +1,13 @@ module Sunzi module Cloud class EC2 < Base - no_tasks do - def setup - say shell.set_color('EC2 is not implemented yet!', :red, true) - end + def setup + Logger.error 'EC2 is not implemented yet!' + end - def teardown(target) - say shell.set_color('EC2 is not implemented yet!', :red, true) - end + def teardown(target) + Logger.error 'EC2 is not implemented yet!' end end end end