From ca439579ef471d96fac23ddf66c1c3d8fc59ab6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Simon?= Date: Thu, 5 May 2011 05:35:51 +0200 Subject: [PATCH 1/2] updated readme --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0410668..2f36e3c 100755 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Symfony2 applications deployment made easy ========================================== -**Untested bundle, watchout (maybe full of typos)** +*Up to date thanks to jonaswouters* A few words @@ -19,7 +19,7 @@ A few words ###Links -- Stable releases : [https://github.com/BeSimple/DeploymentBundle](https://github.com/BeSimple/DeploymentBundle) +- Stable releases : [https://github.com/besimple/DeploymentBundle](https://github.com/besimple/DeploymentBundle) - Nightly builds : [https://github.com/jfsimon/DeploymentBundle](https://github.com/jfsimon/DeploymentBundle) - Rest documentation : *will come later* @@ -38,11 +38,11 @@ How to install - Use clone method if not using GIT for your project - git clone git://github.com/BeSimple/DeploymentBundle.git vendor/BeSimple/DeploymentBundle + git clone git://github.com/besimple/DeploymentBundle.git vendor/BeSimple/DeploymentBundle - Use submodule method if this is the case - git submodule add git://github.com/BeSimple/DeploymentBundle.git vendor/BeSimple/DeploymentBundle + git submodule add git://github.com/besimple/DeploymentBundle.git vendor/BeSimple/DeploymentBundle 2. Register bundle in `AppKernel` class @@ -60,7 +60,7 @@ How to install # app/config.yml - besimple_deployment: + be_simple_deployment: rsync: ~ ssh: ~ rules: ~ @@ -85,7 +85,7 @@ How to configure ###An example - besimple_deployment: + be_simple_deployment: rsync: delete: true From 36da9cf1bc66a2865b0909867af51d961a079009 Mon Sep 17 00:00:00 2001 From: Jonas Wouters Date: Wed, 6 Jul 2011 09:03:40 +0200 Subject: [PATCH 2/2] Updated Command for RC4 --- Command/DeploymentCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/DeploymentCommand.php b/Command/DeploymentCommand.php index 362b603..9dd5d35 100644 --- a/Command/DeploymentCommand.php +++ b/Command/DeploymentCommand.php @@ -9,7 +9,7 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Output\Output; -use Symfony\Bundle\FrameworkBundle\Command\Command as BaseCommand; +use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand as BaseCommand; use BeSimple\DeploymentBundle\Events; use BeSimple\DeploymentBundle\Event\CommandEvent; use BeSimple\DeploymentBundle\Event\DeployerEvent;