lib/awestruct/cli/deploy.rb in awestruct-0.4.5 vs lib/awestruct/cli/deploy.rb in awestruct-0.4.6

- old
+ new

@@ -1,5 +1,6 @@ +require 'awestruct/deploy/s3_deploy' require 'awestruct/deploy/rsync_deploy' require 'awestruct/deploy/github_pages_deploy' module Awestruct module CLI @@ -10,31 +11,33 @@ attr_accessor :deploy_config def initialize(site_config, deploy_config) @site_config = site_config @deploy_config = deploy_config - deploy_config[:type] ||= (is_github? ? :github_pages : :rsync) + @deploy_config['type'] ||= (is_github? ? :github_pages : :rsync) + puts "Deploying to #{deploy_type}" end def deploy_type - deploy_config[:type] + deploy_config['type'] end def run() - deployer_class = Awestruct::Deployers.instance[ deploy_type ] + deployer_class = Awestruct::Deployers.instance[ deploy_type.to_sym ] if ( deployer_class.nil? ) $stderr.puts "Unable to locate correct deployer for #{deploy_type}" + $stderr.puts "Deployers available for #{::Awestruct::Deployers.instance.collect {|k,v| "#{v} (#{k})"}.join(', ')}" return end deployer = deployer_class.new( site_config, deploy_config ) deployer.run end private def is_github? - deploy_config[:host].to_s == :github_pages.to_s || deploy_config['host'].to_s == :github_pages.to_s + deploy_config['host'].to_s == 'github_pages' || deploy_config['host'].to_s == 'github_pages' end end end end