├── .gitignore ├── Classes ├── DKLocationManager.h └── DKLocationManager.m ├── DKLocationManager.vendorspec ├── DKLocationManager.xcodeproj └── project.pbxproj ├── External ├── Cedar-iPhone.framework │ ├── Cedar-iPhone │ ├── Headers │ ├── Resources │ └── Versions │ │ ├── A │ │ ├── Cedar-iPhone │ │ └── Headers │ │ │ ├── CDRColorizedReporter.h │ │ │ ├── CDRExampleBase.h │ │ │ ├── CDRExampleDetailsViewController.h │ │ │ ├── CDRExampleParent.h │ │ │ ├── CDRExampleReporter.h │ │ │ ├── CDRExampleReporterViewController.h │ │ │ ├── CDRFunctions.h │ │ │ ├── CDRSharedExampleGroupPool.h │ │ │ ├── CDRSpec.h │ │ │ ├── Cedar.h │ │ │ ├── CedarApplicationDelegate.h │ │ │ └── SpecHelper.h │ │ └── Current └── Expecta │ ├── EXPExpect.h │ ├── EXPMatcherHelpers.h │ ├── EXPMatchers+toBeFalsy.h │ ├── EXPMatchers+toBeIdenticalTo.h │ ├── EXPMatchers+toBeInstanceOf.h │ ├── EXPMatchers+toBeKindOf.h │ ├── EXPMatchers+toBeNil.h │ ├── EXPMatchers+toBeSubclassOf.h │ ├── EXPMatchers+toBeTruthy.h │ ├── EXPMatchers+toContain.h │ ├── EXPMatchers+toEqual.h │ ├── EXPMatchers.h │ ├── EXPUnsupportedObject.h │ ├── Expecta.h │ ├── ExpectaSupport.h │ ├── NSObject+Expecta.h │ ├── NSValue+Expecta.h │ └── libExpecta-ios-universal.a ├── Readme.markdown └── Specs ├── Specs-Info.plist ├── Specs-Prefix.pch └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/DKLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/Classes/DKLocationManager.h -------------------------------------------------------------------------------- /Classes/DKLocationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/Classes/DKLocationManager.m -------------------------------------------------------------------------------- /DKLocationManager.vendorspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/DKLocationManager.vendorspec -------------------------------------------------------------------------------- /DKLocationManager.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/DKLocationManager.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Cedar-iPhone: -------------------------------------------------------------------------------- 1 | Versions/Current/Cedar-iPhone -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Versions/A/Cedar-iPhone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Cedar-iPhone.framework/Versions/A/Cedar-iPhone -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Versions/A/Headers/CDRColorizedReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Cedar-iPhone.framework/Versions/A/Headers/CDRColorizedReporter.h -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Versions/A/Headers/CDRExampleBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Cedar-iPhone.framework/Versions/A/Headers/CDRExampleBase.h -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Versions/A/Headers/CDRExampleDetailsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Cedar-iPhone.framework/Versions/A/Headers/CDRExampleDetailsViewController.h -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Versions/A/Headers/CDRExampleParent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Cedar-iPhone.framework/Versions/A/Headers/CDRExampleParent.h -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Versions/A/Headers/CDRExampleReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Cedar-iPhone.framework/Versions/A/Headers/CDRExampleReporter.h -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Versions/A/Headers/CDRExampleReporterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Cedar-iPhone.framework/Versions/A/Headers/CDRExampleReporterViewController.h -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Versions/A/Headers/CDRFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Cedar-iPhone.framework/Versions/A/Headers/CDRFunctions.h -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Versions/A/Headers/CDRSharedExampleGroupPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Cedar-iPhone.framework/Versions/A/Headers/CDRSharedExampleGroupPool.h -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Versions/A/Headers/CDRSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Cedar-iPhone.framework/Versions/A/Headers/CDRSpec.h -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Versions/A/Headers/Cedar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Cedar-iPhone.framework/Versions/A/Headers/Cedar.h -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Versions/A/Headers/CedarApplicationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Cedar-iPhone.framework/Versions/A/Headers/CedarApplicationDelegate.h -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Versions/A/Headers/SpecHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Cedar-iPhone.framework/Versions/A/Headers/SpecHelper.h -------------------------------------------------------------------------------- /External/Cedar-iPhone.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /External/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /External/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /External/Expecta/EXPMatchers+toBeFalsy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/EXPMatchers+toBeFalsy.h -------------------------------------------------------------------------------- /External/Expecta/EXPMatchers+toBeIdenticalTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/EXPMatchers+toBeIdenticalTo.h -------------------------------------------------------------------------------- /External/Expecta/EXPMatchers+toBeInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/EXPMatchers+toBeInstanceOf.h -------------------------------------------------------------------------------- /External/Expecta/EXPMatchers+toBeKindOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/EXPMatchers+toBeKindOf.h -------------------------------------------------------------------------------- /External/Expecta/EXPMatchers+toBeNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/EXPMatchers+toBeNil.h -------------------------------------------------------------------------------- /External/Expecta/EXPMatchers+toBeSubclassOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/EXPMatchers+toBeSubclassOf.h -------------------------------------------------------------------------------- /External/Expecta/EXPMatchers+toBeTruthy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/EXPMatchers+toBeTruthy.h -------------------------------------------------------------------------------- /External/Expecta/EXPMatchers+toContain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/EXPMatchers+toContain.h -------------------------------------------------------------------------------- /External/Expecta/EXPMatchers+toEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/EXPMatchers+toEqual.h -------------------------------------------------------------------------------- /External/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/EXPMatchers.h -------------------------------------------------------------------------------- /External/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /External/Expecta/Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/Expecta.h -------------------------------------------------------------------------------- /External/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /External/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /External/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /External/Expecta/libExpecta-ios-universal.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/External/Expecta/libExpecta-ios-universal.a -------------------------------------------------------------------------------- /Readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/Readme.markdown -------------------------------------------------------------------------------- /Specs/Specs-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/Specs/Specs-Info.plist -------------------------------------------------------------------------------- /Specs/Specs-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/Specs/Specs-Prefix.pch -------------------------------------------------------------------------------- /Specs/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithpitt/DKLocationManager/HEAD/Specs/main.m --------------------------------------------------------------------------------