├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── InflectorKit.podspec ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── InflectorKit │ ├── NSString+InflectorKit.m │ ├── TTTStringInflector.m │ └── include │ ├── InflectorKit.h │ ├── NSString+InflectorKit.h │ └── TTTStringInflector.h └── Tests └── InflectorKitTests └── InflectorKitTests.swift /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/InflectorKit/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/InflectorKit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /InflectorKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/InflectorKit/HEAD/InflectorKit.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/InflectorKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/InflectorKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/InflectorKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/InflectorKit/NSString+InflectorKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/InflectorKit/HEAD/Sources/InflectorKit/NSString+InflectorKit.m -------------------------------------------------------------------------------- /Sources/InflectorKit/TTTStringInflector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/InflectorKit/HEAD/Sources/InflectorKit/TTTStringInflector.m -------------------------------------------------------------------------------- /Sources/InflectorKit/include/InflectorKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/InflectorKit/HEAD/Sources/InflectorKit/include/InflectorKit.h -------------------------------------------------------------------------------- /Sources/InflectorKit/include/NSString+InflectorKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/InflectorKit/HEAD/Sources/InflectorKit/include/NSString+InflectorKit.h -------------------------------------------------------------------------------- /Sources/InflectorKit/include/TTTStringInflector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/InflectorKit/HEAD/Sources/InflectorKit/include/TTTStringInflector.h -------------------------------------------------------------------------------- /Tests/InflectorKitTests/InflectorKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattt/InflectorKit/HEAD/Tests/InflectorKitTests/InflectorKitTests.swift --------------------------------------------------------------------------------