├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── README.md ├── bin └── pug ├── lib ├── cleanup.php ├── commands │ ├── _global.php │ ├── add.php │ ├── disable.php │ ├── enable.php │ ├── install.php │ ├── remove.php │ ├── rename.php │ ├── show.php │ ├── update.php │ └── upgrade.php ├── config.php └── pug │ ├── Autoloader.php │ ├── DependencyManager │ ├── CocoaPods.php │ ├── Composer.php │ └── IDependencyManager.php │ ├── InvalidDirectoryException.php │ ├── MissingSourceControlException.php │ ├── Project.php │ └── Pug.php ├── pug └── test ├── commands ├── PugTestCase.php ├── addTest.php ├── disableTest.php ├── enableTest.php ├── removeTest.php ├── renameTest.php └── showTest.php └── fixtures └── pugfiles ├── .pug-disabled ├── .pug-enabled ├── .pug-groups └── .pug-new /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .cookies 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/README.md -------------------------------------------------------------------------------- /bin/pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/bin/pug -------------------------------------------------------------------------------- /lib/cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/cleanup.php -------------------------------------------------------------------------------- /lib/commands/_global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/commands/_global.php -------------------------------------------------------------------------------- /lib/commands/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/commands/add.php -------------------------------------------------------------------------------- /lib/commands/disable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/commands/disable.php -------------------------------------------------------------------------------- /lib/commands/enable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/commands/enable.php -------------------------------------------------------------------------------- /lib/commands/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/commands/install.php -------------------------------------------------------------------------------- /lib/commands/remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/commands/remove.php -------------------------------------------------------------------------------- /lib/commands/rename.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/commands/rename.php -------------------------------------------------------------------------------- /lib/commands/show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/commands/show.php -------------------------------------------------------------------------------- /lib/commands/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/commands/update.php -------------------------------------------------------------------------------- /lib/commands/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/commands/upgrade.php -------------------------------------------------------------------------------- /lib/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/config.php -------------------------------------------------------------------------------- /lib/pug/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/pug/Autoloader.php -------------------------------------------------------------------------------- /lib/pug/DependencyManager/CocoaPods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/pug/DependencyManager/CocoaPods.php -------------------------------------------------------------------------------- /lib/pug/DependencyManager/Composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/pug/DependencyManager/Composer.php -------------------------------------------------------------------------------- /lib/pug/DependencyManager/IDependencyManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/pug/DependencyManager/IDependencyManager.php -------------------------------------------------------------------------------- /lib/pug/InvalidDirectoryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/pug/InvalidDirectoryException.php -------------------------------------------------------------------------------- /lib/pug/MissingSourceControlException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/pug/MissingSourceControlException.php -------------------------------------------------------------------------------- /lib/pug/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/pug/Project.php -------------------------------------------------------------------------------- /lib/pug/Pug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/lib/pug/Pug.php -------------------------------------------------------------------------------- /pug: -------------------------------------------------------------------------------- 1 | ./bin/pug -------------------------------------------------------------------------------- /test/commands/PugTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/test/commands/PugTestCase.php -------------------------------------------------------------------------------- /test/commands/addTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/test/commands/addTest.php -------------------------------------------------------------------------------- /test/commands/disableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/test/commands/disableTest.php -------------------------------------------------------------------------------- /test/commands/enableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/test/commands/enableTest.php -------------------------------------------------------------------------------- /test/commands/removeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/test/commands/removeTest.php -------------------------------------------------------------------------------- /test/commands/renameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/test/commands/renameTest.php -------------------------------------------------------------------------------- /test/commands/showTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/test/commands/showTest.php -------------------------------------------------------------------------------- /test/fixtures/pugfiles/.pug-disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/test/fixtures/pugfiles/.pug-disabled -------------------------------------------------------------------------------- /test/fixtures/pugfiles/.pug-enabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/test/fixtures/pugfiles/.pug-enabled -------------------------------------------------------------------------------- /test/fixtures/pugfiles/.pug-groups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashur/pug/HEAD/test/fixtures/pugfiles/.pug-groups -------------------------------------------------------------------------------- /test/fixtures/pugfiles/.pug-new: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------