├── README.md └── .gitignore /README.md: -------------------------------------------------------------------------------- 1 | Project has moved here: [https://github.com/bitstadium/HockeySDK-iOS](https://github.com/bitstadium/HockeySDK-iOS) -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | build/* 3 | *.pbxuser 4 | !default.pbxuser 5 | *.mode?v3 6 | !default.mode?v3 7 | *.perspective 8 | *.perspectivev3 9 | !default.perspectivev3 10 | !default.xcworkspace 11 | xcuserdata 12 | profile 13 | *.moved-aside 14 | 15 | # osx noise 16 | .DS_Store 17 | *.ipa 18 | *.swp 19 | *~.nib 20 | profile 21 | --------------------------------------------------------------------------------