├── .gitignore ├── .travis.yml ├── DRAsyncOperations.podspec ├── DRAsyncOperations.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── DRAsyncOperations Mac.xcscheme │ ├── DRAsyncOperations iOS.xcscheme │ ├── DRAsyncOperations tvOS.xcscheme │ └── DRAsyncOperations watchOS.xcscheme ├── DRAsyncOperations ├── DRAsyncBlockOperation.h ├── DRAsyncBlockOperation.m ├── DRAsyncOperation.h ├── DRAsyncOperation.m ├── DRAsyncOperationSubclass.h ├── DRAsyncOperations.h └── Supporting Files │ └── Info.plist ├── DRAsyncOperationsTests ├── DRAsyncBlockOperationTests.m ├── DRAsyncOperationTests.swift └── Supporting Files │ ├── DRAsyncOperationsTests-Bridging-Header.h │ └── Info.plist ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/.travis.yml -------------------------------------------------------------------------------- /DRAsyncOperations.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperations.podspec -------------------------------------------------------------------------------- /DRAsyncOperations.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperations.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DRAsyncOperations.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperations.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DRAsyncOperations.xcodeproj/xcshareddata/xcschemes/DRAsyncOperations Mac.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperations.xcodeproj/xcshareddata/xcschemes/DRAsyncOperations Mac.xcscheme -------------------------------------------------------------------------------- /DRAsyncOperations.xcodeproj/xcshareddata/xcschemes/DRAsyncOperations iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperations.xcodeproj/xcshareddata/xcschemes/DRAsyncOperations iOS.xcscheme -------------------------------------------------------------------------------- /DRAsyncOperations.xcodeproj/xcshareddata/xcschemes/DRAsyncOperations tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperations.xcodeproj/xcshareddata/xcschemes/DRAsyncOperations tvOS.xcscheme -------------------------------------------------------------------------------- /DRAsyncOperations.xcodeproj/xcshareddata/xcschemes/DRAsyncOperations watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperations.xcodeproj/xcshareddata/xcschemes/DRAsyncOperations watchOS.xcscheme -------------------------------------------------------------------------------- /DRAsyncOperations/DRAsyncBlockOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperations/DRAsyncBlockOperation.h -------------------------------------------------------------------------------- /DRAsyncOperations/DRAsyncBlockOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperations/DRAsyncBlockOperation.m -------------------------------------------------------------------------------- /DRAsyncOperations/DRAsyncOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperations/DRAsyncOperation.h -------------------------------------------------------------------------------- /DRAsyncOperations/DRAsyncOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperations/DRAsyncOperation.m -------------------------------------------------------------------------------- /DRAsyncOperations/DRAsyncOperationSubclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperations/DRAsyncOperationSubclass.h -------------------------------------------------------------------------------- /DRAsyncOperations/DRAsyncOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperations/DRAsyncOperations.h -------------------------------------------------------------------------------- /DRAsyncOperations/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperations/Supporting Files/Info.plist -------------------------------------------------------------------------------- /DRAsyncOperationsTests/DRAsyncBlockOperationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperationsTests/DRAsyncBlockOperationTests.m -------------------------------------------------------------------------------- /DRAsyncOperationsTests/DRAsyncOperationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperationsTests/DRAsyncOperationTests.swift -------------------------------------------------------------------------------- /DRAsyncOperationsTests/Supporting Files/DRAsyncOperationsTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperationsTests/Supporting Files/DRAsyncOperationsTests-Bridging-Header.h -------------------------------------------------------------------------------- /DRAsyncOperationsTests/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/DRAsyncOperationsTests/Supporting Files/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmcrodrigues/DRAsyncOperations/HEAD/README.md --------------------------------------------------------------------------------