├── .gitignore ├── .swift-version ├── .travis.yml ├── LICENSE ├── Package.swift ├── README.md ├── Resources └── Views │ ├── Includes │ ├── test-include-a.mustache │ └── test-include-b.mustache │ └── test-view.mustache ├── Sources ├── File.swift ├── MustacheRenderer.swift └── Provider.swift └── Tests ├── LinuxMain.swift └── VaporMustache ├── ProviderTests.swift └── Utilities.swift /.gitignore: -------------------------------------------------------------------------------- 1 | Packages 2 | .build 3 | *.xcodeproj 4 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | DEVELOPMENT-SNAPSHOT-2016-07-25-a 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/mustache-provider/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/mustache-provider/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/mustache-provider/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/mustache-provider/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Views/Includes/test-include-a.mustache: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /Resources/Views/Includes/test-include-b.mustache: -------------------------------------------------------------------------------- 1 | b -------------------------------------------------------------------------------- /Resources/Views/test-view.mustache: -------------------------------------------------------------------------------- 1 | {{>a}} 2 | 3 | Hello, {{name}} 4 | 5 | {{>b}} -------------------------------------------------------------------------------- /Sources/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/mustache-provider/HEAD/Sources/File.swift -------------------------------------------------------------------------------- /Sources/MustacheRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/mustache-provider/HEAD/Sources/MustacheRenderer.swift -------------------------------------------------------------------------------- /Sources/Provider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/mustache-provider/HEAD/Sources/Provider.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/mustache-provider/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/VaporMustache/ProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/mustache-provider/HEAD/Tests/VaporMustache/ProviderTests.swift -------------------------------------------------------------------------------- /Tests/VaporMustache/Utilities.swift: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------