├── .gitignore ├── .slather.yml ├── .travis.yml ├── AMTagListView.podspec ├── AMTagListView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── AMTagListView.xcscheme ├── AMTagListView ├── AMTagListView.h └── Info.plist ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Rakefile ├── Source ├── AMTag.h ├── AMTagListView.h ├── AMTagListView.m ├── AMTagView.h └── AMTagView.m ├── SwiftDemo ├── Podfile ├── Podfile.lock ├── Pods │ ├── AMTagListView │ │ ├── AMTagListView │ │ │ ├── AMTagListView.h │ │ │ ├── AMTagListView.m │ │ │ ├── AMTagView.h │ │ │ └── AMTagView.m │ │ ├── LICENSE │ │ └── README.md │ ├── Headers │ │ ├── Build │ │ │ └── AMTagListView │ │ │ │ ├── AMTagListView.h │ │ │ │ └── AMTagView.h │ │ └── Public │ │ │ └── AMTagListView │ │ │ ├── AMTagListView.h │ │ │ └── AMTagView.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-SwiftDemo-AMTagListView │ │ ├── Pods-SwiftDemo-AMTagListView-Private.xcconfig │ │ ├── Pods-SwiftDemo-AMTagListView-dummy.m │ │ ├── Pods-SwiftDemo-AMTagListView-prefix.pch │ │ └── Pods-SwiftDemo-AMTagListView.xcconfig │ │ └── Pods-SwiftDemo │ │ ├── Pods-SwiftDemo-acknowledgements.markdown │ │ ├── Pods-SwiftDemo-acknowledgements.plist │ │ ├── Pods-SwiftDemo-dummy.m │ │ ├── Pods-SwiftDemo-environment.h │ │ ├── Pods-SwiftDemo-resources.sh │ │ ├── Pods-SwiftDemo.debug.xcconfig │ │ └── Pods-SwiftDemo.release.xcconfig ├── SwiftDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── SwiftDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── SwiftDemo │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Bridging-Header.h │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── TagListViewDemo ├── Podfile ├── Podfile.lock ├── Pods │ ├── Expecta+Snapshots │ │ ├── EXPMatchers+FBSnapshotTest.h │ │ ├── EXPMatchers+FBSnapshotTest.m │ │ ├── ExpectaObject+FBSnapshotTest.h │ │ ├── ExpectaObject+FBSnapshotTest.m │ │ ├── LICENSE.md │ │ └── README.md │ ├── 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 │ │ │ ├── Categories │ │ │ │ ├── UIImage+Compare.h │ │ │ │ ├── UIImage+Compare.m │ │ │ │ ├── UIImage+Diff.h │ │ │ │ ├── UIImage+Diff.m │ │ │ │ ├── UIImage+Snapshot.h │ │ │ │ └── UIImage+Snapshot.m │ │ │ ├── FBSnapshotTestCase.h │ │ │ ├── FBSnapshotTestCase.m │ │ │ ├── FBSnapshotTestCasePlatform.h │ │ │ ├── FBSnapshotTestCasePlatform.m │ │ │ ├── FBSnapshotTestController.h │ │ │ └── FBSnapshotTestController.m │ │ ├── LICENSE │ │ └── README.md │ ├── Headers │ │ ├── Private │ │ │ ├── Expecta+Snapshots │ │ │ │ ├── EXPMatchers+FBSnapshotTest.h │ │ │ │ └── ExpectaObject+FBSnapshotTest.h │ │ │ ├── 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 │ │ │ │ └── UIImage+Snapshot.h │ │ │ ├── OCMock │ │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ │ ├── NSMethodSignature+OCMAdditions.h │ │ │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ │ │ ├── NSObject+OCMAdditions.h │ │ │ │ ├── NSValue+OCMAdditions.h │ │ │ │ ├── OCClassMockObject.h │ │ │ │ ├── OCMArg.h │ │ │ │ ├── OCMBlockCaller.h │ │ │ │ ├── OCMBoxedReturnValueProvider.h │ │ │ │ ├── OCMConstraint.h │ │ │ │ ├── OCMExceptionReturnValueProvider.h │ │ │ │ ├── OCMExpectationRecorder.h │ │ │ │ ├── OCMFunctions.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+Snapshots │ │ │ ├── EXPMatchers+FBSnapshotTest.h │ │ │ └── ExpectaObject+FBSnapshotTest.h │ │ │ ├── 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 │ │ │ └── UIImage+Snapshot.h │ │ │ ├── OCMock │ │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ │ ├── OCMArg.h │ │ │ ├── OCMConstraint.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 │ ├── 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 │ │ │ ├── OCMBlockCaller.h │ │ │ ├── OCMBlockCaller.m │ │ │ ├── OCMBoxedReturnValueProvider.h │ │ │ ├── OCMBoxedReturnValueProvider.m │ │ │ ├── OCMConstraint.h │ │ │ ├── OCMConstraint.m │ │ │ ├── OCMExceptionReturnValueProvider.h │ │ │ ├── OCMExceptionReturnValueProvider.m │ │ │ ├── OCMExpectationRecorder.h │ │ │ ├── OCMExpectationRecorder.m │ │ │ ├── OCMFunctions.h │ │ │ ├── OCMFunctions.m │ │ │ ├── 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+Snapshots │ │ ├── Expecta+Snapshots-Private.xcconfig │ │ ├── Expecta+Snapshots-dummy.m │ │ ├── Expecta+Snapshots-prefix.pch │ │ └── Expecta+Snapshots.xcconfig │ │ ├── Expecta │ │ ├── Expecta-Private.xcconfig │ │ ├── Expecta-dummy.m │ │ ├── Expecta-prefix.pch │ │ └── Expecta.xcconfig │ │ ├── FBSnapshotTestCase │ │ ├── FBSnapshotTestCase-Private.xcconfig │ │ ├── FBSnapshotTestCase-dummy.m │ │ ├── FBSnapshotTestCase-prefix.pch │ │ └── FBSnapshotTestCase.xcconfig │ │ ├── OCMock │ │ ├── OCMock-Private.xcconfig │ │ ├── OCMock-dummy.m │ │ ├── OCMock-prefix.pch │ │ └── OCMock.xcconfig │ │ ├── Pods-TagListViewTests │ │ ├── Pods-TagListViewTests-acknowledgements.markdown │ │ ├── Pods-TagListViewTests-acknowledgements.plist │ │ ├── Pods-TagListViewTests-dummy.m │ │ ├── Pods-TagListViewTests-frameworks.sh │ │ ├── Pods-TagListViewTests-resources.sh │ │ ├── Pods-TagListViewTests.debug.xcconfig │ │ └── Pods-TagListViewTests.release.xcconfig │ │ └── Specta │ │ ├── Specta-Private.xcconfig │ │ ├── Specta-dummy.m │ │ ├── Specta-prefix.pch │ │ └── Specta.xcconfig ├── TagListViewDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── TagListViewDemo.xcscheme ├── TagListViewDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── TagListViewDemo │ ├── AMAppDelegate.h │ ├── AMAppDelegate.m │ ├── AMViewController.h │ ├── AMViewController.m │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── UIView+draggable Copy-120.png │ │ │ ├── UIView+draggable Copy-121.png │ │ │ ├── UIView+draggable Copy-180.png │ │ │ ├── UIView+draggable Copy-58.png │ │ │ ├── UIView+draggable Copy-80.png │ │ │ └── UIView+draggable Copy-87.png │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── default-2.png │ │ │ └── default.png │ │ ├── close.imageset │ │ │ ├── Contents.json │ │ │ └── close.pdf │ │ └── logo.imageset │ │ │ ├── Contents.json │ │ │ └── logo.pdf │ ├── Launch Screen.xib │ ├── TagListViewDemo-Info.plist │ ├── TagListViewDemo-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── TagListViewTests │ ├── AMTagViewTests.m │ ├── Info.plist │ ├── ReferenceImages │ ├── AMTagListViewSpec │ │ ├── visuals_looks_right_by_default@2x.png │ │ ├── visuals_looks_right_by_default@3x.png │ │ ├── visuals_looks_right_with_a_tag@2x.png │ │ ├── visuals_looks_right_with_a_tag@3x.png │ │ ├── visuals_looks_right_with_an_array_of_tags@2x.png │ │ ├── visuals_looks_right_with_an_array_of_tags@3x.png │ │ ├── visuals_looks_right_with_an_array_of_tags_aligned_to_the_right@2x.png │ │ └── visuals_looks_right_with_an_array_of_tags_aligned_to_the_right@3x.png │ └── AMTagViewSpec │ │ ├── can_be_customised_via_UIAppearance_and_it_looks_right@2x.png │ │ ├── can_be_customised_via_UIAppearance_and_it_looks_right@3x.png │ │ ├── can_be_customised_via_UIAppearance_can_specify_vertical_and_horizontal_padding_separately@2x.png │ │ ├── can_be_customised_via_UIAppearance_can_specify_vertical_and_horizontal_padding_separately@3x.png │ │ ├── can_be_customised_via_UIAppearance_updates_the_text_color_properly_after@2x.png │ │ ├── can_be_customised_via_UIAppearance_updates_the_text_color_properly_after@3x.png │ │ ├── can_be_customised_via_UIAppearance_updates_the_text_color_properly_before@2x.png │ │ ├── can_be_customised_via_UIAppearance_updates_the_text_color_properly_before@3x.png │ │ ├── changing_the_text_looks_ok@2x.png │ │ └── changing_the_text_looks_ok@3x.png │ └── TagListViewTests.m └── assets ├── demo.png ├── logo.png └── screenshot.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/.gitignore -------------------------------------------------------------------------------- /.slather.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/.slather.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/.travis.yml -------------------------------------------------------------------------------- /AMTagListView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/AMTagListView.podspec -------------------------------------------------------------------------------- /AMTagListView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/AMTagListView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AMTagListView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/AMTagListView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AMTagListView.xcodeproj/xcshareddata/xcschemes/AMTagListView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/AMTagListView.xcodeproj/xcshareddata/xcschemes/AMTagListView.xcscheme -------------------------------------------------------------------------------- /AMTagListView/AMTagListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/AMTagListView/AMTagListView.h -------------------------------------------------------------------------------- /AMTagListView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/AMTagListView/Info.plist -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/Rakefile -------------------------------------------------------------------------------- /Source/AMTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/Source/AMTag.h -------------------------------------------------------------------------------- /Source/AMTagListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/Source/AMTagListView.h -------------------------------------------------------------------------------- /Source/AMTagListView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/Source/AMTagListView.m -------------------------------------------------------------------------------- /Source/AMTagView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/Source/AMTagView.h -------------------------------------------------------------------------------- /Source/AMTagView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/Source/AMTagView.m -------------------------------------------------------------------------------- /SwiftDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Podfile -------------------------------------------------------------------------------- /SwiftDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Podfile.lock -------------------------------------------------------------------------------- /SwiftDemo/Pods/AMTagListView/AMTagListView/AMTagListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/AMTagListView/AMTagListView/AMTagListView.h -------------------------------------------------------------------------------- /SwiftDemo/Pods/AMTagListView/AMTagListView/AMTagListView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/AMTagListView/AMTagListView/AMTagListView.m -------------------------------------------------------------------------------- /SwiftDemo/Pods/AMTagListView/AMTagListView/AMTagView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/AMTagListView/AMTagListView/AMTagView.h -------------------------------------------------------------------------------- /SwiftDemo/Pods/AMTagListView/AMTagListView/AMTagView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/AMTagListView/AMTagListView/AMTagView.m -------------------------------------------------------------------------------- /SwiftDemo/Pods/AMTagListView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/AMTagListView/LICENSE -------------------------------------------------------------------------------- /SwiftDemo/Pods/AMTagListView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/AMTagListView/README.md -------------------------------------------------------------------------------- /SwiftDemo/Pods/Headers/Build/AMTagListView/AMTagListView.h: -------------------------------------------------------------------------------- 1 | ../../../AMTagListView/AMTagListView/AMTagListView.h -------------------------------------------------------------------------------- /SwiftDemo/Pods/Headers/Build/AMTagListView/AMTagView.h: -------------------------------------------------------------------------------- 1 | ../../../AMTagListView/AMTagListView/AMTagView.h -------------------------------------------------------------------------------- /SwiftDemo/Pods/Headers/Public/AMTagListView/AMTagListView.h: -------------------------------------------------------------------------------- 1 | ../../../AMTagListView/AMTagListView/AMTagListView.h -------------------------------------------------------------------------------- /SwiftDemo/Pods/Headers/Public/AMTagListView/AMTagView.h: -------------------------------------------------------------------------------- 1 | ../../../AMTagListView/AMTagListView/AMTagView.h -------------------------------------------------------------------------------- /SwiftDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /SwiftDemo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo-AMTagListView/Pods-SwiftDemo-AMTagListView-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo-AMTagListView/Pods-SwiftDemo-AMTagListView-Private.xcconfig -------------------------------------------------------------------------------- /SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo-AMTagListView/Pods-SwiftDemo-AMTagListView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo-AMTagListView/Pods-SwiftDemo-AMTagListView-dummy.m -------------------------------------------------------------------------------- /SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo-AMTagListView/Pods-SwiftDemo-AMTagListView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo-AMTagListView/Pods-SwiftDemo-AMTagListView-prefix.pch -------------------------------------------------------------------------------- /SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo-AMTagListView/Pods-SwiftDemo-AMTagListView.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo/Pods-SwiftDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo/Pods-SwiftDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo/Pods-SwiftDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo/Pods-SwiftDemo-acknowledgements.plist -------------------------------------------------------------------------------- /SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo/Pods-SwiftDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo/Pods-SwiftDemo-dummy.m -------------------------------------------------------------------------------- /SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo/Pods-SwiftDemo-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo/Pods-SwiftDemo-environment.h -------------------------------------------------------------------------------- /SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo/Pods-SwiftDemo-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo/Pods-SwiftDemo-resources.sh -------------------------------------------------------------------------------- /SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo/Pods-SwiftDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo/Pods-SwiftDemo.debug.xcconfig -------------------------------------------------------------------------------- /SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo/Pods-SwiftDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/Pods/Target Support Files/Pods-SwiftDemo/Pods-SwiftDemo.release.xcconfig -------------------------------------------------------------------------------- /SwiftDemo/SwiftDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/SwiftDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftDemo/SwiftDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/SwiftDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftDemo/SwiftDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/SwiftDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftDemo/SwiftDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/SwiftDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiftDemo/SwiftDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/SwiftDemo/AppDelegate.swift -------------------------------------------------------------------------------- /SwiftDemo/SwiftDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/SwiftDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /SwiftDemo/SwiftDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/SwiftDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SwiftDemo/SwiftDemo/Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/SwiftDemo/Bridging-Header.h -------------------------------------------------------------------------------- /SwiftDemo/SwiftDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/SwiftDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwiftDemo/SwiftDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/SwiftDemo/Info.plist -------------------------------------------------------------------------------- /SwiftDemo/SwiftDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/SwiftDemo/SwiftDemo/ViewController.swift -------------------------------------------------------------------------------- /TagListViewDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Podfile -------------------------------------------------------------------------------- /TagListViewDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Podfile.lock -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta+Snapshots/EXPMatchers+FBSnapshotTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta+Snapshots/EXPMatchers+FBSnapshotTest.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta+Snapshots/EXPMatchers+FBSnapshotTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta+Snapshots/EXPMatchers+FBSnapshotTest.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta+Snapshots/ExpectaObject+FBSnapshotTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta+Snapshots/ExpectaObject+FBSnapshotTest.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta+Snapshots/ExpectaObject+FBSnapshotTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta+Snapshots/ExpectaObject+FBSnapshotTest.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta+Snapshots/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta+Snapshots/LICENSE.md -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta+Snapshots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta+Snapshots/README.md -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/EXPDoubleTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/EXPDoubleTuple.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/EXPExpect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/EXPExpect.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/EXPFloatTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/EXPFloatTuple.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/EXPUnsupportedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/EXPUnsupportedObject.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/ExpectaObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/ExpectaObject.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/ExpectaSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/ExpectaSupport.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beFalsy, (void)); 4 | -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beSupersetOf, (id subset)); 4 | 5 | -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beTruthy, (void)); 4 | -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/Expecta/NSValue+Expecta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/Expecta/NSValue+Expecta.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/LICENSE -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Expecta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Expecta/README.md -------------------------------------------------------------------------------- /TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Compare.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Compare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Compare.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Diff.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Diff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Diff.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Snapshot.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Snapshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Snapshot.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/FBSnapshotTestCase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/FBSnapshotTestCase/LICENSE -------------------------------------------------------------------------------- /TagListViewDemo/Pods/FBSnapshotTestCase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/FBSnapshotTestCase/README.md -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta+Snapshots/EXPMatchers+FBSnapshotTest.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta+Snapshots/EXPMatchers+FBSnapshotTest.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta+Snapshots/ExpectaObject+FBSnapshotTest.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta+Snapshots/ExpectaObject+FBSnapshotTest.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+match.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/FBSnapshotTestCase/UIImage+Compare.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Compare.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/FBSnapshotTestCase/UIImage+Diff.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Diff.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/FBSnapshotTestCase/UIImage+Snapshot.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Snapshot.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/NSMethodSignature+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/NSObject+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSObject+OCMAdditions.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/NSValue+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSValue+OCMAdditions.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCClassMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCClassMockObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMArg.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMBlockCaller.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMBlockCaller.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMBoxedReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMExceptionReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMExpectationRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMExpectationRecorder.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMIndirectReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMInvocationExpectation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMInvocationExpectation.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMInvocationMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMInvocationMatcher.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMInvocationStub.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMInvocationStub.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMNotificationPoster.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMNotificationPoster.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMObserverRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMObserverRecorder.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMPassByRefSetter.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMPassByRefSetter.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMRealObjectForwarder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRealObjectForwarder.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMReturnValueProvider.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMReturnValueProvider.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMVerifier.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCObserverMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCObserverMockObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCPartialMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCPartialMockObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/OCMock/OCProtocolMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCProtocolMockObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Specta/SPTExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Specta/SPTSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Specta/Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Private/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta+Snapshots/EXPMatchers+FBSnapshotTest.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta+Snapshots/EXPMatchers+FBSnapshotTest.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta+Snapshots/ExpectaObject+FBSnapshotTest.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta+Snapshots/ExpectaObject+FBSnapshotTest.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+match.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/FBSnapshotTestCase/UIImage+Compare.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Compare.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/FBSnapshotTestCase/UIImage+Diff.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Diff.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/FBSnapshotTestCase/UIImage+Snapshot.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/Categories/UIImage+Snapshot.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/OCMock/OCMArg.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/OCMock/OCMock.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- 1 | ../../../OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Specta/SPTExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Specta/SPTSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Specta/Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Headers/Public/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/License.txt -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/README.md -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/NSInvocation+OCMAdditions.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/NSMethodSignature+OCMAdditions.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/NSNotificationCenter+OCMAdditions.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/NSObject+OCMAdditions.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/NSValue+OCMAdditions.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCClassMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCClassMockObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCClassMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCClassMockObject.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMArg.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMArg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMArg.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMBlockCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMBlockCaller.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMBlockCaller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMBlockCaller.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMBoxedReturnValueProvider.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMConstraint.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMConstraint.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMExceptionReturnValueProvider.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMExpectationRecorder.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMFunctions.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMFunctions.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMIndirectReturnValueProvider.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMInvocationExpectation.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMInvocationMatcher.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMInvocationStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMInvocationStub.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMInvocationStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMInvocationStub.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMLocation.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMLocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMLocation.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMMacroState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMMacroState.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMMacroState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMMacroState.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMNotificationPoster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMNotificationPoster.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMNotificationPoster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMNotificationPoster.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMObserverRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMObserverRecorder.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMObserverRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMObserverRecorder.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMPassByRefSetter.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMRealObjectForwarder.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMRecorder.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMRecorder.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMReturnValueProvider.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMStubRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMStubRecorder.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMStubRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMStubRecorder.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMVerifier.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMVerifier.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMock.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMockObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCMockObject.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCObserverMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCObserverMockObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCObserverMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCObserverMockObject.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCPartialMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCPartialMockObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCPartialMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCPartialMockObject.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCProtocolMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCProtocolMockObject.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/OCMock/Source/OCMock/OCProtocolMockObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/OCMock/Source/OCMock/OCProtocolMockObject.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/LICENSE -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/README.md -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTCallSite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTCallSite.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTCompiledExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTCompiledExample.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTExample.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTExampleGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTExampleGroup.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTSpec.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SPTTestSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SPTTestSuite.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SpectaDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SpectaDSL.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/SpectaUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/SpectaUtility.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Specta/Specta/Specta/XCTestCase+Specta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Specta/Specta/Specta/XCTestCase+Specta.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Expecta+Snapshots/Expecta+Snapshots-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Expecta+Snapshots/Expecta+Snapshots-Private.xcconfig -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Expecta+Snapshots/Expecta+Snapshots-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Expecta+Snapshots/Expecta+Snapshots-dummy.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Expecta+Snapshots/Expecta+Snapshots-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Expecta+Snapshots/Expecta+Snapshots-prefix.pch -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Expecta+Snapshots/Expecta+Snapshots.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Expecta+Snapshots/Expecta+Snapshots.xcconfig -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Expecta/Expecta-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Expecta/Expecta-Private.xcconfig -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Expecta/Expecta-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Expecta/Expecta-dummy.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Expecta/Expecta-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Expecta/Expecta-prefix.pch -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Expecta/Expecta.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Expecta/Expecta.xcconfig -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-Private.xcconfig -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-dummy.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-prefix.pch -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.xcconfig -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/OCMock/OCMock-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/OCMock/OCMock-Private.xcconfig -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/OCMock/OCMock-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/OCMock/OCMock-dummy.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/OCMock/OCMock-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/OCMock/OCMock-prefix.pch -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/OCMock/OCMock.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Pods-TagListViewTests/Pods-TagListViewTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Pods-TagListViewTests/Pods-TagListViewTests-acknowledgements.markdown -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Pods-TagListViewTests/Pods-TagListViewTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Pods-TagListViewTests/Pods-TagListViewTests-acknowledgements.plist -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Pods-TagListViewTests/Pods-TagListViewTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Pods-TagListViewTests/Pods-TagListViewTests-dummy.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Pods-TagListViewTests/Pods-TagListViewTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Pods-TagListViewTests/Pods-TagListViewTests-frameworks.sh -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Pods-TagListViewTests/Pods-TagListViewTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Pods-TagListViewTests/Pods-TagListViewTests-resources.sh -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Pods-TagListViewTests/Pods-TagListViewTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Pods-TagListViewTests/Pods-TagListViewTests.debug.xcconfig -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Pods-TagListViewTests/Pods-TagListViewTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Pods-TagListViewTests/Pods-TagListViewTests.release.xcconfig -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Specta/Specta-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Specta/Specta-Private.xcconfig -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Specta/Specta-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Specta/Specta-dummy.m -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Specta/Specta-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Specta/Specta-prefix.pch -------------------------------------------------------------------------------- /TagListViewDemo/Pods/Target Support Files/Specta/Specta.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/Pods/Target Support Files/Specta/Specta.xcconfig -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo.xcodeproj/xcshareddata/xcschemes/TagListViewDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo.xcodeproj/xcshareddata/xcschemes/TagListViewDemo.xcscheme -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/AMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/AMAppDelegate.h -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/AMAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/AMAppDelegate.m -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/AMViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/AMViewController.h -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/AMViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/AMViewController.m -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Images.xcassets/AppIcon.appiconset/UIView+draggable Copy-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Images.xcassets/AppIcon.appiconset/UIView+draggable Copy-120.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Images.xcassets/AppIcon.appiconset/UIView+draggable Copy-121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Images.xcassets/AppIcon.appiconset/UIView+draggable Copy-121.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Images.xcassets/AppIcon.appiconset/UIView+draggable Copy-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Images.xcassets/AppIcon.appiconset/UIView+draggable Copy-180.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Images.xcassets/AppIcon.appiconset/UIView+draggable Copy-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Images.xcassets/AppIcon.appiconset/UIView+draggable Copy-58.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Images.xcassets/AppIcon.appiconset/UIView+draggable Copy-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Images.xcassets/AppIcon.appiconset/UIView+draggable Copy-80.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Images.xcassets/AppIcon.appiconset/UIView+draggable Copy-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Images.xcassets/AppIcon.appiconset/UIView+draggable Copy-87.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Images.xcassets/LaunchImage.launchimage/default-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Images.xcassets/LaunchImage.launchimage/default-2.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Images.xcassets/LaunchImage.launchimage/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Images.xcassets/LaunchImage.launchimage/default.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Images.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Images.xcassets/close.imageset/Contents.json -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Images.xcassets/close.imageset/close.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Images.xcassets/close.imageset/close.pdf -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Images.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Images.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Images.xcassets/logo.imageset/logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Images.xcassets/logo.imageset/logo.pdf -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/Launch Screen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/Launch Screen.xib -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/TagListViewDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/TagListViewDemo-Info.plist -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/TagListViewDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/TagListViewDemo-Prefix.pch -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewDemo/main.m -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/AMTagViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/AMTagViewTests.m -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/Info.plist -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_by_default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_by_default@2x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_by_default@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_by_default@3x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_with_a_tag@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_with_a_tag@2x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_with_a_tag@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_with_a_tag@3x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_with_an_array_of_tags@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_with_an_array_of_tags@2x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_with_an_array_of_tags@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_with_an_array_of_tags@3x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_with_an_array_of_tags_aligned_to_the_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_with_an_array_of_tags_aligned_to_the_right@2x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_with_an_array_of_tags_aligned_to_the_right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagListViewSpec/visuals_looks_right_with_an_array_of_tags_aligned_to_the_right@3x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_and_it_looks_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_and_it_looks_right@2x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_and_it_looks_right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_and_it_looks_right@3x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_can_specify_vertical_and_horizontal_padding_separately@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_can_specify_vertical_and_horizontal_padding_separately@2x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_can_specify_vertical_and_horizontal_padding_separately@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_can_specify_vertical_and_horizontal_padding_separately@3x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_updates_the_text_color_properly_after@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_updates_the_text_color_properly_after@2x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_updates_the_text_color_properly_after@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_updates_the_text_color_properly_after@3x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_updates_the_text_color_properly_before@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_updates_the_text_color_properly_before@2x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_updates_the_text_color_properly_before@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/can_be_customised_via_UIAppearance_updates_the_text_color_properly_before@3x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/changing_the_text_looks_ok@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/changing_the_text_looks_ok@2x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/changing_the_text_looks_ok@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/ReferenceImages/AMTagViewSpec/changing_the_text_looks_ok@3x.png -------------------------------------------------------------------------------- /TagListViewDemo/TagListViewTests/TagListViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/TagListViewDemo/TagListViewTests/TagListViewTests.m -------------------------------------------------------------------------------- /assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/assets/demo.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreamazz/AMTagListView/HEAD/assets/screenshot.gif --------------------------------------------------------------------------------