├── .gitignore ├── .travis.yml ├── CommandLineKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── CommandLine.xcscheme ├── CommandLineKit ├── CommandLine.swift ├── Info.plist ├── Option.swift └── StringExtensions.swift ├── LICENSE ├── Package.swift ├── README.md ├── Tests ├── CommandLineKitTests │ ├── CommandLineTests.swift │ ├── Info.plist │ └── StringExtensionTests.swift └── LinuxMain.swift └── script └── test /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/.travis.yml -------------------------------------------------------------------------------- /CommandLineKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/CommandLineKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CommandLineKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/CommandLineKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CommandLineKit.xcodeproj/xcshareddata/xcschemes/CommandLine.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/CommandLineKit.xcodeproj/xcshareddata/xcschemes/CommandLine.xcscheme -------------------------------------------------------------------------------- /CommandLineKit/CommandLine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/CommandLineKit/CommandLine.swift -------------------------------------------------------------------------------- /CommandLineKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/CommandLineKit/Info.plist -------------------------------------------------------------------------------- /CommandLineKit/Option.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/CommandLineKit/Option.swift -------------------------------------------------------------------------------- /CommandLineKit/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/CommandLineKit/StringExtensions.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/README.md -------------------------------------------------------------------------------- /Tests/CommandLineKitTests/CommandLineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/Tests/CommandLineKitTests/CommandLineTests.swift -------------------------------------------------------------------------------- /Tests/CommandLineKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/Tests/CommandLineKitTests/Info.plist -------------------------------------------------------------------------------- /Tests/CommandLineKitTests/StringExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/Tests/CommandLineKitTests/StringExtensionTests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatoben/CommandLine/HEAD/script/test --------------------------------------------------------------------------------