├── .gitignore ├── .travis.yml ├── AlamofireSoap.podspec ├── AlamofireSoap ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── AlamofireSoap.swift ├── Example ├── AlamofireSoap.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── AlamofireSoap.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── xcschemes │ │ └── AlamofireSoap-Example.xcscheme ├── AlamofireSoap │ ├── AppDelegate.swift │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── DetailViewController.swift │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── Main.storyboard │ └── MasterViewController.swift ├── Podfile ├── Podfile.lock └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/.travis.yml -------------------------------------------------------------------------------- /AlamofireSoap.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/AlamofireSoap.podspec -------------------------------------------------------------------------------- /AlamofireSoap/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AlamofireSoap/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AlamofireSoap/Classes/AlamofireSoap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/AlamofireSoap/Classes/AlamofireSoap.swift -------------------------------------------------------------------------------- /Example/AlamofireSoap.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/AlamofireSoap.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/AlamofireSoap.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/AlamofireSoap.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AlamofireSoap.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/AlamofireSoap.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AlamofireSoap.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/AlamofireSoap.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/AlamofireSoap.xcworkspace/xcshareddata/xcschemes/AlamofireSoap-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/AlamofireSoap.xcworkspace/xcshareddata/xcschemes/AlamofireSoap-Example.xcscheme -------------------------------------------------------------------------------- /Example/AlamofireSoap/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/AlamofireSoap/AppDelegate.swift -------------------------------------------------------------------------------- /Example/AlamofireSoap/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/AlamofireSoap/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/AlamofireSoap/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/AlamofireSoap/DetailViewController.swift -------------------------------------------------------------------------------- /Example/AlamofireSoap/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/AlamofireSoap/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/AlamofireSoap/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/AlamofireSoap/Info.plist -------------------------------------------------------------------------------- /Example/AlamofireSoap/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/AlamofireSoap/Main.storyboard -------------------------------------------------------------------------------- /Example/AlamofireSoap/MasterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/AlamofireSoap/MasterViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShakeebM/AlamofireSoap/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------