config/config.yaml in docman-0.0.5 vs config/config.yaml in docman-0.0.6

- old
+ new

@@ -2,54 +2,51 @@ deploy_targets: local: handler: :common_deployer builders: root: - handler: :common - type: dir + handler: :dir_builder drupal: - handler: :drupal - type: drupal + handler: :drupal_drush_builder repo: - handler: :git - type: direct + handler: :git_direct_builder dir: - handler: :common - type: dir + handler: :dir_builder + environments: + development: local + staging: local + stable: local acquia: handler: :git_deployer - deploy_action: git_push builders: root: - handler: :git - type: direct - after_build_actions: - - git_commit + handler: :git_direct_builder + hooks: + builder: + after_execute: + - type: :git_commit + execution_dir: $PROJECT$ drupal: - handler: :drupal - type: drupal - after_build_actions: - - git_commit + handler: :drupal_drush_builder + hooks: + builder: + after_execute: + - type: :git_commit + execution_dir: $PROJECT$ repo: - handler: :git - type: strip - after_build_actions: - - git_commit + handler: :git_strip_builder + hooks: + builder: + after_execute: + - type: :git_commit + execution_dir: $PROJECT$ dir: - handler: :common - type: dir - after_build_actions: - - git_commit - -environments: - local: - deploy_target: local - state: development - dev: - deploy_target: acquia - state: development - test: - deploy_target: acquia - state: staging - prod: - deploy_target: acquia - state: stable + handler: :dir_builder + hooks: + builder: + after_execute: + - type: :git_commit + execution_dir: $PROJECT$ + environments: + development: dev + staging: test + stable: test