├── .gitignore ├── .rubocop.yml ├── .rubocop_todo.yml ├── .travis.yml ├── CHANGELOG.md ├── Classes ├── NAKPlaybackIndicatorContentView.h ├── NAKPlaybackIndicatorContentView.m ├── NAKPlaybackIndicatorView.h ├── NAKPlaybackIndicatorView.m ├── NAKPlaybackIndicatorViewStyle.h └── NAKPlaybackIndicatorViewStyle.m ├── Demo ├── DMAppDelegate.h ├── DMAppDelegate.m ├── DMMediaItem.h ├── DMMediaItem.m ├── DMMusicPlayerController.h ├── DMMusicPlayerController.m ├── DMMusicViewController.h ├── DMMusicViewController.m ├── DMSongCell.h ├── DMSongCell.m ├── Demo-Info.plist ├── Demo-Prefix.pch ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── appstore.png │ │ ├── ipad.png │ │ ├── ipad_76@2x.png │ │ ├── ipad_83.5@2x.png │ │ └── iphone@2x.png │ └── Contents.json ├── Launch Screen.storyboard ├── en.lproj │ └── InfoPlist.strings └── main.m ├── Documentation ├── icon.png ├── music-app.png └── screenshot.png ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── NAKPlaybackIndicatorView.podspec ├── NAKPlaybackIndicatorView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Demo.xcscheme │ └── NAKPlaybackIndicatorView.xcscheme ├── NAKPlaybackIndicatorView.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Podfile ├── Podfile.lock ├── Pods ├── Expecta │ ├── Expecta │ │ ├── EXPBlockDefinedMatcher.h │ │ ├── EXPBlockDefinedMatcher.m │ │ ├── EXPDefines.h │ │ ├── EXPDoubleTuple.h │ │ ├── EXPDoubleTuple.m │ │ ├── EXPExpect.h │ │ ├── EXPExpect.m │ │ ├── EXPFloatTuple.h │ │ ├── EXPFloatTuple.m │ │ ├── EXPMatcher.h │ │ ├── EXPUnsupportedObject.h │ │ ├── EXPUnsupportedObject.m │ │ ├── Expecta.h │ │ ├── ExpectaObject.h │ │ ├── ExpectaObject.m │ │ ├── ExpectaSupport.h │ │ ├── ExpectaSupport.m │ │ ├── Matchers │ │ │ ├── EXPMatcherHelpers.h │ │ │ ├── EXPMatcherHelpers.m │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ ├── EXPMatchers+beCloseTo.m │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ ├── EXPMatchers+beFalsy.m │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ ├── EXPMatchers+beGreaterThan.m │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.m │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ ├── EXPMatchers+beIdenticalTo.m │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ ├── EXPMatchers+beInTheRangeOf.m │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ ├── EXPMatchers+beInstanceOf.m │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ ├── EXPMatchers+beKindOf.m │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ ├── EXPMatchers+beLessThan.m │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.m │ │ │ ├── EXPMatchers+beNil.h │ │ │ ├── EXPMatchers+beNil.m │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ ├── EXPMatchers+beSubclassOf.m │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ ├── EXPMatchers+beSupersetOf.m │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ ├── EXPMatchers+beTruthy.m │ │ │ ├── EXPMatchers+beginWith.h │ │ │ ├── EXPMatchers+beginWith.m │ │ │ ├── EXPMatchers+conformTo.h │ │ │ ├── EXPMatchers+conformTo.m │ │ │ ├── EXPMatchers+contain.h │ │ │ ├── EXPMatchers+contain.m │ │ │ ├── EXPMatchers+endWith.h │ │ │ ├── EXPMatchers+endWith.m │ │ │ ├── EXPMatchers+equal.h │ │ │ ├── EXPMatchers+equal.m │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ ├── EXPMatchers+haveCountOf.m │ │ │ ├── EXPMatchers+match.h │ │ │ ├── EXPMatchers+match.m │ │ │ ├── EXPMatchers+postNotification.h │ │ │ ├── EXPMatchers+postNotification.m │ │ │ ├── EXPMatchers+raise.h │ │ │ ├── EXPMatchers+raise.m │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ ├── EXPMatchers+raiseWithReason.m │ │ │ ├── EXPMatchers+respondTo.h │ │ │ ├── EXPMatchers+respondTo.m │ │ │ └── EXPMatchers.h │ │ ├── NSObject+Expecta.h │ │ ├── NSValue+Expecta.h │ │ └── NSValue+Expecta.m │ ├── LICENSE │ └── README.md ├── FBSnapshotTestCase │ ├── FBSnapshotTestCase │ │ ├── FBSnapshotTestCase.h │ │ ├── FBSnapshotTestCase.m │ │ ├── FBSnapshotTestCasePlatform.h │ │ ├── FBSnapshotTestCasePlatform.m │ │ ├── FBSnapshotTestController.h │ │ ├── FBSnapshotTestController.m │ │ ├── UIImage+Compare.h │ │ ├── UIImage+Compare.m │ │ ├── UIImage+Diff.h │ │ └── UIImage+Diff.m │ ├── LICENSE │ └── README.md ├── Headers │ ├── Private │ │ ├── Expecta │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ ├── EXPDefines.h │ │ │ ├── EXPDoubleTuple.h │ │ │ ├── EXPExpect.h │ │ │ ├── EXPFloatTuple.h │ │ │ ├── EXPMatcher.h │ │ │ ├── EXPMatcherHelpers.h │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ ├── EXPMatchers+beNil.h │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ ├── EXPMatchers+beginWith.h │ │ │ ├── EXPMatchers+conformTo.h │ │ │ ├── EXPMatchers+contain.h │ │ │ ├── EXPMatchers+endWith.h │ │ │ ├── EXPMatchers+equal.h │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ ├── EXPMatchers+match.h │ │ │ ├── EXPMatchers+postNotification.h │ │ │ ├── EXPMatchers+raise.h │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ ├── EXPMatchers+respondTo.h │ │ │ ├── EXPMatchers.h │ │ │ ├── EXPUnsupportedObject.h │ │ │ ├── Expecta.h │ │ │ ├── ExpectaObject.h │ │ │ ├── ExpectaSupport.h │ │ │ ├── NSObject+Expecta.h │ │ │ └── NSValue+Expecta.h │ │ ├── FBSnapshotTestCase │ │ │ ├── FBSnapshotTestCase.h │ │ │ ├── FBSnapshotTestCasePlatform.h │ │ │ ├── FBSnapshotTestController.h │ │ │ ├── UIImage+Compare.h │ │ │ └── UIImage+Diff.h │ │ ├── OCMock │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ ├── NSMethodSignature+OCMAdditions.h │ │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ │ ├── NSObject+OCMAdditions.h │ │ │ ├── NSValue+OCMAdditions.h │ │ │ ├── OCClassMockObject.h │ │ │ ├── OCMArg.h │ │ │ ├── OCMArgAction.h │ │ │ ├── OCMBlockArgCaller.h │ │ │ ├── OCMBlockCaller.h │ │ │ ├── OCMBoxedReturnValueProvider.h │ │ │ ├── OCMConstraint.h │ │ │ ├── OCMExceptionReturnValueProvider.h │ │ │ ├── OCMExpectationRecorder.h │ │ │ ├── OCMFunctions.h │ │ │ ├── OCMFunctionsPrivate.h │ │ │ ├── OCMIndirectReturnValueProvider.h │ │ │ ├── OCMInvocationExpectation.h │ │ │ ├── OCMInvocationMatcher.h │ │ │ ├── OCMInvocationStub.h │ │ │ ├── OCMLocation.h │ │ │ ├── OCMMacroState.h │ │ │ ├── OCMNotificationPoster.h │ │ │ ├── OCMObserverRecorder.h │ │ │ ├── OCMPassByRefSetter.h │ │ │ ├── OCMRealObjectForwarder.h │ │ │ ├── OCMRecorder.h │ │ │ ├── OCMReturnValueProvider.h │ │ │ ├── OCMStubRecorder.h │ │ │ ├── OCMVerifier.h │ │ │ ├── OCMock.h │ │ │ ├── OCMockObject.h │ │ │ ├── OCObserverMockObject.h │ │ │ ├── OCPartialMockObject.h │ │ │ └── OCProtocolMockObject.h │ │ └── Specta │ │ │ ├── SPTCallSite.h │ │ │ ├── SPTCompiledExample.h │ │ │ ├── SPTExample.h │ │ │ ├── SPTExampleGroup.h │ │ │ ├── SPTExcludeGlobalBeforeAfterEach.h │ │ │ ├── SPTGlobalBeforeAfterEach.h │ │ │ ├── SPTSharedExampleGroups.h │ │ │ ├── SPTSpec.h │ │ │ ├── SPTTestSuite.h │ │ │ ├── Specta.h │ │ │ ├── SpectaDSL.h │ │ │ ├── SpectaTypes.h │ │ │ ├── SpectaUtility.h │ │ │ ├── XCTest+Private.h │ │ │ └── XCTestCase+Specta.h │ └── Public │ │ ├── Expecta │ │ ├── EXPBlockDefinedMatcher.h │ │ ├── EXPDefines.h │ │ ├── EXPDoubleTuple.h │ │ ├── EXPExpect.h │ │ ├── EXPFloatTuple.h │ │ ├── EXPMatcher.h │ │ ├── EXPMatcherHelpers.h │ │ ├── EXPMatchers+beCloseTo.h │ │ ├── EXPMatchers+beFalsy.h │ │ ├── EXPMatchers+beGreaterThan.h │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ ├── EXPMatchers+beIdenticalTo.h │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ ├── EXPMatchers+beInstanceOf.h │ │ ├── EXPMatchers+beKindOf.h │ │ ├── EXPMatchers+beLessThan.h │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ ├── EXPMatchers+beNil.h │ │ ├── EXPMatchers+beSubclassOf.h │ │ ├── EXPMatchers+beSupersetOf.h │ │ ├── EXPMatchers+beTruthy.h │ │ ├── EXPMatchers+beginWith.h │ │ ├── EXPMatchers+conformTo.h │ │ ├── EXPMatchers+contain.h │ │ ├── EXPMatchers+endWith.h │ │ ├── EXPMatchers+equal.h │ │ ├── EXPMatchers+haveCountOf.h │ │ ├── EXPMatchers+match.h │ │ ├── EXPMatchers+postNotification.h │ │ ├── EXPMatchers+raise.h │ │ ├── EXPMatchers+raiseWithReason.h │ │ ├── EXPMatchers+respondTo.h │ │ ├── EXPMatchers.h │ │ ├── EXPUnsupportedObject.h │ │ ├── Expecta.h │ │ ├── ExpectaObject.h │ │ ├── ExpectaSupport.h │ │ ├── NSObject+Expecta.h │ │ └── NSValue+Expecta.h │ │ ├── FBSnapshotTestCase │ │ ├── FBSnapshotTestCase.h │ │ ├── FBSnapshotTestCasePlatform.h │ │ ├── FBSnapshotTestController.h │ │ ├── UIImage+Compare.h │ │ └── UIImage+Diff.h │ │ ├── OCMock │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ ├── OCMArg.h │ │ ├── OCMConstraint.h │ │ ├── OCMFunctions.h │ │ ├── OCMLocation.h │ │ ├── OCMMacroState.h │ │ ├── OCMRecorder.h │ │ ├── OCMStubRecorder.h │ │ ├── OCMock.h │ │ └── OCMockObject.h │ │ └── Specta │ │ ├── SPTCallSite.h │ │ ├── SPTCompiledExample.h │ │ ├── SPTExample.h │ │ ├── SPTExampleGroup.h │ │ ├── SPTExcludeGlobalBeforeAfterEach.h │ │ ├── SPTGlobalBeforeAfterEach.h │ │ ├── SPTSharedExampleGroups.h │ │ ├── SPTSpec.h │ │ ├── SPTTestSuite.h │ │ ├── Specta.h │ │ ├── SpectaDSL.h │ │ ├── SpectaTypes.h │ │ ├── SpectaUtility.h │ │ ├── XCTest+Private.h │ │ └── XCTestCase+Specta.h ├── Local Podspecs │ └── NAKPlaybackIndicatorView.podspec.json ├── Manifest.lock ├── OCMock │ ├── License.txt │ ├── README.md │ └── Source │ │ └── OCMock │ │ ├── NSInvocation+OCMAdditions.h │ │ ├── NSInvocation+OCMAdditions.m │ │ ├── NSMethodSignature+OCMAdditions.h │ │ ├── NSMethodSignature+OCMAdditions.m │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ ├── NSNotificationCenter+OCMAdditions.m │ │ ├── NSObject+OCMAdditions.h │ │ ├── NSObject+OCMAdditions.m │ │ ├── NSValue+OCMAdditions.h │ │ ├── NSValue+OCMAdditions.m │ │ ├── OCClassMockObject.h │ │ ├── OCClassMockObject.m │ │ ├── OCMArg.h │ │ ├── OCMArg.m │ │ ├── OCMArgAction.h │ │ ├── OCMArgAction.m │ │ ├── OCMBlockArgCaller.h │ │ ├── OCMBlockArgCaller.m │ │ ├── OCMBlockCaller.h │ │ ├── OCMBlockCaller.m │ │ ├── OCMBoxedReturnValueProvider.h │ │ ├── OCMBoxedReturnValueProvider.m │ │ ├── OCMConstraint.h │ │ ├── OCMConstraint.m │ │ ├── OCMExceptionReturnValueProvider.h │ │ ├── OCMExceptionReturnValueProvider.m │ │ ├── OCMExpectationRecorder.h │ │ ├── OCMExpectationRecorder.m │ │ ├── OCMFunctions.h │ │ ├── OCMFunctions.m │ │ ├── OCMFunctionsPrivate.h │ │ ├── OCMIndirectReturnValueProvider.h │ │ ├── OCMIndirectReturnValueProvider.m │ │ ├── OCMInvocationExpectation.h │ │ ├── OCMInvocationExpectation.m │ │ ├── OCMInvocationMatcher.h │ │ ├── OCMInvocationMatcher.m │ │ ├── OCMInvocationStub.h │ │ ├── OCMInvocationStub.m │ │ ├── OCMLocation.h │ │ ├── OCMLocation.m │ │ ├── OCMMacroState.h │ │ ├── OCMMacroState.m │ │ ├── OCMNotificationPoster.h │ │ ├── OCMNotificationPoster.m │ │ ├── OCMObserverRecorder.h │ │ ├── OCMObserverRecorder.m │ │ ├── OCMPassByRefSetter.h │ │ ├── OCMPassByRefSetter.m │ │ ├── OCMRealObjectForwarder.h │ │ ├── OCMRealObjectForwarder.m │ │ ├── OCMRecorder.h │ │ ├── OCMRecorder.m │ │ ├── OCMReturnValueProvider.h │ │ ├── OCMReturnValueProvider.m │ │ ├── OCMStubRecorder.h │ │ ├── OCMStubRecorder.m │ │ ├── OCMVerifier.h │ │ ├── OCMVerifier.m │ │ ├── OCMock.h │ │ ├── OCMockObject.h │ │ ├── OCMockObject.m │ │ ├── OCObserverMockObject.h │ │ ├── OCObserverMockObject.m │ │ ├── OCPartialMockObject.h │ │ ├── OCPartialMockObject.m │ │ ├── OCProtocolMockObject.h │ │ └── OCProtocolMockObject.m ├── Pods.xcodeproj │ └── project.pbxproj ├── Specta │ ├── LICENSE │ ├── README.md │ └── Specta │ │ └── Specta │ │ ├── SPTCallSite.h │ │ ├── SPTCallSite.m │ │ ├── SPTCompiledExample.h │ │ ├── SPTCompiledExample.m │ │ ├── SPTExample.h │ │ ├── SPTExample.m │ │ ├── SPTExampleGroup.h │ │ ├── SPTExampleGroup.m │ │ ├── SPTExcludeGlobalBeforeAfterEach.h │ │ ├── SPTGlobalBeforeAfterEach.h │ │ ├── SPTSharedExampleGroups.h │ │ ├── SPTSharedExampleGroups.m │ │ ├── SPTSpec.h │ │ ├── SPTSpec.m │ │ ├── SPTTestSuite.h │ │ ├── SPTTestSuite.m │ │ ├── Specta.h │ │ ├── SpectaDSL.h │ │ ├── SpectaDSL.m │ │ ├── SpectaTypes.h │ │ ├── SpectaUtility.h │ │ ├── SpectaUtility.m │ │ ├── XCTest+Private.h │ │ ├── XCTestCase+Specta.h │ │ └── XCTestCase+Specta.m └── Target Support Files │ ├── Expecta │ ├── Expecta-dummy.m │ ├── Expecta-prefix.pch │ └── Expecta.xcconfig │ ├── FBSnapshotTestCase │ ├── FBSnapshotTestCase-dummy.m │ ├── FBSnapshotTestCase-prefix.pch │ └── FBSnapshotTestCase.xcconfig │ ├── OCMock │ ├── OCMock-dummy.m │ ├── OCMock-prefix.pch │ └── OCMock.xcconfig │ ├── Pods-Tests │ ├── Pods-Tests-acknowledgements.markdown │ ├── Pods-Tests-acknowledgements.plist │ ├── Pods-Tests-dummy.m │ ├── Pods-Tests-frameworks.sh │ ├── Pods-Tests-resources.sh │ ├── Pods-Tests.debug.xcconfig │ └── Pods-Tests.release.xcconfig │ └── Specta │ ├── Specta-dummy.m │ ├── Specta-prefix.pch │ └── Specta.xcconfig ├── README.md ├── Rakefile ├── Tasks └── test.rake ├── TestHost ├── Launch Screen.storyboard ├── THAppDelegate.h ├── THAppDelegate.m ├── TestHost-Info.plist ├── TestHost-Prefix.pch ├── en.lproj │ └── InfoPlist.strings └── main.m └── Tests ├── Info.plist ├── NAKPlaybackIndicatorViewSpec.m ├── ReferenceImages_64 └── SnapshotTests │ ├── testClippedContentInSmallFrame@2x.png │ ├── testClippedContentInSmallFrame@3x.png │ ├── testConteredContentPositionInLargeFrame@2x.png │ ├── testConteredContentPositionInLargeFrame@3x.png │ ├── testIOS10StylePausedContent@2x.png │ ├── testIOS10StylePausedContent@3x.png │ ├── testPausedContent@2x.png │ ├── testPausedContent@3x.png │ ├── testSuperviewTintColor@2x.png │ ├── testTintColor@2x.png │ └── testTintColor@3x.png └── SnapshotTests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Classes/NAKPlaybackIndicatorContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Classes/NAKPlaybackIndicatorContentView.h -------------------------------------------------------------------------------- /Classes/NAKPlaybackIndicatorContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Classes/NAKPlaybackIndicatorContentView.m -------------------------------------------------------------------------------- /Classes/NAKPlaybackIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Classes/NAKPlaybackIndicatorView.h -------------------------------------------------------------------------------- /Classes/NAKPlaybackIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Classes/NAKPlaybackIndicatorView.m -------------------------------------------------------------------------------- /Classes/NAKPlaybackIndicatorViewStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Classes/NAKPlaybackIndicatorViewStyle.h -------------------------------------------------------------------------------- /Classes/NAKPlaybackIndicatorViewStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Classes/NAKPlaybackIndicatorViewStyle.m -------------------------------------------------------------------------------- /Demo/DMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/DMAppDelegate.h -------------------------------------------------------------------------------- /Demo/DMAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/DMAppDelegate.m -------------------------------------------------------------------------------- /Demo/DMMediaItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/DMMediaItem.h -------------------------------------------------------------------------------- /Demo/DMMediaItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/DMMediaItem.m -------------------------------------------------------------------------------- /Demo/DMMusicPlayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/DMMusicPlayerController.h -------------------------------------------------------------------------------- /Demo/DMMusicPlayerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/DMMusicPlayerController.m -------------------------------------------------------------------------------- /Demo/DMMusicViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/DMMusicViewController.h -------------------------------------------------------------------------------- /Demo/DMMusicViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/DMMusicViewController.m -------------------------------------------------------------------------------- /Demo/DMSongCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/DMSongCell.h -------------------------------------------------------------------------------- /Demo/DMSongCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/DMSongCell.m -------------------------------------------------------------------------------- /Demo/Demo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/Demo-Info.plist -------------------------------------------------------------------------------- /Demo/Demo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/Demo-Prefix.pch -------------------------------------------------------------------------------- /Demo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/Images.xcassets/AppIcon.appiconset/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/Images.xcassets/AppIcon.appiconset/appstore.png -------------------------------------------------------------------------------- /Demo/Images.xcassets/AppIcon.appiconset/ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/Images.xcassets/AppIcon.appiconset/ipad.png -------------------------------------------------------------------------------- /Demo/Images.xcassets/AppIcon.appiconset/ipad_76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/Images.xcassets/AppIcon.appiconset/ipad_76@2x.png -------------------------------------------------------------------------------- /Demo/Images.xcassets/AppIcon.appiconset/ipad_83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/Images.xcassets/AppIcon.appiconset/ipad_83.5@2x.png -------------------------------------------------------------------------------- /Demo/Images.xcassets/AppIcon.appiconset/iphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/Images.xcassets/AppIcon.appiconset/iphone@2x.png -------------------------------------------------------------------------------- /Demo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/Launch Screen.storyboard -------------------------------------------------------------------------------- /Demo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Demo/main.m -------------------------------------------------------------------------------- /Documentation/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Documentation/icon.png -------------------------------------------------------------------------------- /Documentation/music-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Documentation/music-app.png -------------------------------------------------------------------------------- /Documentation/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Documentation/screenshot.png -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NAKPlaybackIndicatorView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/NAKPlaybackIndicatorView.podspec -------------------------------------------------------------------------------- /NAKPlaybackIndicatorView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/NAKPlaybackIndicatorView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NAKPlaybackIndicatorView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/NAKPlaybackIndicatorView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NAKPlaybackIndicatorView.xcodeproj/xcshareddata/xcschemes/Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/NAKPlaybackIndicatorView.xcodeproj/xcshareddata/xcschemes/Demo.xcscheme -------------------------------------------------------------------------------- /NAKPlaybackIndicatorView.xcodeproj/xcshareddata/xcschemes/NAKPlaybackIndicatorView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/NAKPlaybackIndicatorView.xcodeproj/xcshareddata/xcschemes/NAKPlaybackIndicatorView.xcscheme -------------------------------------------------------------------------------- /NAKPlaybackIndicatorView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/NAKPlaybackIndicatorView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NAKPlaybackIndicatorView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/NAKPlaybackIndicatorView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPBlockDefinedMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPDoubleTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/EXPDoubleTuple.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPExpect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/EXPExpect.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPFloatTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/EXPFloatTuple.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/EXPUnsupportedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/EXPUnsupportedObject.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/ExpectaObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/ExpectaObject.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/ExpectaSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/ExpectaSupport.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beFalsy, (void)); 4 | -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beSupersetOf, (id subset)); 4 | 5 | -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beTruthy, (void)); 4 | -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+match.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.m -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/Matchers/EXPMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /Pods/Expecta/Expecta/NSValue+Expecta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/Expecta/NSValue+Expecta.m -------------------------------------------------------------------------------- /Pods/Expecta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/LICENSE -------------------------------------------------------------------------------- /Pods/Expecta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Expecta/README.md -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.m -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.m -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.m -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.h -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.m -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.h -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.m -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/FBSnapshotTestCase/LICENSE -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/FBSnapshotTestCase/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+match.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FBSnapshotTestCase/UIImage+Compare.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.h -------------------------------------------------------------------------------- /Pods/Headers/Private/FBSnapshotTestCase/UIImage+Diff.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/NSMethodSignature+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/NSObject+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSObject+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/NSValue+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSValue+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCClassMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCClassMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMArg.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMArgAction.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMArgAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMBlockArgCaller.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMBlockArgCaller.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMBlockCaller.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMBlockCaller.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMBoxedReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMExceptionReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMExpectationRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMExpectationRecorder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMFunctionsPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMFunctionsPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMIndirectReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMInvocationExpectation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMInvocationExpectation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMInvocationMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMInvocationMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMInvocationStub.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMInvocationStub.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMNotificationPoster.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMNotificationPoster.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMObserverRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMObserverRecorder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMPassByRefSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMPassByRefSetter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMRealObjectForwarder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRealObjectForwarder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMVerifier.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCObserverMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCObserverMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCPartialMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCPartialMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OCMock/OCProtocolMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCProtocolMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+match.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FBSnapshotTestCase/UIImage+Compare.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FBSnapshotTestCase/UIImage+Diff.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMArg.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Specta/SPTExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Specta/SPTSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Specta/Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /Pods/Local Podspecs/NAKPlaybackIndicatorView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Local Podspecs/NAKPlaybackIndicatorView.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/OCMock/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/License.txt -------------------------------------------------------------------------------- /Pods/OCMock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/README.md -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCClassMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCClassMockObject.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCClassMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCClassMockObject.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMArg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMArg.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMArgAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMArgAction.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMArgAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMArgAction.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMBlockArgCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMBlockArgCaller.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMBlockArgCaller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMBlockArgCaller.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMBlockCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMBlockCaller.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMBlockCaller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMBlockCaller.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMConstraint.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMExpectationRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMExpectationRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMFunctions.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMFunctionsPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMFunctionsPrivate.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMInvocationExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMInvocationExpectation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMInvocationMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMInvocationStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMInvocationStub.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMInvocationStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMInvocationStub.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMLocation.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMMacroState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMMacroState.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMNotificationPoster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMNotificationPoster.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMNotificationPoster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMNotificationPoster.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMObserverRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMObserverRecorder.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMObserverRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMObserverRecorder.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMPassByRefSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMPassByRefSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMRecorder.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMStubRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMStubRecorder.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMVerifier.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMVerifier.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCMockObject.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCObserverMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCObserverMockObject.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCObserverMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCObserverMockObject.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCPartialMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCPartialMockObject.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCPartialMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCPartialMockObject.m -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCProtocolMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCProtocolMockObject.h -------------------------------------------------------------------------------- /Pods/OCMock/Source/OCMock/OCProtocolMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/OCMock/Source/OCMock/OCProtocolMockObject.m -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Specta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/LICENSE -------------------------------------------------------------------------------- /Pods/Specta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/README.md -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTCallSite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTCallSite.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTCompiledExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTCompiledExample.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTExample.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTExampleGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTExampleGroup.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTSharedExampleGroups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTSpec.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SPTTestSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SPTTestSuite.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SpectaDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SpectaDSL.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/SpectaUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/SpectaUtility.m -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /Pods/Specta/Specta/Specta/XCTestCase+Specta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Specta/Specta/Specta/XCTestCase+Specta.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Expecta/Expecta-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/Expecta/Expecta-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Expecta/Expecta-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/Expecta/Expecta-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Expecta/Expecta.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/Expecta/Expecta.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/OCMock/OCMock-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/OCMock/OCMock-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/OCMock/OCMock-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/OCMock/OCMock-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/OCMock/OCMock.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/OCMock/OCMock.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tests/Pods-Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/Pods-Tests/Pods-Tests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Specta/Specta-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/Specta/Specta-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Specta/Specta-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/Specta/Specta-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Specta/Specta.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Pods/Target Support Files/Specta/Specta.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Rakefile -------------------------------------------------------------------------------- /Tasks/test.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Tasks/test.rake -------------------------------------------------------------------------------- /TestHost/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/TestHost/Launch Screen.storyboard -------------------------------------------------------------------------------- /TestHost/THAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/TestHost/THAppDelegate.h -------------------------------------------------------------------------------- /TestHost/THAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/TestHost/THAppDelegate.m -------------------------------------------------------------------------------- /TestHost/TestHost-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/TestHost/TestHost-Info.plist -------------------------------------------------------------------------------- /TestHost/TestHost-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/TestHost/TestHost-Prefix.pch -------------------------------------------------------------------------------- /TestHost/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TestHost/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/TestHost/main.m -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/NAKPlaybackIndicatorViewSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Tests/NAKPlaybackIndicatorViewSpec.m -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/SnapshotTests/testClippedContentInSmallFrame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Tests/ReferenceImages_64/SnapshotTests/testClippedContentInSmallFrame@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/SnapshotTests/testClippedContentInSmallFrame@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Tests/ReferenceImages_64/SnapshotTests/testClippedContentInSmallFrame@3x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/SnapshotTests/testConteredContentPositionInLargeFrame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Tests/ReferenceImages_64/SnapshotTests/testConteredContentPositionInLargeFrame@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/SnapshotTests/testConteredContentPositionInLargeFrame@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Tests/ReferenceImages_64/SnapshotTests/testConteredContentPositionInLargeFrame@3x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/SnapshotTests/testIOS10StylePausedContent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Tests/ReferenceImages_64/SnapshotTests/testIOS10StylePausedContent@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/SnapshotTests/testIOS10StylePausedContent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Tests/ReferenceImages_64/SnapshotTests/testIOS10StylePausedContent@3x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/SnapshotTests/testPausedContent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Tests/ReferenceImages_64/SnapshotTests/testPausedContent@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/SnapshotTests/testPausedContent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Tests/ReferenceImages_64/SnapshotTests/testPausedContent@3x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/SnapshotTests/testSuperviewTintColor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Tests/ReferenceImages_64/SnapshotTests/testSuperviewTintColor@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/SnapshotTests/testTintColor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Tests/ReferenceImages_64/SnapshotTests/testTintColor@2x.png -------------------------------------------------------------------------------- /Tests/ReferenceImages_64/SnapshotTests/testTintColor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Tests/ReferenceImages_64/SnapshotTests/testTintColor@3x.png -------------------------------------------------------------------------------- /Tests/SnapshotTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yujinakayama/NAKPlaybackIndicatorView/HEAD/Tests/SnapshotTests.m --------------------------------------------------------------------------------