gitextract_azev1r4l/ ├── .gitignore ├── .ruby-version ├── .swift-version ├── .travis.yml ├── Benchmark/ │ ├── BenchMakeFormReferenceDate.m │ └── Info.plist ├── Gemfile ├── LICENSE ├── Makefile ├── NSDate-Escort/ │ ├── Date+Escort.swift │ ├── NSDate+Escort.h │ └── NSDate+Escort.m ├── NSDate-Escort.podspec ├── NSDate-Escort.xcodeproj/ │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ ├── NSDate_Escort.xcscheme │ ├── NSDate_Escort_iOS.xcscheme │ └── Test.xcscheme ├── NSDate-Escort.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── NSDate-Escort_Cocoa/ │ ├── Info.plist │ └── NSDate-Escort.h ├── NSDate_Escort_iOS/ │ ├── Info.plist │ └── NSDate_Escort_iOS.h ├── Podfile ├── README.md ├── SwiftTest/ │ ├── EscortAdjustingDatesSpec.swift │ ├── EscortClassSpec.swift │ ├── EscortComparingSpec.swift │ ├── EscortDateRoles.swift │ ├── EscortDecomposingSpec.swift │ ├── EscortExtractSpec.swift │ ├── EscortRetrievingIntervalsSpec.swift │ └── Info.plist ├── Test/ │ ├── EscortAdjustingDatesSpec.m │ ├── EscortAmountOfSpecs.m │ ├── EscortCacheSpec.m │ ├── EscortClassSpec.m │ ├── EscortComparingSpec.m │ ├── EscortDateRoles.m │ ├── EscortDecomposingSpec.m │ ├── EscortRetrievingIntervalsSpec.m │ ├── Lib/ │ │ └── FakeDateUtil/ │ │ ├── FakeDateUtil.h │ │ └── FakeDateUtil.m │ ├── Matcher/ │ │ ├── AZNSDateKiwiMatcher.h │ │ └── AZNSDateKiwiMatcher.m │ ├── Test-Info.plist │ ├── Test-Prefix.pch │ └── en.lproj/ │ └── InfoPlist.strings └── script/ ├── bin/ │ └── ios-sim-locale └── run-test.sh