├── .github └── workflows │ └── CI.yml ├── .gitignore ├── Info.plist ├── LICENSE ├── OMGHTTPURLRQ.podspec ├── OMGHTTPURLRQ.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ └── OMGHTTPURLRQ.xcscheme ├── Package.swift ├── README.md ├── Sources ├── FormURLEncode │ ├── OMGFormURLEncode.h │ └── OMGFormURLEncode.m ├── RQ │ ├── OMGHTTPURLRQ.h │ └── OMGHTTPURLRQ.m └── UserAgent │ ├── OMGUserAgent.h │ └── OMGUserAgent.m ├── Tests ├── OMGFormURLEncodeTestCase.m └── Tests-Info.plist └── tea.yaml /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/.gitignore -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/LICENSE -------------------------------------------------------------------------------- /OMGHTTPURLRQ.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/OMGHTTPURLRQ.podspec -------------------------------------------------------------------------------- /OMGHTTPURLRQ.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/OMGHTTPURLRQ.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OMGHTTPURLRQ.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/OMGHTTPURLRQ.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OMGHTTPURLRQ.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/OMGHTTPURLRQ.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /OMGHTTPURLRQ.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/OMGHTTPURLRQ.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /OMGHTTPURLRQ.xcodeproj/xcshareddata/xcschemes/OMGHTTPURLRQ.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/OMGHTTPURLRQ.xcodeproj/xcshareddata/xcschemes/OMGHTTPURLRQ.xcscheme -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/README.md -------------------------------------------------------------------------------- /Sources/FormURLEncode/OMGFormURLEncode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/Sources/FormURLEncode/OMGFormURLEncode.h -------------------------------------------------------------------------------- /Sources/FormURLEncode/OMGFormURLEncode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/Sources/FormURLEncode/OMGFormURLEncode.m -------------------------------------------------------------------------------- /Sources/RQ/OMGHTTPURLRQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/Sources/RQ/OMGHTTPURLRQ.h -------------------------------------------------------------------------------- /Sources/RQ/OMGHTTPURLRQ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/Sources/RQ/OMGHTTPURLRQ.m -------------------------------------------------------------------------------- /Sources/UserAgent/OMGUserAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/Sources/UserAgent/OMGUserAgent.h -------------------------------------------------------------------------------- /Sources/UserAgent/OMGUserAgent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/Sources/UserAgent/OMGUserAgent.m -------------------------------------------------------------------------------- /Tests/OMGFormURLEncodeTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/Tests/OMGFormURLEncodeTestCase.m -------------------------------------------------------------------------------- /Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /tea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxcl/OMGHTTPURLRQ/HEAD/tea.yaml --------------------------------------------------------------------------------