├── .gitignore ├── .hound.yml ├── .swift-version ├── .swiftlint.yml ├── .travis.yml ├── BugShaker.podspec ├── BugShaker.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── BugShaker.xcscheme ├── BugShaker.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── CHANGELOG.md ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Example.xcscheme ├── Podfile └── Sources │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ └── Info.plist ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── Screenshots ├── screenshot-1.png └── screenshot-2.png ├── Sources ├── BugShaker.swift └── Info.plist ├── Tests ├── BugShakerSpec.swift ├── Info.plist ├── ReportPromptSpec.swift └── ViewControllerSpec.swift ├── banner.png └── publish-docs.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/.hound.yml -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 2 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/.travis.yml -------------------------------------------------------------------------------- /BugShaker.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/BugShaker.podspec -------------------------------------------------------------------------------- /BugShaker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/BugShaker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BugShaker.xcodeproj/xcshareddata/xcschemes/BugShaker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/BugShaker.xcodeproj/xcshareddata/xcschemes/BugShaker.xcscheme -------------------------------------------------------------------------------- /BugShaker.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/BugShaker.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BugShaker.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/BugShaker.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Example/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Example/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Sources/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Example/Sources/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/Sources/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Example/Sources/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Example/Sources/Info.plist -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "cocoapods" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Screenshots/screenshot-1.png -------------------------------------------------------------------------------- /Screenshots/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Screenshots/screenshot-2.png -------------------------------------------------------------------------------- /Sources/BugShaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Sources/BugShaker.swift -------------------------------------------------------------------------------- /Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Sources/Info.plist -------------------------------------------------------------------------------- /Tests/BugShakerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Tests/BugShakerSpec.swift -------------------------------------------------------------------------------- /Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Tests/Info.plist -------------------------------------------------------------------------------- /Tests/ReportPromptSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Tests/ReportPromptSpec.swift -------------------------------------------------------------------------------- /Tests/ViewControllerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/Tests/ViewControllerSpec.swift -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/banner.png -------------------------------------------------------------------------------- /publish-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrenz/BugShaker/HEAD/publish-docs.sh --------------------------------------------------------------------------------