├── .gitattributes ├── .github └── workflows │ ├── Danger.yml │ ├── Swift-Build.yml │ └── Xcode-Build.yml ├── .gitignore ├── .swiftlint.yml ├── Dangerfile ├── Documentation ├── SANDBOX.md └── sandbox_enable.png ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── IDETemplateMacros.plist └── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ └── MainMenu.xib │ └── Info.plist ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Lib ├── Screeen.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ ├── IDETemplateMacros.plist │ │ └── xcschemes │ │ └── Screeen.xcscheme ├── Screeen │ ├── Info.plist │ ├── Screeen.h │ └── ScreenShotObserver.swift └── ScreeenTests │ ├── Info.plist │ └── ScreeenTests.swift ├── Package.swift ├── README.md ├── Screeen.podspec └── Screeen.xcworkspace ├── contents.xcworkspacedata └── xcshareddata └── IDEWorkspaceChecks.plist /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/Danger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/.github/workflows/Danger.yml -------------------------------------------------------------------------------- /.github/workflows/Swift-Build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/.github/workflows/Swift-Build.yml -------------------------------------------------------------------------------- /.github/workflows/Xcode-Build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/.github/workflows/Xcode-Build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Dangerfile -------------------------------------------------------------------------------- /Documentation/SANDBOX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Documentation/SANDBOX.md -------------------------------------------------------------------------------- /Documentation/sandbox_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Documentation/sandbox_enable.png -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Example/Example.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Example/Example/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/Screeen.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Lib/Screeen.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Lib/Screeen.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Lib/Screeen.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Lib/Screeen.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Lib/Screeen.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Lib/Screeen.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Lib/Screeen.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /Lib/Screeen.xcodeproj/xcshareddata/xcschemes/Screeen.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Lib/Screeen.xcodeproj/xcshareddata/xcschemes/Screeen.xcscheme -------------------------------------------------------------------------------- /Lib/Screeen/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Lib/Screeen/Info.plist -------------------------------------------------------------------------------- /Lib/Screeen/Screeen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Lib/Screeen/Screeen.h -------------------------------------------------------------------------------- /Lib/Screeen/ScreenShotObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Lib/Screeen/ScreenShotObserver.swift -------------------------------------------------------------------------------- /Lib/ScreeenTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Lib/ScreeenTests/Info.plist -------------------------------------------------------------------------------- /Lib/ScreeenTests/ScreeenTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Lib/ScreeenTests/ScreeenTests.swift -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/README.md -------------------------------------------------------------------------------- /Screeen.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Screeen.podspec -------------------------------------------------------------------------------- /Screeen.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Screeen.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Screeen.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clipy/Screeen/HEAD/Screeen.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist --------------------------------------------------------------------------------