Browse Source

Text files should end with a newline character.

1.0
Andrés Montañez 10 years ago
parent
commit
9653552be7
  1. 2
      .gitignore
  2. 2
      LICENSE
  3. 2
      LICENSE_YAML
  4. 2
      Mage/Command/AbstractCommand.php
  5. 2
      Mage/Command/BuiltIn/InstallCommand.php
  6. 3
      Mage/Command/BuiltIn/UpdateCommand.php
  7. 3
      Mage/Command/BuiltIn/VersionCommand.php
  8. 2
      Mage/Command/Factory.php
  9. 2
      Mage/Command/RequiresEnvironment.php
  10. 2
      Mage/Mailer.php
  11. 3
      Mage/Task/BuiltIn/Deployment/Strategy/DisabledTask.php
  12. 2
      Mage/Task/BuiltIn/Magento/ClearCacheTask.php
  13. 2
      Mage/Task/BuiltIn/Magento/ClearFullPageCacheTask.php
  14. 3
      Mage/Task/BuiltIn/Releases/ListTask.php
  15. 3
      Mage/Task/BuiltIn/Releases/RollbackTask.php
  16. 2
      Mage/Task/BuiltIn/Scm/ChangeBranchTask.php
  17. 2
      Mage/Task/BuiltIn/Scm/CloneTask.php
  18. 2
      Mage/Task/BuiltIn/Scm/RemoveCloneTask.php
  19. 2
      Mage/Task/BuiltIn/Scm/UpdateTask.php
  20. 2
      Mage/Task/BuiltIn/Symfony2/AsseticDumpTask.php
  21. 2
      Mage/Task/BuiltIn/Symfony2/AssetsInstallTask.php
  22. 2
      Mage/Task/BuiltIn/Symfony2/CacheClearTask.php
  23. 2
      Mage/Task/BuiltIn/Symfony2/SymfonyAbstractTask.php
  24. 2
      Mage/Task/SkipException.php
  25. 2
      Mage/Yaml/Dumper.php
  26. 2
      Mage/Yaml/Escaper.php
  27. 2
      Mage/Yaml/Exception/DumpException.php
  28. 2
      Mage/Yaml/Exception/ExceptionInterface.php
  29. 2
      Mage/Yaml/Exception/ParseException.php
  30. 2
      Mage/Yaml/Exception/RuntimeException.php
  31. 2
      Mage/Yaml/Inline.php
  32. 3
      Mage/Yaml/Parser.php
  33. 2
      Mage/Yaml/Unescaper.php
  34. 2
      Mage/Yaml/Yaml.php
  35. 2
      docs/example-config/.mage/config/environment/production.yml
  36. 2
      docs/example-config/.mage/config/general.yml
  37. 2
      docs/example-config/.mage/logs/.gitignore
  38. 2
      docs/example-config/.mage/tasks/FailTask.php
  39. 2
      docs/example-config/.mage/tasks/Privileges.php
  40. 2
      docs/example-config/.mage/tasks/SampleTaskRollbackAware.php
  41. 2
      docs/example-config/.mage/tasks/TaskWithParameters.php

2
.gitignore vendored

@ -6,4 +6,4 @@ mage.phar
.DS_Store* .DS_Store*
ehthumbs.db ehthumbs.db
Icon? Icon?
Thumbs.db Thumbs.db

2
LICENSE

@ -24,4 +24,4 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-------- --------
The Yaml Library Parser is (c) by Fabien Potencier, and belongs to the Symfony Proyect The Yaml Library Parser is (c) by Fabien Potencier, and belongs to the Symfony Proyect
-------- --------

2
LICENSE_YAML

@ -16,4 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE. THE SOFTWARE.

2
Mage/Command/AbstractCommand.php

@ -52,4 +52,4 @@ abstract class AbstractCommand
{ {
return $this->config; return $this->config;
} }
} }

2
Mage/Command/BuiltIn/InstallCommand.php

@ -122,4 +122,4 @@ class InstallCommand extends AbstractCommand
return false; return false;
} }
} }
} }

3
Mage/Command/BuiltIn/UpdateCommand.php

@ -45,5 +45,4 @@ class UpdateCommand extends AbstractCommand
return $exitCode; return $exitCode;
} }
}
}

3
Mage/Command/BuiltIn/VersionCommand.php

@ -30,5 +30,4 @@ class VersionCommand extends AbstractCommand
return 0; return 0;
} }
}
}

2
Mage/Command/Factory.php

@ -59,4 +59,4 @@ class Factory
return $instance; return $instance;
} }
} }

2
Mage/Command/RequiresEnvironment.php

@ -17,4 +17,4 @@ namespace Mage\Command;
*/ */
interface RequiresEnvironment interface RequiresEnvironment
{ {
} }

2
Mage/Mailer.php

@ -86,4 +86,4 @@ class Mailer
mail($this->address, $subject, $message, $headers); mail($this->address, $subject, $message, $headers);
} }
} }

3
Mage/Task/BuiltIn/Deployment/Strategy/DisabledTask.php

@ -38,5 +38,4 @@ class DisabledTask extends AbstractTask implements IsReleaseAware
{ {
throw new SkipException; throw new SkipException;
} }
}
}

2
Mage/Task/BuiltIn/Magento/ClearCacheTask.php

@ -39,4 +39,4 @@ class ClearCacheTask extends AbstractTask
return $result; return $result;
} }
} }

2
Mage/Task/BuiltIn/Magento/ClearFullPageCacheTask.php

@ -39,4 +39,4 @@ class ClearFullPageCacheTask extends AbstractTask
return $result; return $result;
} }
} }

3
Mage/Task/BuiltIn/Releases/ListTask.php

@ -146,5 +146,4 @@ class ListTask extends AbstractTask implements IsReleaseAware
return $textDiff; return $textDiff;
} }
}
}

3
Mage/Task/BuiltIn/Releases/RollbackTask.php

@ -188,5 +188,4 @@ class RollbackTask extends AbstractTask implements IsReleaseAware
return false; return false;
} }
} }
}
}

2
Mage/Task/BuiltIn/Scm/ChangeBranchTask.php

@ -105,4 +105,4 @@ class ChangeBranchTask extends AbstractTask
return $result; return $result;
} }
} }

2
Mage/Task/BuiltIn/Scm/CloneTask.php

@ -84,4 +84,4 @@ class CloneTask extends AbstractTask
return $result; return $result;
} }
} }

2
Mage/Task/BuiltIn/Scm/RemoveCloneTask.php

@ -58,4 +58,4 @@ class RemoveCloneTask extends AbstractTask
{ {
return $this->runCommandLocal('rm -rf ' . $this->source['temporal']); return $this->runCommandLocal('rm -rf ' . $this->source['temporal']);
} }
} }

2
Mage/Task/BuiltIn/Scm/UpdateTask.php

@ -69,4 +69,4 @@ class UpdateTask extends AbstractTask
return $result; return $result;
} }
} }

2
Mage/Task/BuiltIn/Symfony2/AsseticDumpTask.php

@ -42,4 +42,4 @@ class AsseticDumpTask extends SymfonyAbstractTask
return $result; return $result;
} }
} }

2
Mage/Task/BuiltIn/Symfony2/AssetsInstallTask.php

@ -49,4 +49,4 @@ class AssetsInstallTask extends SymfonyAbstractTask
return $result; return $result;
} }
} }

2
Mage/Task/BuiltIn/Symfony2/CacheClearTask.php

@ -42,4 +42,4 @@ class CacheClearTask extends SymfonyAbstractTask
return $result; return $result;
} }
} }

2
Mage/Task/BuiltIn/Symfony2/SymfonyAbstractTask.php

@ -29,4 +29,4 @@ abstract class SymfonyAbstractTask extends AbstractTask
return $this->getConfig()->general('symfony_app_path', $defaultAppPath); return $this->getConfig()->general('symfony_app_path', $defaultAppPath);
} }
} }

2
Mage/Task/SkipException.php

@ -19,4 +19,4 @@ use Exception;
*/ */
class SkipException extends Exception class SkipException extends Exception
{ {
} }

2
Mage/Yaml/Dumper.php

@ -72,4 +72,4 @@ class Dumper
return $output; return $output;
} }
} }

2
Mage/Yaml/Escaper.php

@ -86,4 +86,4 @@ class Escaper
{ {
return sprintf("'%s'", str_replace('\'', '\'\'', $value)); return sprintf("'%s'", str_replace('\'', '\'\'', $value));
} }
} }

2
Mage/Yaml/Exception/DumpException.php

@ -22,4 +22,4 @@ use Mage\Yaml\Exception\RuntimeException;
*/ */
class DumpException extends RuntimeException class DumpException extends RuntimeException
{ {
} }

2
Mage/Yaml/Exception/ExceptionInterface.php

@ -20,4 +20,4 @@ namespace Mage\Yaml\Exception;
*/ */
interface ExceptionInterface interface ExceptionInterface
{ {
} }

2
Mage/Yaml/Exception/ParseException.php

@ -147,4 +147,4 @@ class ParseException extends RuntimeException
$this->message .= '.'; $this->message .= '.';
} }
} }
} }

2
Mage/Yaml/Exception/RuntimeException.php

@ -22,4 +22,4 @@ use Mage\Yaml\Exception\ExceptionInterface;
*/ */
class RuntimeException extends \RuntimeException implements ExceptionInterface class RuntimeException extends \RuntimeException implements ExceptionInterface
{ {
} }

2
Mage/Yaml/Inline.php

@ -502,4 +502,4 @@ class Inline
$~x $~x
EOF; EOF;
} }
} }

3
Mage/Yaml/Parser.php

@ -655,5 +655,4 @@ class Parser
{ {
return (0 === strpos($this->currentLine, '- ')); return (0 === strpos($this->currentLine, '- '));
} }
}
}

2
Mage/Yaml/Unescaper.php

@ -139,4 +139,4 @@ class Unescaper
return chr(0xF0 | $c >> 18) . chr(0x80 | $c >> 12 & 0x3F) . chr(0x80 | $c >> 6 & 0x3F) . chr(0x80 | $c & 0x3F); return chr(0xF0 | $c >> 18) . chr(0x80 | $c >> 12 & 0x3F) . chr(0x80 | $c >> 6 & 0x3F) . chr(0x80 | $c & 0x3F);
} }
} }

2
Mage/Yaml/Yaml.php

@ -99,4 +99,4 @@ class Yaml
return $yaml->dump($array, $inline, 0, $exceptionOnInvalidType, $objectSupport); return $yaml->dump($array, $inline, 0, $exceptionOnInvalidType, $objectSupport);
} }
} }

2
docs/example-config/.mage/config/environment/production.yml

@ -34,4 +34,4 @@ tasks:
- privileges - privileges
- sampleTask - sampleTask
- sampleTaskRollbackAware - sampleTaskRollbackAware
#post-deploy: #post-deploy:

2
docs/example-config/.mage/config/general.yml

@ -5,4 +5,4 @@ notifications: true
logging: true logging: true
scm: scm:
type: git type: git
url: git://github.com/andres-montanez/Zend-Framework-Twig-example-app.git url: git://github.com/andres-montanez/Zend-Framework-Twig-example-app.git

2
docs/example-config/.mage/logs/.gitignore vendored

@ -1 +1 @@
log-* log-*

2
docs/example-config/.mage/tasks/FailTask.php

@ -14,4 +14,4 @@ class FailTask extends AbstractTask
{ {
return false; return false;
} }
} }

2
docs/example-config/.mage/tasks/Privileges.php

@ -17,4 +17,4 @@ class Privileges extends AbstractTask
return $result; return $result;
} }
} }

2
docs/example-config/.mage/tasks/SampleTaskRollbackAware.php

@ -19,4 +19,4 @@ class SampleTaskRollbackAware extends AbstractTask implements RollbackAware
{ {
return true; return true;
} }
} }

2
docs/example-config/.mage/tasks/TaskWithParameters.php

@ -24,4 +24,4 @@ class TaskWithParameters extends AbstractTask
return false; return false;
} }
} }
} }

Loading…
Cancel
Save