├── .github └── workflows │ ├── build.yml │ └── linux_build.yml ├── .gitignore ├── .swiftformat ├── CHANGELOG.md ├── LICENSE.md ├── Package.swift ├── README.md ├── Sources ├── Globs.swift ├── Info.plist ├── Template.swift ├── Tribute.swift └── main.swift ├── Tests ├── GlobsTests.swift ├── Info.plist ├── MetadataTests.swift └── TemplateTests.swift └── Tribute.xcodeproj ├── project.pbxproj ├── project.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcshareddata └── xcschemes ├── Tribute.xcscheme └── TributeTests.xcscheme /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/linux_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/.github/workflows/linux_build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/.swiftformat -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Globs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/Sources/Globs.swift -------------------------------------------------------------------------------- /Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/Sources/Info.plist -------------------------------------------------------------------------------- /Sources/Template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/Sources/Template.swift -------------------------------------------------------------------------------- /Sources/Tribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/Sources/Tribute.swift -------------------------------------------------------------------------------- /Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/Sources/main.swift -------------------------------------------------------------------------------- /Tests/GlobsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/Tests/GlobsTests.swift -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/MetadataTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/Tests/MetadataTests.swift -------------------------------------------------------------------------------- /Tests/TemplateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/Tests/TemplateTests.swift -------------------------------------------------------------------------------- /Tribute.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/Tribute.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tribute.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/Tribute.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tribute.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/Tribute.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Tribute.xcodeproj/xcshareddata/xcschemes/Tribute.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/Tribute.xcodeproj/xcshareddata/xcschemes/Tribute.xcscheme -------------------------------------------------------------------------------- /Tribute.xcodeproj/xcshareddata/xcschemes/TributeTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/Tribute/HEAD/Tribute.xcodeproj/xcshareddata/xcschemes/TributeTests.xcscheme --------------------------------------------------------------------------------