lib/middleman-deploy/methods/git.rb in middleman-deploy-1.0.0 vs lib/middleman-deploy/methods/git.rb in middleman-deploy-2.0.0.pre.alpha
- old
+ new
@@ -1,14 +1,14 @@
module Middleman
module Deploy
module Methods
class Git < Base
def process
- puts "## Deploying via git to remote=\"#{self.options.remote}\" and branch=\"#{self.options.branch}\""
+ puts "## Deploying via git to remote=\"#{options.remote}\" and branch=\"#{options.branch}\""
- camelized_strategy = self.options.strategy.to_s.split('_').map { |word| word.capitalize}.join
+ camelized_strategy = options.strategy.to_s.split('_').map(&:capitalize).join
strategy_class_name = "Middleman::Deploy::Strategies::Git::#{camelized_strategy}"
- strategy_instance = strategy_class_name.constantize.new(self.server_instance.build_dir, self.options.remote, self.options.branch, self.options.commit_message)
+ strategy_instance = strategy_class_name.constantize.new(build_dir, options.remote, options.branch, options.commit_message)
strategy_instance.process
end
end
end