Skip to content

Commit

Permalink
Text files should end with a newline character.
Browse files Browse the repository at this point in the history
  • Loading branch information
andres-montanez committed Oct 11, 2014
1 parent aaf92d5 commit 9653552
Show file tree
Hide file tree
Showing 41 changed files with 41 additions and 47 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -6,4 +6,4 @@ mage.phar
.DS_Store*
ehthumbs.db
Icon?
Thumbs.db
Thumbs.db
2 changes: 1 addition & 1 deletion LICENSE
Expand Up @@ -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
--------
--------
2 changes: 1 addition & 1 deletion LICENSE_YAML
Expand Up @@ -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
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
THE SOFTWARE.
THE SOFTWARE.
2 changes: 1 addition & 1 deletion Mage/Command/AbstractCommand.php
Expand Up @@ -52,4 +52,4 @@ public function getConfig()
{
return $this->config;
}
}
}
2 changes: 1 addition & 1 deletion Mage/Command/BuiltIn/InstallCommand.php
Expand Up @@ -122,4 +122,4 @@ protected function recursiveCopy($from, $to)
return false;
}
}
}
}
3 changes: 1 addition & 2 deletions Mage/Command/BuiltIn/UpdateCommand.php
Expand Up @@ -45,5 +45,4 @@ public function run()

return $exitCode;
}

}
}
3 changes: 1 addition & 2 deletions Mage/Command/BuiltIn/VersionCommand.php
Expand Up @@ -30,5 +30,4 @@ public function run()

return 0;
}

}
}
2 changes: 1 addition & 1 deletion Mage/Command/Factory.php
Expand Up @@ -59,4 +59,4 @@ public static function get($commandName, Config $config)

return $instance;
}
}
}
2 changes: 1 addition & 1 deletion Mage/Command/RequiresEnvironment.php
Expand Up @@ -17,4 +17,4 @@
*/
interface RequiresEnvironment
{
}
}
2 changes: 1 addition & 1 deletion Mage/Mailer.php
Expand Up @@ -86,4 +86,4 @@ public function send($result)

mail($this->address, $subject, $message, $headers);
}
}
}
3 changes: 1 addition & 2 deletions Mage/Task/BuiltIn/Deployment/Strategy/DisabledTask.php
Expand Up @@ -38,5 +38,4 @@ public function run()
{
throw new SkipException;
}

}
}
2 changes: 1 addition & 1 deletion Mage/Task/BuiltIn/Magento/ClearCacheTask.php
Expand Up @@ -39,4 +39,4 @@ public function run()

return $result;
}
}
}
2 changes: 1 addition & 1 deletion Mage/Task/BuiltIn/Magento/ClearFullPageCacheTask.php
Expand Up @@ -39,4 +39,4 @@ public function run()

return $result;
}
}
}
3 changes: 1 addition & 2 deletions Mage/Task/BuiltIn/Releases/ListTask.php
Expand Up @@ -146,5 +146,4 @@ protected function dateDiff($releaseDate)

return $textDiff;
}

}
}
3 changes: 1 addition & 2 deletions Mage/Task/BuiltIn/Releases/RollbackTask.php
Expand Up @@ -188,5 +188,4 @@ public function run()
return false;
}
}

}
}
2 changes: 1 addition & 1 deletion Mage/Task/BuiltIn/Scm/ChangeBranchTask.php
Expand Up @@ -105,4 +105,4 @@ public function run()

return $result;
}
}
}
2 changes: 1 addition & 1 deletion Mage/Task/BuiltIn/Scm/CloneTask.php
Expand Up @@ -84,4 +84,4 @@ public function run()

return $result;
}
}
}
2 changes: 1 addition & 1 deletion Mage/Task/BuiltIn/Scm/RemoveCloneTask.php
Expand Up @@ -58,4 +58,4 @@ public function run()
{
return $this->runCommandLocal('rm -rf ' . $this->source['temporal']);
}
}
}
2 changes: 1 addition & 1 deletion Mage/Task/BuiltIn/Scm/UpdateTask.php
Expand Up @@ -69,4 +69,4 @@ public function run()

return $result;
}
}
}
2 changes: 1 addition & 1 deletion Mage/Task/BuiltIn/Symfony2/AsseticDumpTask.php
Expand Up @@ -42,4 +42,4 @@ public function run()

return $result;
}
}
}
2 changes: 1 addition & 1 deletion Mage/Task/BuiltIn/Symfony2/AssetsInstallTask.php
Expand Up @@ -49,4 +49,4 @@ public function run()

return $result;
}
}
}
2 changes: 1 addition & 1 deletion Mage/Task/BuiltIn/Symfony2/CacheClearTask.php
Expand Up @@ -42,4 +42,4 @@ public function run()

return $result;
}
}
}
2 changes: 1 addition & 1 deletion Mage/Task/BuiltIn/Symfony2/SymfonyAbstractTask.php
Expand Up @@ -29,4 +29,4 @@ protected function getAppPath()

return $this->getConfig()->general('symfony_app_path', $defaultAppPath);
}
}
}
2 changes: 1 addition & 1 deletion Mage/Task/SkipException.php
Expand Up @@ -19,4 +19,4 @@
*/
class SkipException extends Exception
{
}
}
2 changes: 1 addition & 1 deletion Mage/Yaml/Dumper.php
Expand Up @@ -72,4 +72,4 @@ public function dump($input, $inline = 0, $indent = 0, $exceptionOnInvalidType =

return $output;
}
}
}
2 changes: 1 addition & 1 deletion Mage/Yaml/Escaper.php
Expand Up @@ -86,4 +86,4 @@ public static function escapeWithSingleQuotes($value)
{
return sprintf("'%s'", str_replace('\'', '\'\'', $value));
}
}
}
2 changes: 1 addition & 1 deletion Mage/Yaml/Exception/DumpException.php
Expand Up @@ -22,4 +22,4 @@
*/
class DumpException extends RuntimeException
{
}
}
2 changes: 1 addition & 1 deletion Mage/Yaml/Exception/ExceptionInterface.php
Expand Up @@ -20,4 +20,4 @@
*/
interface ExceptionInterface
{
}
}
2 changes: 1 addition & 1 deletion Mage/Yaml/Exception/ParseException.php
Expand Up @@ -147,4 +147,4 @@ private function updateRepr()
$this->message .= '.';
}
}
}
}
2 changes: 1 addition & 1 deletion Mage/Yaml/Exception/RuntimeException.php
Expand Up @@ -22,4 +22,4 @@
*/
class RuntimeException extends \RuntimeException implements ExceptionInterface
{
}
}
2 changes: 1 addition & 1 deletion Mage/Yaml/Inline.php
Expand Up @@ -502,4 +502,4 @@ private static function getTimestampRegex()
$~x
EOF;
}
}
}
3 changes: 1 addition & 2 deletions Mage/Yaml/Parser.php
Expand Up @@ -655,5 +655,4 @@ private function isStringUnIndentedCollectionItem()
{
return (0 === strpos($this->currentLine, '- '));
}

}
}
2 changes: 1 addition & 1 deletion Mage/Yaml/Unescaper.php
Expand Up @@ -139,4 +139,4 @@ private static function utf8chr($c)

return chr(0xF0 | $c >> 18) . chr(0x80 | $c >> 12 & 0x3F) . chr(0x80 | $c >> 6 & 0x3F) . chr(0x80 | $c & 0x3F);
}
}
}
2 changes: 1 addition & 1 deletion Mage/Yaml/Yaml.php
Expand Up @@ -99,4 +99,4 @@ public static function dump($array, $inline = 2, $indent = 4, $exceptionOnInvali

return $yaml->dump($array, $inline, 0, $exceptionOnInvalidType, $objectSupport);
}
}
}
Expand Up @@ -34,4 +34,4 @@ tasks:
- privileges
- sampleTask
- sampleTaskRollbackAware
#post-deploy:
#post-deploy:
2 changes: 1 addition & 1 deletion docs/example-config/.mage/config/general.yml
Expand Up @@ -5,4 +5,4 @@ notifications: true
logging: true
scm:
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 changes: 1 addition & 1 deletion docs/example-config/.mage/logs/.gitignore
@@ -1 +1 @@
log-*
log-*
2 changes: 1 addition & 1 deletion docs/example-config/.mage/tasks/FailTask.php
Expand Up @@ -14,4 +14,4 @@ public function run()
{
return false;
}
}
}
2 changes: 1 addition & 1 deletion docs/example-config/.mage/tasks/Privileges.php
Expand Up @@ -17,4 +17,4 @@ public function run()

return $result;
}
}
}
Expand Up @@ -19,4 +19,4 @@ public function run()
{
return true;
}
}
}
2 changes: 1 addition & 1 deletion docs/example-config/.mage/tasks/TaskWithParameters.php
Expand Up @@ -24,4 +24,4 @@ public function run()
return false;
}
}
}
}

0 comments on commit 9653552

Please sign in to comment.