├── .gitignore ├── BugHunt.podspec ├── BugHunt.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── BugHunt.xcworkspace └── contents.xcworkspacedata ├── BugHunt ├── BugHunt.h ├── BugHunt.m ├── Common │ ├── Categories │ │ ├── UIColor+BugHunt.h │ │ └── UIColor+BugHunt.m │ ├── Controls │ │ ├── EBHButton.h │ │ ├── EBHButton.m │ │ ├── EBHSegmentedControl.h │ │ └── EBHSegmentedControl.m │ ├── Models │ │ ├── EBHBugReport.h │ │ ├── EBHBugReport.m │ │ ├── EBHTask.h │ │ └── EBHTask.m │ ├── Networking │ │ ├── EBHNetworkManager.h │ │ └── EBHNetworkManager.m │ └── Utilities │ │ ├── EBHScreenshotUtility.h │ │ └── EBHScreenshotUtility.m ├── Components │ ├── Child View Controllers │ │ ├── Leaderboard Screen │ │ │ ├── EBHLeaderBoardViewController.h │ │ │ ├── EBHLeaderBoardViewController.m │ │ │ ├── EBHLeaderboardCell.h │ │ │ ├── EBHLeaderboardCell.m │ │ │ ├── EBHLeaderboardCell.xib │ │ │ ├── EBHLeaderboardUser.h │ │ │ └── EBHLeaderboardUser.m │ │ ├── Submit Bug Screen │ │ │ ├── EBHScreenshotCell.h │ │ │ ├── EBHScreenshotCell.m │ │ │ ├── EBHScreenshotDatasource.h │ │ │ ├── EBHScreenshotDatasource.m │ │ │ ├── EBHSubmitBugView.h │ │ │ ├── EBHSubmitBugView.m │ │ │ ├── EBHSubmitBugViewController.h │ │ │ └── EBHSubmitBugViewController.m │ │ └── Task Screen │ │ │ ├── EBHTaskCell.h │ │ │ ├── EBHTaskCell.m │ │ │ ├── EBHTaskCell.xib │ │ │ ├── EBHTaskViewController.h │ │ │ └── EBHTaskViewController.m │ ├── Container View Controller │ │ ├── EBHContainerViewController.h │ │ └── EBHContainerViewController.m │ └── Overlay │ │ ├── EBHOverlayView.h │ │ ├── EBHOverlayView.m │ │ ├── EBHOverlayViewDelegate.h │ │ ├── EBHWindow.h │ │ └── EBHWindow.m ├── EBHNetworkCommunicator.h ├── External │ ├── EBH_SZTextView.h │ └── EBH_SZTextView.m └── Resource │ ├── ebb_icon-bug.png │ ├── ebb_icon-bug@2x.png │ ├── ebb_icon_close_circle.png │ └── ebb_icon_close_circle@2x.png ├── BugHuntSample ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ └── Main_iPhone.storyboard ├── BugHunt-Info.plist ├── BugHunt-Prefix.pch ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── MyNetworkCommunicator.h ├── MyNetworkCommunicator.m ├── TableViewController.h ├── TableViewController.m ├── en.lproj │ └── InfoPlist.strings ├── etsy.png ├── kale.png └── main.m ├── BugHuntSampleTests ├── BugHuntTests-Info.plist ├── BugHuntTests.m ├── InspectableBugHunt.h ├── InspectableBugHunt.m └── en.lproj │ └── InfoPlist.strings ├── Podfile ├── README.md └── bughunt.gif /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Pods/ 3 | **/xcuserdata/ 4 | *.xccheckout -------------------------------------------------------------------------------- /BugHunt.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt.podspec -------------------------------------------------------------------------------- /BugHunt.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BugHunt.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BugHunt.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BugHunt/BugHunt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/BugHunt.h -------------------------------------------------------------------------------- /BugHunt/BugHunt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/BugHunt.m -------------------------------------------------------------------------------- /BugHunt/Common/Categories/UIColor+BugHunt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Common/Categories/UIColor+BugHunt.h -------------------------------------------------------------------------------- /BugHunt/Common/Categories/UIColor+BugHunt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Common/Categories/UIColor+BugHunt.m -------------------------------------------------------------------------------- /BugHunt/Common/Controls/EBHButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Common/Controls/EBHButton.h -------------------------------------------------------------------------------- /BugHunt/Common/Controls/EBHButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Common/Controls/EBHButton.m -------------------------------------------------------------------------------- /BugHunt/Common/Controls/EBHSegmentedControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Common/Controls/EBHSegmentedControl.h -------------------------------------------------------------------------------- /BugHunt/Common/Controls/EBHSegmentedControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Common/Controls/EBHSegmentedControl.m -------------------------------------------------------------------------------- /BugHunt/Common/Models/EBHBugReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Common/Models/EBHBugReport.h -------------------------------------------------------------------------------- /BugHunt/Common/Models/EBHBugReport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Common/Models/EBHBugReport.m -------------------------------------------------------------------------------- /BugHunt/Common/Models/EBHTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Common/Models/EBHTask.h -------------------------------------------------------------------------------- /BugHunt/Common/Models/EBHTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Common/Models/EBHTask.m -------------------------------------------------------------------------------- /BugHunt/Common/Networking/EBHNetworkManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Common/Networking/EBHNetworkManager.h -------------------------------------------------------------------------------- /BugHunt/Common/Networking/EBHNetworkManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Common/Networking/EBHNetworkManager.m -------------------------------------------------------------------------------- /BugHunt/Common/Utilities/EBHScreenshotUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Common/Utilities/EBHScreenshotUtility.h -------------------------------------------------------------------------------- /BugHunt/Common/Utilities/EBHScreenshotUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Common/Utilities/EBHScreenshotUtility.m -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Leaderboard Screen/EBHLeaderBoardViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Leaderboard Screen/EBHLeaderBoardViewController.h -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Leaderboard Screen/EBHLeaderBoardViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Leaderboard Screen/EBHLeaderBoardViewController.m -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Leaderboard Screen/EBHLeaderboardCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Leaderboard Screen/EBHLeaderboardCell.h -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Leaderboard Screen/EBHLeaderboardCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Leaderboard Screen/EBHLeaderboardCell.m -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Leaderboard Screen/EBHLeaderboardCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Leaderboard Screen/EBHLeaderboardCell.xib -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Leaderboard Screen/EBHLeaderboardUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Leaderboard Screen/EBHLeaderboardUser.h -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Leaderboard Screen/EBHLeaderboardUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Leaderboard Screen/EBHLeaderboardUser.m -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHScreenshotCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHScreenshotCell.h -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHScreenshotCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHScreenshotCell.m -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHScreenshotDatasource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHScreenshotDatasource.h -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHScreenshotDatasource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHScreenshotDatasource.m -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHSubmitBugView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHSubmitBugView.h -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHSubmitBugView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHSubmitBugView.m -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHSubmitBugViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHSubmitBugViewController.h -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHSubmitBugViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Submit Bug Screen/EBHSubmitBugViewController.m -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Task Screen/EBHTaskCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Task Screen/EBHTaskCell.h -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Task Screen/EBHTaskCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Task Screen/EBHTaskCell.m -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Task Screen/EBHTaskCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Task Screen/EBHTaskCell.xib -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Task Screen/EBHTaskViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Task Screen/EBHTaskViewController.h -------------------------------------------------------------------------------- /BugHunt/Components/Child View Controllers/Task Screen/EBHTaskViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Child View Controllers/Task Screen/EBHTaskViewController.m -------------------------------------------------------------------------------- /BugHunt/Components/Container View Controller/EBHContainerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Container View Controller/EBHContainerViewController.h -------------------------------------------------------------------------------- /BugHunt/Components/Container View Controller/EBHContainerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Container View Controller/EBHContainerViewController.m -------------------------------------------------------------------------------- /BugHunt/Components/Overlay/EBHOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Overlay/EBHOverlayView.h -------------------------------------------------------------------------------- /BugHunt/Components/Overlay/EBHOverlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Overlay/EBHOverlayView.m -------------------------------------------------------------------------------- /BugHunt/Components/Overlay/EBHOverlayViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Overlay/EBHOverlayViewDelegate.h -------------------------------------------------------------------------------- /BugHunt/Components/Overlay/EBHWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Overlay/EBHWindow.h -------------------------------------------------------------------------------- /BugHunt/Components/Overlay/EBHWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Components/Overlay/EBHWindow.m -------------------------------------------------------------------------------- /BugHunt/EBHNetworkCommunicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/EBHNetworkCommunicator.h -------------------------------------------------------------------------------- /BugHunt/External/EBH_SZTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/External/EBH_SZTextView.h -------------------------------------------------------------------------------- /BugHunt/External/EBH_SZTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/External/EBH_SZTextView.m -------------------------------------------------------------------------------- /BugHunt/Resource/ebb_icon-bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Resource/ebb_icon-bug.png -------------------------------------------------------------------------------- /BugHunt/Resource/ebb_icon-bug@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Resource/ebb_icon-bug@2x.png -------------------------------------------------------------------------------- /BugHunt/Resource/ebb_icon_close_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Resource/ebb_icon_close_circle.png -------------------------------------------------------------------------------- /BugHunt/Resource/ebb_icon_close_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHunt/Resource/ebb_icon_close_circle@2x.png -------------------------------------------------------------------------------- /BugHuntSample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSample/AppDelegate.h -------------------------------------------------------------------------------- /BugHuntSample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSample/AppDelegate.m -------------------------------------------------------------------------------- /BugHuntSample/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSample/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /BugHuntSample/BugHunt-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSample/BugHunt-Info.plist -------------------------------------------------------------------------------- /BugHuntSample/BugHunt-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSample/BugHunt-Prefix.pch -------------------------------------------------------------------------------- /BugHuntSample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BugHuntSample/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSample/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /BugHuntSample/MyNetworkCommunicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSample/MyNetworkCommunicator.h -------------------------------------------------------------------------------- /BugHuntSample/MyNetworkCommunicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSample/MyNetworkCommunicator.m -------------------------------------------------------------------------------- /BugHuntSample/TableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSample/TableViewController.h -------------------------------------------------------------------------------- /BugHuntSample/TableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSample/TableViewController.m -------------------------------------------------------------------------------- /BugHuntSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /BugHuntSample/etsy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSample/etsy.png -------------------------------------------------------------------------------- /BugHuntSample/kale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSample/kale.png -------------------------------------------------------------------------------- /BugHuntSample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSample/main.m -------------------------------------------------------------------------------- /BugHuntSampleTests/BugHuntTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSampleTests/BugHuntTests-Info.plist -------------------------------------------------------------------------------- /BugHuntSampleTests/BugHuntTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSampleTests/BugHuntTests.m -------------------------------------------------------------------------------- /BugHuntSampleTests/InspectableBugHunt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSampleTests/InspectableBugHunt.h -------------------------------------------------------------------------------- /BugHuntSampleTests/InspectableBugHunt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/BugHuntSampleTests/InspectableBugHunt.m -------------------------------------------------------------------------------- /BugHuntSampleTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/README.md -------------------------------------------------------------------------------- /bughunt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etsy/BugHunt-iOS/HEAD/bughunt.gif --------------------------------------------------------------------------------