├── .github └── workflows │ └── ios.yml ├── .gitignore ├── CHANGELOG.md ├── Classes ├── VTAcknowledgement.h ├── VTAcknowledgement.m ├── VTAcknowledgementViewController.h ├── VTAcknowledgementViewController.m ├── VTAcknowledgementsViewController.h ├── VTAcknowledgementsViewController.m ├── VTLocalization.h ├── VTLocalization.m ├── VTParser.h └── VTParser.m ├── Images ├── VTAcknowledgementsViewController-Apple-TV.png └── VTAcknowledgementsViewController.png ├── LICENSE.md ├── README.md ├── Tests ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ └── VTAcknowledgementsViewController │ │ │ │ ├── VTAcknowledgement.h │ │ │ │ ├── VTAcknowledgementViewController.h │ │ │ │ ├── VTAcknowledgementsViewController.h │ │ │ │ ├── VTLocalization.h │ │ │ │ └── VTParser.h │ │ └── Public │ │ │ └── VTAcknowledgementsViewController │ │ │ ├── VTAcknowledgement.h │ │ │ ├── VTAcknowledgementViewController.h │ │ │ ├── VTAcknowledgementsViewController.h │ │ │ ├── VTLocalization.h │ │ │ └── VTParser.h │ ├── Local Podspecs │ │ └── VTAcknowledgementsViewController.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── VTAcknowledgementsViewController.xcscheme │ └── Target Support Files │ │ ├── Pods-VTAck App │ │ ├── Pods-VTAck App-acknowledgements.markdown │ │ ├── Pods-VTAck App-acknowledgements.plist │ │ ├── Pods-VTAck App-dummy.m │ │ ├── Pods-VTAck App-frameworks.sh │ │ ├── Pods-VTAck App-resources.sh │ │ ├── Pods-VTAck App.debug.xcconfig │ │ └── Pods-VTAck App.release.xcconfig │ │ ├── Pods-VTAck TV App │ │ ├── Pods-VTAck TV App-acknowledgements.markdown │ │ ├── Pods-VTAck TV App-acknowledgements.plist │ │ ├── Pods-VTAck TV App-dummy.m │ │ ├── Pods-VTAck TV App-frameworks.sh │ │ ├── Pods-VTAck TV App-resources.sh │ │ ├── Pods-VTAck TV App.debug.xcconfig │ │ └── Pods-VTAck TV App.release.xcconfig │ │ ├── Pods-VTAck Tests │ │ ├── Pods-VTAck Tests-acknowledgements.markdown │ │ ├── Pods-VTAck Tests-acknowledgements.plist │ │ ├── Pods-VTAck Tests-dummy.m │ │ ├── Pods-VTAck Tests-frameworks.sh │ │ ├── Pods-VTAck Tests-resources.sh │ │ ├── Pods-VTAck Tests.debug.xcconfig │ │ └── Pods-VTAck Tests.release.xcconfig │ │ ├── VTAcknowledgementsViewController-iOS │ │ ├── VTAcknowledgementsViewController-iOS-dummy.m │ │ ├── VTAcknowledgementsViewController-iOS-prefix.pch │ │ ├── VTAcknowledgementsViewController-iOS.debug.xcconfig │ │ ├── VTAcknowledgementsViewController-iOS.release.xcconfig │ │ └── VTAcknowledgementsViewController-iOS.xcconfig │ │ └── VTAcknowledgementsViewController-tvOS │ │ ├── VTAcknowledgementsViewController-tvOS-dummy.m │ │ ├── VTAcknowledgementsViewController-tvOS-prefix.pch │ │ ├── VTAcknowledgementsViewController-tvOS.debug.xcconfig │ │ ├── VTAcknowledgementsViewController-tvOS.release.xcconfig │ │ └── VTAcknowledgementsViewController-tvOS.xcconfig ├── Resources │ └── Pods-acknowledgements.plist ├── Tests │ ├── VTAcknowledgementTests.m │ ├── VTAcknowledgementViewControllerTests.m │ ├── VTAcknowledgementsViewControllerTests.m │ ├── VTLocalizationTests.m │ └── VTParserTests.m ├── VTAck App │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ViewController.h │ │ └── ViewController.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── VTAck TV App │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── VTAck Tests.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── VTAck Tests.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ ├── VTAck TV App.xcscheme │ │ └── VTAck Tests.xcscheme ├── VTAck Tests.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── VTAck Tests.xccheckout └── VTAck Tests │ ├── Info.plist │ ├── LineBreakFilterTesting-GroundTruth-Alamofire.txt │ ├── LineBreakFilterTesting-GroundTruth-Charts.txt │ ├── LineBreakFilterTesting-GroundTruth-TPKeyboardAvoiding.txt │ ├── LineBreakFilterTesting-GroundTruth-TYPFontAwesome.txt │ ├── LineBreakFilterTesting-GroundTruth-pop.txt │ └── Pods-acknowledgements-LineBreakFilterTesting.plist ├── VTAcknowledgementsViewController-Framework └── Info.plist ├── VTAcknowledgementsViewController.bundle ├── da.lproj │ └── Localizable.strings ├── de.lproj │ └── Localizable.strings ├── en.lproj │ └── Localizable.strings ├── es.lproj │ └── Localizable.strings ├── fr.lproj │ └── Localizable.strings ├── it.lproj │ └── Localizable.strings ├── ja.lproj │ └── Localizable.strings ├── nl.lproj │ └── Localizable.strings ├── pt.lproj │ └── Localizable.strings ├── sv.lproj │ └── Localizable.strings ├── zh-Hans.lproj │ └── Localizable.strings └── zh-Hant.lproj │ └── Localizable.strings ├── VTAcknowledgementsViewController.podspec.json └── VTAcknowledgementsViewController.xcodeproj ├── project.pbxproj ├── project.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcshareddata └── xcschemes ├── VTAcknowledgementsViewController.xcscheme └── VTAcknowledgementsViewControllerTV.xcscheme /.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/.github/workflows/ios.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata 2 | .DS_Store 3 | 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Classes/VTAcknowledgement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Classes/VTAcknowledgement.h -------------------------------------------------------------------------------- /Classes/VTAcknowledgement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Classes/VTAcknowledgement.m -------------------------------------------------------------------------------- /Classes/VTAcknowledgementViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Classes/VTAcknowledgementViewController.h -------------------------------------------------------------------------------- /Classes/VTAcknowledgementViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Classes/VTAcknowledgementViewController.m -------------------------------------------------------------------------------- /Classes/VTAcknowledgementsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Classes/VTAcknowledgementsViewController.h -------------------------------------------------------------------------------- /Classes/VTAcknowledgementsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Classes/VTAcknowledgementsViewController.m -------------------------------------------------------------------------------- /Classes/VTLocalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Classes/VTLocalization.h -------------------------------------------------------------------------------- /Classes/VTLocalization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Classes/VTLocalization.m -------------------------------------------------------------------------------- /Classes/VTParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Classes/VTParser.h -------------------------------------------------------------------------------- /Classes/VTParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Classes/VTParser.m -------------------------------------------------------------------------------- /Images/VTAcknowledgementsViewController-Apple-TV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Images/VTAcknowledgementsViewController-Apple-TV.png -------------------------------------------------------------------------------- /Images/VTAcknowledgementsViewController.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Images/VTAcknowledgementsViewController.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Podfile -------------------------------------------------------------------------------- /Tests/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Podfile.lock -------------------------------------------------------------------------------- /Tests/Pods/Headers/Private/VTAcknowledgementsViewController/VTAcknowledgement.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/VTAcknowledgement.h -------------------------------------------------------------------------------- /Tests/Pods/Headers/Private/VTAcknowledgementsViewController/VTAcknowledgementViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/VTAcknowledgementViewController.h -------------------------------------------------------------------------------- /Tests/Pods/Headers/Private/VTAcknowledgementsViewController/VTAcknowledgementsViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/VTAcknowledgementsViewController.h -------------------------------------------------------------------------------- /Tests/Pods/Headers/Private/VTAcknowledgementsViewController/VTLocalization.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/VTLocalization.h -------------------------------------------------------------------------------- /Tests/Pods/Headers/Private/VTAcknowledgementsViewController/VTParser.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/VTParser.h -------------------------------------------------------------------------------- /Tests/Pods/Headers/Public/VTAcknowledgementsViewController/VTAcknowledgement.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/VTAcknowledgement.h -------------------------------------------------------------------------------- /Tests/Pods/Headers/Public/VTAcknowledgementsViewController/VTAcknowledgementViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/VTAcknowledgementViewController.h -------------------------------------------------------------------------------- /Tests/Pods/Headers/Public/VTAcknowledgementsViewController/VTAcknowledgementsViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/VTAcknowledgementsViewController.h -------------------------------------------------------------------------------- /Tests/Pods/Headers/Public/VTAcknowledgementsViewController/VTLocalization.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/VTLocalization.h -------------------------------------------------------------------------------- /Tests/Pods/Headers/Public/VTAcknowledgementsViewController/VTParser.h: -------------------------------------------------------------------------------- 1 | ../../../../../Classes/VTParser.h -------------------------------------------------------------------------------- /Tests/Pods/Local Podspecs/VTAcknowledgementsViewController.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Local Podspecs/VTAcknowledgementsViewController.podspec.json -------------------------------------------------------------------------------- /Tests/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Manifest.lock -------------------------------------------------------------------------------- /Tests/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/Pods/Pods.xcodeproj/xcshareddata/xcschemes/VTAcknowledgementsViewController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Pods.xcodeproj/xcshareddata/xcschemes/VTAcknowledgementsViewController.xcscheme -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck App/Pods-VTAck App-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck App/Pods-VTAck App-acknowledgements.markdown -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck App/Pods-VTAck App-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck App/Pods-VTAck App-acknowledgements.plist -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck App/Pods-VTAck App-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck App/Pods-VTAck App-dummy.m -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck App/Pods-VTAck App-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck App/Pods-VTAck App-frameworks.sh -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck App/Pods-VTAck App-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck App/Pods-VTAck App-resources.sh -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck App/Pods-VTAck App.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck App/Pods-VTAck App.debug.xcconfig -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck App/Pods-VTAck App.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck App/Pods-VTAck App.release.xcconfig -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck TV App/Pods-VTAck TV App-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck TV App/Pods-VTAck TV App-acknowledgements.markdown -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck TV App/Pods-VTAck TV App-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck TV App/Pods-VTAck TV App-acknowledgements.plist -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck TV App/Pods-VTAck TV App-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck TV App/Pods-VTAck TV App-dummy.m -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck TV App/Pods-VTAck TV App-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck TV App/Pods-VTAck TV App-frameworks.sh -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck TV App/Pods-VTAck TV App-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck TV App/Pods-VTAck TV App-resources.sh -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck TV App/Pods-VTAck TV App.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck TV App/Pods-VTAck TV App.debug.xcconfig -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck TV App/Pods-VTAck TV App.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck TV App/Pods-VTAck TV App.release.xcconfig -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck Tests/Pods-VTAck Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck Tests/Pods-VTAck Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck Tests/Pods-VTAck Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck Tests/Pods-VTAck Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck Tests/Pods-VTAck Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck Tests/Pods-VTAck Tests-dummy.m -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck Tests/Pods-VTAck Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck Tests/Pods-VTAck Tests-frameworks.sh -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck Tests/Pods-VTAck Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck Tests/Pods-VTAck Tests-resources.sh -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck Tests/Pods-VTAck Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck Tests/Pods-VTAck Tests.debug.xcconfig -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/Pods-VTAck Tests/Pods-VTAck Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/Pods-VTAck Tests/Pods-VTAck Tests.release.xcconfig -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/VTAcknowledgementsViewController-iOS/VTAcknowledgementsViewController-iOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/VTAcknowledgementsViewController-iOS/VTAcknowledgementsViewController-iOS-dummy.m -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/VTAcknowledgementsViewController-iOS/VTAcknowledgementsViewController-iOS-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/VTAcknowledgementsViewController-iOS/VTAcknowledgementsViewController-iOS-prefix.pch -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/VTAcknowledgementsViewController-iOS/VTAcknowledgementsViewController-iOS.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/VTAcknowledgementsViewController-iOS/VTAcknowledgementsViewController-iOS.debug.xcconfig -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/VTAcknowledgementsViewController-iOS/VTAcknowledgementsViewController-iOS.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/VTAcknowledgementsViewController-iOS/VTAcknowledgementsViewController-iOS.release.xcconfig -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/VTAcknowledgementsViewController-iOS/VTAcknowledgementsViewController-iOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/VTAcknowledgementsViewController-iOS/VTAcknowledgementsViewController-iOS.xcconfig -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/VTAcknowledgementsViewController-tvOS/VTAcknowledgementsViewController-tvOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/VTAcknowledgementsViewController-tvOS/VTAcknowledgementsViewController-tvOS-dummy.m -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/VTAcknowledgementsViewController-tvOS/VTAcknowledgementsViewController-tvOS-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/VTAcknowledgementsViewController-tvOS/VTAcknowledgementsViewController-tvOS-prefix.pch -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/VTAcknowledgementsViewController-tvOS/VTAcknowledgementsViewController-tvOS.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/VTAcknowledgementsViewController-tvOS/VTAcknowledgementsViewController-tvOS.debug.xcconfig -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/VTAcknowledgementsViewController-tvOS/VTAcknowledgementsViewController-tvOS.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/VTAcknowledgementsViewController-tvOS/VTAcknowledgementsViewController-tvOS.release.xcconfig -------------------------------------------------------------------------------- /Tests/Pods/Target Support Files/VTAcknowledgementsViewController-tvOS/VTAcknowledgementsViewController-tvOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Pods/Target Support Files/VTAcknowledgementsViewController-tvOS/VTAcknowledgementsViewController-tvOS.xcconfig -------------------------------------------------------------------------------- /Tests/Resources/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Resources/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Tests/Tests/VTAcknowledgementTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Tests/VTAcknowledgementTests.m -------------------------------------------------------------------------------- /Tests/Tests/VTAcknowledgementViewControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Tests/VTAcknowledgementViewControllerTests.m -------------------------------------------------------------------------------- /Tests/Tests/VTAcknowledgementsViewControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Tests/VTAcknowledgementsViewControllerTests.m -------------------------------------------------------------------------------- /Tests/Tests/VTLocalizationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Tests/VTLocalizationTests.m -------------------------------------------------------------------------------- /Tests/Tests/VTParserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/Tests/VTParserTests.m -------------------------------------------------------------------------------- /Tests/VTAck App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Tests/VTAck App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Tests/VTAck App/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck App/Classes/AppDelegate.h -------------------------------------------------------------------------------- /Tests/VTAck App/Classes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck App/Classes/AppDelegate.m -------------------------------------------------------------------------------- /Tests/VTAck App/Classes/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck App/Classes/ViewController.h -------------------------------------------------------------------------------- /Tests/VTAck App/Classes/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck App/Classes/ViewController.m -------------------------------------------------------------------------------- /Tests/VTAck App/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck App/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck App/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck App/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck App/Info.plist -------------------------------------------------------------------------------- /Tests/VTAck App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck App/main.m -------------------------------------------------------------------------------- /Tests/VTAck TV App/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/AppDelegate.h -------------------------------------------------------------------------------- /Tests/VTAck TV App/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/AppDelegate.m -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Tests/VTAck TV App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Tests/VTAck TV App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/Info.plist -------------------------------------------------------------------------------- /Tests/VTAck TV App/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/ViewController.h -------------------------------------------------------------------------------- /Tests/VTAck TV App/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/ViewController.m -------------------------------------------------------------------------------- /Tests/VTAck TV App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck TV App/main.m -------------------------------------------------------------------------------- /Tests/VTAck Tests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/VTAck Tests.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tests/VTAck Tests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Tests/VTAck Tests.xcodeproj/project.xcworkspace/xcshareddata/VTAck Tests.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests.xcodeproj/project.xcworkspace/xcshareddata/VTAck Tests.xccheckout -------------------------------------------------------------------------------- /Tests/VTAck Tests.xcodeproj/xcshareddata/xcschemes/VTAck TV App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests.xcodeproj/xcshareddata/xcschemes/VTAck TV App.xcscheme -------------------------------------------------------------------------------- /Tests/VTAck Tests.xcodeproj/xcshareddata/xcschemes/VTAck Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests.xcodeproj/xcshareddata/xcschemes/VTAck Tests.xcscheme -------------------------------------------------------------------------------- /Tests/VTAck Tests.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tests/VTAck Tests.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Tests/VTAck Tests.xcworkspace/xcshareddata/VTAck Tests.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests.xcworkspace/xcshareddata/VTAck Tests.xccheckout -------------------------------------------------------------------------------- /Tests/VTAck Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests/Info.plist -------------------------------------------------------------------------------- /Tests/VTAck Tests/LineBreakFilterTesting-GroundTruth-Alamofire.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests/LineBreakFilterTesting-GroundTruth-Alamofire.txt -------------------------------------------------------------------------------- /Tests/VTAck Tests/LineBreakFilterTesting-GroundTruth-Charts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests/LineBreakFilterTesting-GroundTruth-Charts.txt -------------------------------------------------------------------------------- /Tests/VTAck Tests/LineBreakFilterTesting-GroundTruth-TPKeyboardAvoiding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests/LineBreakFilterTesting-GroundTruth-TPKeyboardAvoiding.txt -------------------------------------------------------------------------------- /Tests/VTAck Tests/LineBreakFilterTesting-GroundTruth-TYPFontAwesome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests/LineBreakFilterTesting-GroundTruth-TYPFontAwesome.txt -------------------------------------------------------------------------------- /Tests/VTAck Tests/LineBreakFilterTesting-GroundTruth-pop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests/LineBreakFilterTesting-GroundTruth-pop.txt -------------------------------------------------------------------------------- /Tests/VTAck Tests/Pods-acknowledgements-LineBreakFilterTesting.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/Tests/VTAck Tests/Pods-acknowledgements-LineBreakFilterTesting.plist -------------------------------------------------------------------------------- /VTAcknowledgementsViewController-Framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController-Framework/Info.plist -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.bundle/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.bundle/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.bundle/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.bundle/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.bundle/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.bundle/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.bundle/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.bundle/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.bundle/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.bundle/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.bundle/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.bundle/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.bundle/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.bundle/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.bundle/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.bundle/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.bundle/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.bundle/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.podspec.json -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.xcodeproj/xcshareddata/xcschemes/VTAcknowledgementsViewController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.xcodeproj/xcshareddata/xcschemes/VTAcknowledgementsViewController.xcscheme -------------------------------------------------------------------------------- /VTAcknowledgementsViewController.xcodeproj/xcshareddata/xcschemes/VTAcknowledgementsViewControllerTV.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vtourraine/VTAcknowledgementsViewController/HEAD/VTAcknowledgementsViewController.xcodeproj/xcshareddata/xcschemes/VTAcknowledgementsViewControllerTV.xcscheme --------------------------------------------------------------------------------