gitextract_wa78b5hf/ ├── .gitignore ├── .travis.yml ├── HTTPStatusCodes.podspec ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ ├── HTTPStatusCodes+Extensions.swift │ └── HTTPStatusCodes.swift └── Tests/ ├── .gitignore ├── Cartfile ├── Generator.playground/ │ ├── Contents.swift │ ├── Sources/ │ │ ├── Case.swift │ │ └── StaticTexts.swift │ └── contents.xcplayground ├── HTTPStatusCodes/ │ ├── Deprecated.h │ ├── Deprecated.m │ ├── HTTPStatusCodes.h │ └── SupportingFiles/ │ ├── Info-OSX.plist │ ├── Info-iOS.plist │ ├── Info-tvOS.plist │ └── Info-watchOS.plist ├── HTTPStatusCodes.xcconfig ├── HTTPStatusCodes.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ └── HTTPStatusCodes.xcscheme └── HTTPStatusCodesTests/ ├── HTTPStatusCodesTests.swift ├── Info.plist ├── ObjectiveCRegressionTests.m ├── ObjectiveCTests.m └── RegressionTests.swift