lib/deep_thought/deployer/deployer.rb in deep_thought-0.1.0 vs lib/deep_thought/deployer/deployer.rb in deep_thought-0.1.1

- old
+ new

@@ -5,13 +5,15 @@ if self.class.name == 'DeepThought::Deployer::Deployer' raise "#{self.class.name} is abstract, you cannot instantiate it directly." end end - def setup(project, config) + def setup?(project, config) + true end - def execute(deploy, config) + def execute?(deploy, config) + true end end end end