├── .gitignore ├── .travis.yml ├── LICENSE ├── NSURL+QueryDictionary.podspec ├── NSURL+QueryDictionary.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── UnitTests.xcscheme ├── NSURL+QueryDictionary ├── NSURL+QueryDictionary.h └── NSURL+QueryDictionary.m ├── README.md └── UnitTests ├── UnitTests-Info.plist ├── UnitTests-Prefix.pch ├── UnitTests.m └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsthejb/NSURL-QueryDictionary/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsthejb/NSURL-QueryDictionary/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsthejb/NSURL-QueryDictionary/HEAD/LICENSE -------------------------------------------------------------------------------- /NSURL+QueryDictionary.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsthejb/NSURL-QueryDictionary/HEAD/NSURL+QueryDictionary.podspec -------------------------------------------------------------------------------- /NSURL+QueryDictionary.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsthejb/NSURL-QueryDictionary/HEAD/NSURL+QueryDictionary.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NSURL+QueryDictionary.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsthejb/NSURL-QueryDictionary/HEAD/NSURL+QueryDictionary.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NSURL+QueryDictionary.xcodeproj/xcshareddata/xcschemes/UnitTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsthejb/NSURL-QueryDictionary/HEAD/NSURL+QueryDictionary.xcodeproj/xcshareddata/xcschemes/UnitTests.xcscheme -------------------------------------------------------------------------------- /NSURL+QueryDictionary/NSURL+QueryDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsthejb/NSURL-QueryDictionary/HEAD/NSURL+QueryDictionary/NSURL+QueryDictionary.h -------------------------------------------------------------------------------- /NSURL+QueryDictionary/NSURL+QueryDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsthejb/NSURL-QueryDictionary/HEAD/NSURL+QueryDictionary/NSURL+QueryDictionary.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsthejb/NSURL-QueryDictionary/HEAD/README.md -------------------------------------------------------------------------------- /UnitTests/UnitTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsthejb/NSURL-QueryDictionary/HEAD/UnitTests/UnitTests-Info.plist -------------------------------------------------------------------------------- /UnitTests/UnitTests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsthejb/NSURL-QueryDictionary/HEAD/UnitTests/UnitTests-Prefix.pch -------------------------------------------------------------------------------- /UnitTests/UnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsthejb/NSURL-QueryDictionary/HEAD/UnitTests/UnitTests.m -------------------------------------------------------------------------------- /UnitTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------