class EY::Serverside::Callbacks::Collection::DeployHooks

Private Instance Methods

load_hooks() click to toggle source
# File lib/engineyard-serverside/callbacks/collection/deploy_hooks.rb, line 11
def load_hooks
  Dir["#{paths.deploy_hooks}/*"].each do |hook_path|
    hooks.push(Hooks::App.new(hook_path))
  end
end