├── .gitignore ├── .travis.yml ├── Example ├── LMArrayChangeSets.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── LMArrayChangeSets-Example.xcscheme ├── LMArrayChangeSets.xcworkspace │ └── contents.xcworkspacedata ├── LMArrayChangeSets │ ├── Base.lproj │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── LMAppDelegate.h │ ├── LMAppDelegate.m │ ├── LMArrayChangeSets-Info.plist │ ├── LMArrayChangeSets-Prefix.pch │ ├── LMCollectionViewCell.h │ ├── LMCollectionViewCell.m │ ├── LMCollectionViewController.h │ ├── LMCollectionViewController.m │ ├── LMTableViewController.h │ ├── LMTableViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Expecta │ │ ├── Expecta │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ ├── EXPBlockDefinedMatcher.m │ │ │ ├── EXPDefines.h │ │ │ ├── EXPDoubleTuple.h │ │ │ ├── EXPDoubleTuple.m │ │ │ ├── EXPExpect.h │ │ │ ├── EXPExpect.m │ │ │ ├── EXPFloatTuple.h │ │ │ ├── EXPFloatTuple.m │ │ │ ├── EXPMatcher.h │ │ │ ├── EXPUnsupportedObject.h │ │ │ ├── EXPUnsupportedObject.m │ │ │ ├── Expecta.h │ │ │ ├── ExpectaObject.h │ │ │ ├── ExpectaObject.m │ │ │ ├── ExpectaSupport.h │ │ │ ├── ExpectaSupport.m │ │ │ ├── Matchers │ │ │ │ ├── EXPMatcherHelpers.h │ │ │ │ ├── EXPMatcherHelpers.m │ │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ │ ├── EXPMatchers+beCloseTo.m │ │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ │ ├── EXPMatchers+beFalsy.m │ │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ │ ├── EXPMatchers+beGreaterThan.m │ │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.m │ │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ │ ├── EXPMatchers+beIdenticalTo.m │ │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ │ ├── EXPMatchers+beInTheRangeOf.m │ │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ │ ├── EXPMatchers+beInstanceOf.m │ │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ │ ├── EXPMatchers+beKindOf.m │ │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ │ ├── EXPMatchers+beLessThan.m │ │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.m │ │ │ │ ├── EXPMatchers+beNil.h │ │ │ │ ├── EXPMatchers+beNil.m │ │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ │ ├── EXPMatchers+beSubclassOf.m │ │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ │ ├── EXPMatchers+beSupersetOf.m │ │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ │ ├── EXPMatchers+beTruthy.m │ │ │ │ ├── EXPMatchers+beginWith.h │ │ │ │ ├── EXPMatchers+beginWith.m │ │ │ │ ├── EXPMatchers+conformTo.h │ │ │ │ ├── EXPMatchers+conformTo.m │ │ │ │ ├── EXPMatchers+contain.h │ │ │ │ ├── EXPMatchers+contain.m │ │ │ │ ├── EXPMatchers+endWith.h │ │ │ │ ├── EXPMatchers+endWith.m │ │ │ │ ├── EXPMatchers+equal.h │ │ │ │ ├── EXPMatchers+equal.m │ │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ │ ├── EXPMatchers+haveCountOf.m │ │ │ │ ├── EXPMatchers+match.h │ │ │ │ ├── EXPMatchers+match.m │ │ │ │ ├── EXPMatchers+postNotification.h │ │ │ │ ├── EXPMatchers+postNotification.m │ │ │ │ ├── EXPMatchers+raise.h │ │ │ │ ├── EXPMatchers+raise.m │ │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ │ ├── EXPMatchers+raiseWithReason.m │ │ │ │ ├── EXPMatchers+respondTo.h │ │ │ │ ├── EXPMatchers+respondTo.m │ │ │ │ └── EXPMatchers.h │ │ │ ├── NSObject+Expecta.h │ │ │ ├── NSValue+Expecta.h │ │ │ └── NSValue+Expecta.m │ │ ├── LICENSE │ │ └── README.md │ ├── Headers │ │ ├── Private │ │ │ ├── Expecta │ │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ │ ├── EXPDefines.h │ │ │ │ ├── EXPDoubleTuple.h │ │ │ │ ├── EXPExpect.h │ │ │ │ ├── EXPFloatTuple.h │ │ │ │ ├── EXPMatcher.h │ │ │ │ ├── EXPMatcherHelpers.h │ │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ │ ├── EXPMatchers+beNil.h │ │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ │ ├── EXPMatchers+beginWith.h │ │ │ │ ├── EXPMatchers+conformTo.h │ │ │ │ ├── EXPMatchers+contain.h │ │ │ │ ├── EXPMatchers+endWith.h │ │ │ │ ├── EXPMatchers+equal.h │ │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ │ ├── EXPMatchers+match.h │ │ │ │ ├── EXPMatchers+postNotification.h │ │ │ │ ├── EXPMatchers+raise.h │ │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ │ ├── EXPMatchers+respondTo.h │ │ │ │ ├── EXPMatchers.h │ │ │ │ ├── EXPUnsupportedObject.h │ │ │ │ ├── Expecta.h │ │ │ │ ├── ExpectaObject.h │ │ │ │ ├── ExpectaSupport.h │ │ │ │ ├── NSObject+Expecta.h │ │ │ │ └── NSValue+Expecta.h │ │ │ ├── LMArrayChangeSets │ │ │ │ ├── LMArrayChangeSets.h │ │ │ │ ├── NSArray+LMIndexChangeSets.h │ │ │ │ ├── UICollectionView+LMIndexChangeSets.h │ │ │ │ └── UITableView+LMIndexChangeSets.h │ │ │ └── Specta │ │ │ │ ├── SPTCallSite.h │ │ │ │ ├── SPTCompiledExample.h │ │ │ │ ├── SPTExample.h │ │ │ │ ├── SPTExampleGroup.h │ │ │ │ ├── SPTExcludeGlobalBeforeAfterEach.h │ │ │ │ ├── SPTGlobalBeforeAfterEach.h │ │ │ │ ├── SPTSharedExampleGroups.h │ │ │ │ ├── SPTSpec.h │ │ │ │ ├── SPTTestSuite.h │ │ │ │ ├── Specta.h │ │ │ │ ├── SpectaDSL.h │ │ │ │ ├── SpectaTypes.h │ │ │ │ ├── SpectaUtility.h │ │ │ │ ├── XCTest+Private.h │ │ │ │ └── XCTestCase+Specta.h │ │ └── Public │ │ │ ├── Expecta │ │ │ ├── EXPBlockDefinedMatcher.h │ │ │ ├── EXPDefines.h │ │ │ ├── EXPDoubleTuple.h │ │ │ ├── EXPExpect.h │ │ │ ├── EXPFloatTuple.h │ │ │ ├── EXPMatcher.h │ │ │ ├── EXPMatcherHelpers.h │ │ │ ├── EXPMatchers+beCloseTo.h │ │ │ ├── EXPMatchers+beFalsy.h │ │ │ ├── EXPMatchers+beGreaterThan.h │ │ │ ├── EXPMatchers+beGreaterThanOrEqualTo.h │ │ │ ├── EXPMatchers+beIdenticalTo.h │ │ │ ├── EXPMatchers+beInTheRangeOf.h │ │ │ ├── EXPMatchers+beInstanceOf.h │ │ │ ├── EXPMatchers+beKindOf.h │ │ │ ├── EXPMatchers+beLessThan.h │ │ │ ├── EXPMatchers+beLessThanOrEqualTo.h │ │ │ ├── EXPMatchers+beNil.h │ │ │ ├── EXPMatchers+beSubclassOf.h │ │ │ ├── EXPMatchers+beSupersetOf.h │ │ │ ├── EXPMatchers+beTruthy.h │ │ │ ├── EXPMatchers+beginWith.h │ │ │ ├── EXPMatchers+conformTo.h │ │ │ ├── EXPMatchers+contain.h │ │ │ ├── EXPMatchers+endWith.h │ │ │ ├── EXPMatchers+equal.h │ │ │ ├── EXPMatchers+haveCountOf.h │ │ │ ├── EXPMatchers+match.h │ │ │ ├── EXPMatchers+postNotification.h │ │ │ ├── EXPMatchers+raise.h │ │ │ ├── EXPMatchers+raiseWithReason.h │ │ │ ├── EXPMatchers+respondTo.h │ │ │ ├── EXPMatchers.h │ │ │ ├── EXPUnsupportedObject.h │ │ │ ├── Expecta.h │ │ │ ├── ExpectaObject.h │ │ │ ├── ExpectaSupport.h │ │ │ ├── NSObject+Expecta.h │ │ │ └── NSValue+Expecta.h │ │ │ ├── LMArrayChangeSets │ │ │ ├── LMArrayChangeSets.h │ │ │ ├── NSArray+LMIndexChangeSets.h │ │ │ ├── UICollectionView+LMIndexChangeSets.h │ │ │ └── UITableView+LMIndexChangeSets.h │ │ │ └── Specta │ │ │ ├── SPTCallSite.h │ │ │ ├── SPTCompiledExample.h │ │ │ ├── SPTExample.h │ │ │ ├── SPTExampleGroup.h │ │ │ ├── SPTExcludeGlobalBeforeAfterEach.h │ │ │ ├── SPTGlobalBeforeAfterEach.h │ │ │ ├── SPTSharedExampleGroups.h │ │ │ ├── SPTSpec.h │ │ │ ├── SPTTestSuite.h │ │ │ ├── Specta.h │ │ │ ├── SpectaDSL.h │ │ │ ├── SpectaTypes.h │ │ │ ├── SpectaUtility.h │ │ │ ├── XCTest+Private.h │ │ │ └── XCTestCase+Specta.h │ ├── Local Podspecs │ │ └── LMArrayChangeSets.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── LMArrayChangeSets.xcscheme │ ├── Specta │ │ ├── LICENSE │ │ ├── README.md │ │ └── Specta │ │ │ └── Specta │ │ │ ├── SPTCallSite.h │ │ │ ├── SPTCallSite.m │ │ │ ├── SPTCompiledExample.h │ │ │ ├── SPTCompiledExample.m │ │ │ ├── SPTExample.h │ │ │ ├── SPTExample.m │ │ │ ├── SPTExampleGroup.h │ │ │ ├── SPTExampleGroup.m │ │ │ ├── SPTExcludeGlobalBeforeAfterEach.h │ │ │ ├── SPTGlobalBeforeAfterEach.h │ │ │ ├── SPTSharedExampleGroups.h │ │ │ ├── SPTSharedExampleGroups.m │ │ │ ├── SPTSpec.h │ │ │ ├── SPTSpec.m │ │ │ ├── SPTTestSuite.h │ │ │ ├── SPTTestSuite.m │ │ │ ├── Specta.h │ │ │ ├── SpectaDSL.h │ │ │ ├── SpectaDSL.m │ │ │ ├── SpectaTypes.h │ │ │ ├── SpectaUtility.h │ │ │ ├── SpectaUtility.m │ │ │ ├── XCTest+Private.h │ │ │ ├── XCTestCase+Specta.h │ │ │ └── XCTestCase+Specta.m │ └── Target Support Files │ │ ├── Expecta │ │ ├── Expecta-dummy.m │ │ ├── Expecta-prefix.pch │ │ └── Expecta.xcconfig │ │ ├── LMArrayChangeSets │ │ ├── LMArrayChangeSets-dummy.m │ │ ├── LMArrayChangeSets-prefix.pch │ │ └── LMArrayChangeSets.xcconfig │ │ ├── Pods-LMArrayChangeSets │ │ ├── Pods-LMArrayChangeSets-acknowledgements.markdown │ │ ├── Pods-LMArrayChangeSets-acknowledgements.plist │ │ ├── Pods-LMArrayChangeSets-dummy.m │ │ ├── Pods-LMArrayChangeSets-frameworks.sh │ │ ├── Pods-LMArrayChangeSets-resources.sh │ │ ├── Pods-LMArrayChangeSets.debug.xcconfig │ │ └── Pods-LMArrayChangeSets.release.xcconfig │ │ ├── Pods-Tests │ │ ├── Pods-Tests-acknowledgements.markdown │ │ ├── Pods-Tests-acknowledgements.plist │ │ ├── Pods-Tests-dummy.m │ │ ├── Pods-Tests-frameworks.sh │ │ ├── Pods-Tests-resources.sh │ │ ├── Pods-Tests.debug.xcconfig │ │ └── Pods-Tests.release.xcconfig │ │ └── Specta │ │ ├── Specta-dummy.m │ │ ├── Specta-prefix.pch │ │ └── Specta.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── LMArrayChangeSets.podspec ├── Pod └── Classes │ ├── .gitkeep │ ├── LMArrayChangeSets.h │ ├── NSArray+LMIndexChangeSets.h │ ├── NSArray+LMIndexChangeSets.m │ ├── UICollectionView+LMIndexChangeSets.h │ ├── UICollectionView+LMIndexChangeSets.m │ ├── UITableView+LMIndexChangeSets.h │ └── UITableView+LMIndexChangeSets.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/LMArrayChangeSets.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/LMArrayChangeSets.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LMArrayChangeSets.xcodeproj/xcshareddata/xcschemes/LMArrayChangeSets-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets.xcodeproj/xcshareddata/xcschemes/LMArrayChangeSets-Example.xcscheme -------------------------------------------------------------------------------- /Example/LMArrayChangeSets.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/LMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets/LMAppDelegate.h -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/LMAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets/LMAppDelegate.m -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/LMArrayChangeSets-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets/LMArrayChangeSets-Info.plist -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/LMArrayChangeSets-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets/LMArrayChangeSets-Prefix.pch -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/LMCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets/LMCollectionViewCell.h -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/LMCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets/LMCollectionViewCell.m -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/LMCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets/LMCollectionViewController.h -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/LMCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets/LMCollectionViewController.m -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/LMTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets/LMTableViewController.h -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/LMTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets/LMTableViewController.m -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/LMArrayChangeSets/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/LMArrayChangeSets/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/EXPBlockDefinedMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPDoubleTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/EXPDoubleTuple.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPExpect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/EXPExpect.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPFloatTuple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/EXPFloatTuple.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/EXPUnsupportedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/EXPUnsupportedObject.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/ExpectaObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/ExpectaObject.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/ExpectaSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/ExpectaSupport.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatcherHelpers.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beFalsy, (void)); 4 | -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beFalsy.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beKindOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThan.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beNil.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beSupersetOf, (id subset)); 4 | 5 | -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | #import "Expecta.h" 2 | 3 | EXPMatcherInterface(beTruthy, (void)); 4 | -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beTruthy.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+beginWith.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+conformTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+contain.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+endWith.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+equal.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+match.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+postNotification.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raise.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/Matchers/EXPMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Expecta/Expecta/NSValue+Expecta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/Expecta/NSValue+Expecta.m -------------------------------------------------------------------------------- /Example/Pods/Expecta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Expecta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Expecta/README.md -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+match.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/LMArrayChangeSets/LMArrayChangeSets.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LMArrayChangeSets.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/LMArrayChangeSets/NSArray+LMIndexChangeSets.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/NSArray+LMIndexChangeSets.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/LMArrayChangeSets/UICollectionView+LMIndexChangeSets.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UICollectionView+LMIndexChangeSets.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/LMArrayChangeSets/UITableView+LMIndexChangeSets.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UITableView+LMIndexChangeSets.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPBlockDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPBlockDefinedMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDefines.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPDoubleTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPDoubleTuple.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPExpect.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPExpect.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPFloatTuple.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPFloatTuple.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatcherHelpers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatcherHelpers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beCloseTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beFalsy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beFalsy.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThan.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beIdenticalTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beIdenticalTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beInTheRangeOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInTheRangeOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beInstanceOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beKindOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beKindOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beLessThan.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThan.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beLessThanOrEqualTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beNil.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beNil.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beSubclassOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSubclassOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beSupersetOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beSupersetOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beTruthy.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beTruthy.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+beginWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+beginWith.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+conformTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+conformTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+contain.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+contain.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+endWith.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+endWith.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+equal.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+equal.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+haveCountOf.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+haveCountOf.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+match.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+match.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+postNotification.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+postNotification.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+raise.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raise.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+raiseWithReason.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+raiseWithReason.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers+respondTo.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers+respondTo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Matchers/EXPMatchers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/EXPUnsupportedObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/EXPUnsupportedObject.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/ExpectaObject.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaObject.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/ExpectaSupport.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/ExpectaSupport.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/NSObject+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSObject+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Expecta/NSValue+Expecta.h: -------------------------------------------------------------------------------- 1 | ../../../Expecta/Expecta/NSValue+Expecta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/LMArrayChangeSets/LMArrayChangeSets.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/LMArrayChangeSets.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/LMArrayChangeSets/NSArray+LMIndexChangeSets.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/NSArray+LMIndexChangeSets.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/LMArrayChangeSets/UICollectionView+LMIndexChangeSets.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UICollectionView+LMIndexChangeSets.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/LMArrayChangeSets/UITableView+LMIndexChangeSets.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UITableView+LMIndexChangeSets.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTExample.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- 1 | ../../../Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/LMArrayChangeSets.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Local Podspecs/LMArrayChangeSets.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/LMArrayChangeSets.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/LMArrayChangeSets.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Specta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Specta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/README.md -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTCallSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTCallSite.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTCallSite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTCallSite.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTCompiledExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTCompiledExample.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTCompiledExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTCompiledExample.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTExample.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTExample.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTExampleGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTExampleGroup.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTExampleGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTExampleGroup.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTGlobalBeforeAfterEach.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTSharedExampleGroups.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTSpec.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTSpec.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTTestSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTTestSuite.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SPTTestSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SPTTestSuite.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/Specta.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SpectaDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SpectaDSL.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SpectaDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SpectaDSL.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SpectaTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SpectaTypes.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SpectaUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SpectaUtility.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/SpectaUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/SpectaUtility.m -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/XCTest+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/XCTest+Private.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/XCTestCase+Specta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/XCTestCase+Specta.h -------------------------------------------------------------------------------- /Example/Pods/Specta/Specta/Specta/XCTestCase+Specta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Specta/Specta/Specta/XCTestCase+Specta.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Expecta/Expecta-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Expecta/Expecta-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Expecta/Expecta-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Expecta/Expecta-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Expecta/Expecta.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Expecta/Expecta.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LMArrayChangeSets/LMArrayChangeSets-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/LMArrayChangeSets/LMArrayChangeSets-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LMArrayChangeSets/LMArrayChangeSets-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/LMArrayChangeSets/LMArrayChangeSets-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LMArrayChangeSets/LMArrayChangeSets.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/LMArrayChangeSets/LMArrayChangeSets.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LMArrayChangeSets/Pods-LMArrayChangeSets-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Pods-LMArrayChangeSets/Pods-LMArrayChangeSets-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LMArrayChangeSets/Pods-LMArrayChangeSets-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Pods-LMArrayChangeSets/Pods-LMArrayChangeSets-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LMArrayChangeSets/Pods-LMArrayChangeSets-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Pods-LMArrayChangeSets/Pods-LMArrayChangeSets-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LMArrayChangeSets/Pods-LMArrayChangeSets-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Pods-LMArrayChangeSets/Pods-LMArrayChangeSets-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LMArrayChangeSets/Pods-LMArrayChangeSets-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Pods-LMArrayChangeSets/Pods-LMArrayChangeSets-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LMArrayChangeSets/Pods-LMArrayChangeSets.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Pods-LMArrayChangeSets/Pods-LMArrayChangeSets.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LMArrayChangeSets/Pods-LMArrayChangeSets.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Pods-LMArrayChangeSets/Pods-LMArrayChangeSets.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Specta/Specta-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Specta/Specta-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Specta/Specta-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Specta/Specta-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Specta/Specta.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Pods/Target Support Files/Specta/Specta.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/LICENSE -------------------------------------------------------------------------------- /LMArrayChangeSets.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/LMArrayChangeSets.podspec -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/LMArrayChangeSets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Pod/Classes/LMArrayChangeSets.h -------------------------------------------------------------------------------- /Pod/Classes/NSArray+LMIndexChangeSets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Pod/Classes/NSArray+LMIndexChangeSets.h -------------------------------------------------------------------------------- /Pod/Classes/NSArray+LMIndexChangeSets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Pod/Classes/NSArray+LMIndexChangeSets.m -------------------------------------------------------------------------------- /Pod/Classes/UICollectionView+LMIndexChangeSets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Pod/Classes/UICollectionView+LMIndexChangeSets.h -------------------------------------------------------------------------------- /Pod/Classes/UICollectionView+LMIndexChangeSets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Pod/Classes/UICollectionView+LMIndexChangeSets.m -------------------------------------------------------------------------------- /Pod/Classes/UITableView+LMIndexChangeSets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Pod/Classes/UITableView+LMIndexChangeSets.h -------------------------------------------------------------------------------- /Pod/Classes/UITableView+LMIndexChangeSets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/Pod/Classes/UITableView+LMIndexChangeSets.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintmachine/LMArrayChangeSets/HEAD/README.md --------------------------------------------------------------------------------