├── .gitattributes ├── .gitignore ├── LICENSE.markdown ├── Makefile ├── Package.swift ├── README.markdown ├── Sources └── contacts-cli │ ├── contacts.1 │ ├── contacts.1.ronn │ ├── main.swift │ └── version.json ├── Tests └── contactsTests │ └── contactsTests.swift ├── VERSION └── version-update.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | VERSION export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgray/contacts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgray/contacts/HEAD/LICENSE.markdown -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgray/contacts/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgray/contacts/HEAD/Package.swift -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgray/contacts/HEAD/README.markdown -------------------------------------------------------------------------------- /Sources/contacts-cli/contacts.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgray/contacts/HEAD/Sources/contacts-cli/contacts.1 -------------------------------------------------------------------------------- /Sources/contacts-cli/contacts.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgray/contacts/HEAD/Sources/contacts-cli/contacts.1.ronn -------------------------------------------------------------------------------- /Sources/contacts-cli/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgray/contacts/HEAD/Sources/contacts-cli/main.swift -------------------------------------------------------------------------------- /Sources/contacts-cli/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.3.1", 3 | "build": "afffd5d-d" 4 | } -------------------------------------------------------------------------------- /Tests/contactsTests/contactsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgray/contacts/HEAD/Tests/contactsTests/contactsTests.swift -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgray/contacts/HEAD/VERSION -------------------------------------------------------------------------------- /version-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgray/contacts/HEAD/version-update.sh --------------------------------------------------------------------------------