├── .gitignore ├── .travis.yml ├── Example ├── HealthKitSampleGenerator.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── HealthKitSampleGenerator-Example.xcscheme │ │ └── TravisCiTest.xcscheme ├── HealthKitSampleGenerator.xcworkspace │ └── contents.xcworkspacedata ├── HealthKitSampleGenerator │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── ExportViewController.swift │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── ImportProfileViewController.swift │ ├── Info.plist │ ├── MainTabController.swift │ ├── ProfilesTableViewController.swift │ ├── UIControls.swift │ └── UIUtil.swift ├── HealthKitSampleGeneratorPlayground.playground │ ├── Contents.swift │ ├── contents.xcplayground │ └── timeline.xctimeline ├── HealthKitSampleGenerator_Example.entitlements ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ └── Private │ │ │ ├── Nimble │ │ │ ├── DSL.h │ │ │ ├── NMBExceptionCapture.h │ │ │ └── Nimble.h │ │ │ └── Quick │ │ │ ├── NSString+QCKSelectorName.h │ │ │ ├── QCKDSL.h │ │ │ ├── Quick.h │ │ │ ├── QuickConfiguration.h │ │ │ ├── QuickSpec.h │ │ │ ├── World+DSL.h │ │ │ └── World.h │ ├── Local Podspecs │ │ └── HealthKitSampleGenerator.podspec.json │ ├── Manifest.lock │ ├── Nimble │ │ ├── LICENSE.md │ │ ├── Nimble │ │ │ ├── Adapters │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ └── NimbleXCTestHandler.swift │ │ │ ├── DSL+Wait.swift │ │ │ ├── DSL.swift │ │ │ ├── Expectation.swift │ │ │ ├── Expression.swift │ │ │ ├── FailureMessage.swift │ │ │ ├── Matchers │ │ │ │ ├── AllPass.swift │ │ │ │ ├── BeAKindOf.swift │ │ │ │ ├── BeAnInstanceOf.swift │ │ │ │ ├── BeCloseTo.swift │ │ │ │ ├── BeEmpty.swift │ │ │ │ ├── BeGreaterThan.swift │ │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ │ ├── BeIdenticalTo.swift │ │ │ │ ├── BeLessThan.swift │ │ │ │ ├── BeLessThanOrEqual.swift │ │ │ │ ├── BeLogical.swift │ │ │ │ ├── BeNil.swift │ │ │ │ ├── BeginWith.swift │ │ │ │ ├── Contain.swift │ │ │ │ ├── EndWith.swift │ │ │ │ ├── Equal.swift │ │ │ │ ├── Match.swift │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ ├── RaisesException.swift │ │ │ │ └── ThrowError.swift │ │ │ ├── Nimble.h │ │ │ ├── ObjCExpectation.swift │ │ │ ├── Utils │ │ │ │ ├── Functional.swift │ │ │ │ ├── Poll.swift │ │ │ │ ├── SourceLocation.swift │ │ │ │ └── Stringers.swift │ │ │ ├── Wrappers │ │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ │ ├── MatcherFunc.swift │ │ │ │ └── ObjCMatcher.swift │ │ │ └── objc │ │ │ │ ├── DSL.h │ │ │ │ ├── DSL.m │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ └── NMBExceptionCapture.m │ │ └── README.md │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── HealthKitSampleGenerator.xcscheme │ ├── Quick │ │ ├── LICENSE │ │ ├── Quick │ │ │ ├── Callsite.swift │ │ │ ├── Configuration │ │ │ │ ├── Configuration.swift │ │ │ │ ├── QuickConfiguration.h │ │ │ │ └── QuickConfiguration.m │ │ │ ├── DSL │ │ │ │ ├── DSL.swift │ │ │ │ ├── QCKDSL.h │ │ │ │ ├── QCKDSL.m │ │ │ │ ├── World+DSL.h │ │ │ │ └── World+DSL.swift │ │ │ ├── Example.swift │ │ │ ├── ExampleGroup.swift │ │ │ ├── ExampleMetadata.swift │ │ │ ├── Filter.swift │ │ │ ├── Hooks │ │ │ │ ├── Closures.swift │ │ │ │ ├── ExampleHooks.swift │ │ │ │ └── SuiteHooks.swift │ │ │ ├── NSString+QCKSelectorName.h │ │ │ ├── NSString+QCKSelectorName.m │ │ │ ├── Quick.h │ │ │ ├── QuickSpec.h │ │ │ ├── QuickSpec.m │ │ │ ├── World.h │ │ │ └── World.swift │ │ └── README.md │ └── Target Support Files │ │ ├── HealthKitSampleGenerator │ │ ├── HealthKitSampleGenerator-dummy.m │ │ ├── HealthKitSampleGenerator-prefix.pch │ │ ├── HealthKitSampleGenerator-umbrella.h │ │ ├── HealthKitSampleGenerator.modulemap │ │ ├── HealthKitSampleGenerator.xcconfig │ │ └── Info.plist │ │ ├── Nimble │ │ ├── Info.plist │ │ ├── Nimble-dummy.m │ │ ├── Nimble-prefix.pch │ │ ├── Nimble-umbrella.h │ │ ├── Nimble.modulemap │ │ └── Nimble.xcconfig │ │ ├── Pods-HealthKitSampleGenerator_Example │ │ ├── Info.plist │ │ ├── Pods-HealthKitSampleGenerator_Example-acknowledgements.markdown │ │ ├── Pods-HealthKitSampleGenerator_Example-acknowledgements.plist │ │ ├── Pods-HealthKitSampleGenerator_Example-dummy.m │ │ ├── Pods-HealthKitSampleGenerator_Example-frameworks.sh │ │ ├── Pods-HealthKitSampleGenerator_Example-resources.sh │ │ ├── Pods-HealthKitSampleGenerator_Example-umbrella.h │ │ ├── Pods-HealthKitSampleGenerator_Example.debug.xcconfig │ │ ├── Pods-HealthKitSampleGenerator_Example.modulemap │ │ └── Pods-HealthKitSampleGenerator_Example.release.xcconfig │ │ ├── Pods-HealthKitSampleGenerator_Tests │ │ ├── Info.plist │ │ ├── Pods-HealthKitSampleGenerator_Tests-acknowledgements.markdown │ │ ├── Pods-HealthKitSampleGenerator_Tests-acknowledgements.plist │ │ ├── Pods-HealthKitSampleGenerator_Tests-dummy.m │ │ ├── Pods-HealthKitSampleGenerator_Tests-frameworks.sh │ │ ├── Pods-HealthKitSampleGenerator_Tests-resources.sh │ │ ├── Pods-HealthKitSampleGenerator_Tests-umbrella.h │ │ ├── Pods-HealthKitSampleGenerator_Tests.debug.xcconfig │ │ ├── Pods-HealthKitSampleGenerator_Tests.modulemap │ │ └── Pods-HealthKitSampleGenerator_Tests.release.xcconfig │ │ └── Quick │ │ ├── Info.plist │ │ ├── Quick-dummy.m │ │ ├── Quick-prefix.pch │ │ ├── Quick-umbrella.h │ │ ├── Quick.modulemap │ │ └── Quick.xcconfig └── Tests │ ├── DataExporterTest.swift │ ├── ExportConfigurationTest.swift │ ├── ExportTest.swift │ ├── FileNameUtilTest.swift │ ├── HealthKitProfileReaderTest.swift │ ├── HealthKitStoreMock.swift │ ├── Info.plist │ ├── JsonReaderTest.swift │ ├── JsonWriterTest.swift │ ├── OutputStreamTest.swift │ ├── SingleDocReaderTest.swift │ └── version-1.0.0.single-doc.json.hsg ├── HealthKitSampleGenerator.podspec ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── ExportConfiguration.swift │ ├── ExportTargets.swift │ ├── HealthKitConstants.swift │ ├── HealthKitDataExport.swift │ ├── HealthKitDataExporters.swift │ ├── HealthKitDataImporter.swift │ ├── HealthKitProfile.swift │ ├── HealthKitProfileImporter.swift │ ├── HealthKitProfileReader.swift │ ├── HealthKitStoreCleaner.swift │ ├── JsonReader.swift │ ├── JsonWriter.swift │ ├── OuputStreams.swift │ ├── SampleCreator.swift │ └── Util.swift ├── README.md ├── _Pods.xcodeproj └── images ├── export.png ├── healthapp.png └── import.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator.xcodeproj/xcshareddata/xcschemes/HealthKitSampleGenerator-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator.xcodeproj/xcshareddata/xcschemes/HealthKitSampleGenerator-Example.xcscheme -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator.xcodeproj/xcshareddata/xcschemes/TravisCiTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator.xcodeproj/xcshareddata/xcschemes/TravisCiTest.xcscheme -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator/AppDelegate.swift -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator/ExportViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator/ExportViewController.swift -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator/ImportProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator/ImportProfileViewController.swift -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator/Info.plist -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator/MainTabController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator/MainTabController.swift -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator/ProfilesTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator/ProfilesTableViewController.swift -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator/UIControls.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator/UIControls.swift -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator/UIUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator/UIUtil.swift -------------------------------------------------------------------------------- /Example/HealthKitSampleGeneratorPlayground.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGeneratorPlayground.playground/Contents.swift -------------------------------------------------------------------------------- /Example/HealthKitSampleGeneratorPlayground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGeneratorPlayground.playground/contents.xcplayground -------------------------------------------------------------------------------- /Example/HealthKitSampleGeneratorPlayground.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGeneratorPlayground.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Example/HealthKitSampleGenerator_Example.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/HealthKitSampleGenerator_Example.entitlements -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Nimble/DSL.h: -------------------------------------------------------------------------------- 1 | ../../../Nimble/Nimble/objc/DSL.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Nimble/NMBExceptionCapture.h: -------------------------------------------------------------------------------- 1 | ../../../Nimble/Nimble/objc/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Nimble/Nimble.h: -------------------------------------------------------------------------------- 1 | ../../../Nimble/Nimble/Nimble.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Quick/NSString+QCKSelectorName.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/NSString+QCKSelectorName.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Quick/QCKDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Quick/Quick.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/Quick.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Quick/QuickConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Quick/QuickSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/QuickSpec.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Quick/World+DSL.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/DSL/World+DSL.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Quick/World.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/World.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/HealthKitSampleGenerator.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Local Podspecs/HealthKitSampleGenerator.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Nimble/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/LICENSE.md -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Adapters/AssertionDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Adapters/AssertionDispatcher.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Adapters/NimbleXCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Adapters/NimbleXCTestHandler.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Expression.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeGreaterThanOrEqualTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeGreaterThanOrEqualTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Matchers/ThrowError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Matchers/ThrowError.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Nimble.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/ObjCExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/ObjCExpectation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Utils/Poll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Utils/Poll.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Wrappers/AsyncMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Wrappers/AsyncMatcherWrapper.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Wrappers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Wrappers/MatcherFunc.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/Wrappers/ObjCMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/Wrappers/ObjCMatcher.swift -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/objc/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/objc/DSL.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/objc/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/objc/DSL.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/objc/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/objc/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Example/Pods/Nimble/Nimble/objc/NMBExceptionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/Nimble/objc/NMBExceptionCapture.m -------------------------------------------------------------------------------- /Example/Pods/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Nimble/README.md -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/HealthKitSampleGenerator.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/HealthKitSampleGenerator.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Callsite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/Callsite.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/Configuration/Configuration.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Configuration/QuickConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Configuration/QuickConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/Configuration/QuickConfiguration.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/DSL/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/DSL/DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/DSL/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/DSL/QCKDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/DSL/QCKDSL.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/DSL/World+DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/DSL/World+DSL.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/DSL/World+DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/DSL/World+DSL.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/Example.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/ExampleGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/ExampleGroup.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/ExampleMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/ExampleMetadata.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/Filter.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Hooks/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/Hooks/Closures.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Hooks/ExampleHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/Hooks/ExampleHooks.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Hooks/SuiteHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/Hooks/SuiteHooks.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/NSString+QCKSelectorName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/NSString+QCKSelectorName.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/NSString+QCKSelectorName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/NSString+QCKSelectorName.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/Quick.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/QuickSpec.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/QuickSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/QuickSpec.m -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/World.h -------------------------------------------------------------------------------- /Example/Pods/Quick/Quick/World.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/Quick/World.swift -------------------------------------------------------------------------------- /Example/Pods/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Quick/README.md -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HealthKitSampleGenerator/HealthKitSampleGenerator-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/HealthKitSampleGenerator/HealthKitSampleGenerator-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HealthKitSampleGenerator/HealthKitSampleGenerator-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/HealthKitSampleGenerator/HealthKitSampleGenerator-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HealthKitSampleGenerator/HealthKitSampleGenerator-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/HealthKitSampleGenerator/HealthKitSampleGenerator-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HealthKitSampleGenerator/HealthKitSampleGenerator.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/HealthKitSampleGenerator/HealthKitSampleGenerator.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HealthKitSampleGenerator/HealthKitSampleGenerator.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/HealthKitSampleGenerator/HealthKitSampleGenerator.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/HealthKitSampleGenerator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/HealthKitSampleGenerator/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Nimble/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Nimble/Nimble-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Nimble/Nimble.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Nimble/Nimble.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Nimble/Nimble.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Example/Pods-HealthKitSampleGenerator_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Pods-HealthKitSampleGenerator_Tests/Pods-HealthKitSampleGenerator_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Quick/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Quick/Quick-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Quick/Quick-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Quick/Quick-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Quick/Quick.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Quick/Quick.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Pods/Target Support Files/Quick/Quick.xcconfig -------------------------------------------------------------------------------- /Example/Tests/DataExporterTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Tests/DataExporterTest.swift -------------------------------------------------------------------------------- /Example/Tests/ExportConfigurationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Tests/ExportConfigurationTest.swift -------------------------------------------------------------------------------- /Example/Tests/ExportTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Tests/ExportTest.swift -------------------------------------------------------------------------------- /Example/Tests/FileNameUtilTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Tests/FileNameUtilTest.swift -------------------------------------------------------------------------------- /Example/Tests/HealthKitProfileReaderTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Tests/HealthKitProfileReaderTest.swift -------------------------------------------------------------------------------- /Example/Tests/HealthKitStoreMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Tests/HealthKitStoreMock.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/JsonReaderTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Tests/JsonReaderTest.swift -------------------------------------------------------------------------------- /Example/Tests/JsonWriterTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Tests/JsonWriterTest.swift -------------------------------------------------------------------------------- /Example/Tests/OutputStreamTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Tests/OutputStreamTest.swift -------------------------------------------------------------------------------- /Example/Tests/SingleDocReaderTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Tests/SingleDocReaderTest.swift -------------------------------------------------------------------------------- /Example/Tests/version-1.0.0.single-doc.json.hsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Example/Tests/version-1.0.0.single-doc.json.hsg -------------------------------------------------------------------------------- /HealthKitSampleGenerator.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/HealthKitSampleGenerator.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/ExportConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Pod/Classes/ExportConfiguration.swift -------------------------------------------------------------------------------- /Pod/Classes/ExportTargets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Pod/Classes/ExportTargets.swift -------------------------------------------------------------------------------- /Pod/Classes/HealthKitConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Pod/Classes/HealthKitConstants.swift -------------------------------------------------------------------------------- /Pod/Classes/HealthKitDataExport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Pod/Classes/HealthKitDataExport.swift -------------------------------------------------------------------------------- /Pod/Classes/HealthKitDataExporters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Pod/Classes/HealthKitDataExporters.swift -------------------------------------------------------------------------------- /Pod/Classes/HealthKitDataImporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Pod/Classes/HealthKitDataImporter.swift -------------------------------------------------------------------------------- /Pod/Classes/HealthKitProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Pod/Classes/HealthKitProfile.swift -------------------------------------------------------------------------------- /Pod/Classes/HealthKitProfileImporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Pod/Classes/HealthKitProfileImporter.swift -------------------------------------------------------------------------------- /Pod/Classes/HealthKitProfileReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Pod/Classes/HealthKitProfileReader.swift -------------------------------------------------------------------------------- /Pod/Classes/HealthKitStoreCleaner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Pod/Classes/HealthKitStoreCleaner.swift -------------------------------------------------------------------------------- /Pod/Classes/JsonReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Pod/Classes/JsonReader.swift -------------------------------------------------------------------------------- /Pod/Classes/JsonWriter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Pod/Classes/JsonWriter.swift -------------------------------------------------------------------------------- /Pod/Classes/OuputStreams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Pod/Classes/OuputStreams.swift -------------------------------------------------------------------------------- /Pod/Classes/SampleCreator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Pod/Classes/SampleCreator.swift -------------------------------------------------------------------------------- /Pod/Classes/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/Pod/Classes/Util.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /images/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/images/export.png -------------------------------------------------------------------------------- /images/healthapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/images/healthapp.png -------------------------------------------------------------------------------- /images/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mseemann/healthkit-sample-generator/HEAD/images/import.png --------------------------------------------------------------------------------