Sha256: 048f23ce2772b96ee97a231a0effe1a36018767729140ce7bf2012c67cde75fc
Contents?: true
Size: 1.99 KB
Versions: 5
Compression:
Stored size: 1.99 KB
Contents
require 'engineyard-serverside/shell/helpers' module EY module Serverside class Task attr_reader :servers, :config, :shell # deprecated, please don't use def c EY::Serverside.deprecation_warning("The method 'c' is deprecated in favor of 'config' for better clarity.") config end def initialize(servers, conf, shell) @servers = servers @config = conf @shell = shell @roles = :all end def paths config.paths end def require_custom_tasks deploy_file = ["config/eydeploy.rb", "eydeploy.rb"].map do |short_file| paths.repository_cache.join(short_file) end.detect do |file| file.exist? end if deploy_file shell.status "Loading deployment task overrides from #{deploy_file}" begin instance_eval(deploy_file.read) rescue Exception => e shell.fatal "Exception while loading #{deploy_file}" shell.fatal [e.to_s, e.backtrace].join("\n") raise end end end def load_ey_yml ey_yml = ["config/ey.yml", "ey.yml"].map do |short_file| paths.repository_cache.join(short_file) end.detect do |file| file.exist? end if ey_yml shell.status "Loading deploy configuration in #{ey_yml}" data = YAML.load_file(ey_yml.to_s) config.load_ey_yml_data(data, shell) end rescue Exception shell.error "Error loading YAML in #{ey_yml}" raise end def roles(*task_roles) raise "Roles must be passed a block" unless block_given? begin @roles = task_roles yield ensure @roles = :all end end def run(cmd, &block) servers.roles(@roles).run(shell, cmd, &block) end def sudo(cmd, &block) servers.roles(@roles).sudo(shell, cmd, &block) end end end end
Version data entries
5 entries across 5 versions & 1 rubygems