Skip to content

Commit

Permalink
v3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mzsoliman committed Aug 28, 2014
1 parent 7f90bf3 commit b37ae3d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Instabug.bundle/Instabug_dsym_upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ if [ ! "${APP_TOKEN}" ] || [ -z "${APP_TOKEN}" ];then
fi
echo "Instabug: found APP_TOKEN=${APP_TOKEN}"

# Check internet connection
if [ ! "`ping -c 1 instabug.com`" ]; then
exit 0
fi

# Check for simulator builds
if [ "$EFFECTIVE_PLATFORM_NAME" == "-iphonesimulator" ]; then
if [ "${SKIP_SIMULATOR_BUILDS}" ] && [ "${SKIP_SIMULATOR_BUILDS}" -eq 1 ]; then
Expand Down
Binary file modified Instabug.framework/Versions/A/Instabug
Binary file not shown.
4 changes: 2 additions & 2 deletions Instabug.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Instabug"
s.version = "3.6"
s.version = "3.7"
s.summary = "Bug reporting for mobile apps. Learn more at http://instabug.com"
s.homepage = "http://instabug.com"
s.license = {
Expand All @@ -23,7 +23,7 @@ Pod::Spec.new do |s|
}
s.author = { "Instabug" => "contactus@instabug.com" }
s.platform = :ios, '5.0'
s.source = { :git => "https://github.com/Instabug/Instabug-iOS.git", :tag => "3.6" }
s.source = { :git => "https://github.com/Instabug/Instabug-iOS.git", :tag => "3.7" }
s.source_files = 'Instabug.framework/Versions/A/Headers/*.{h}'
s.resources = 'Instabug.bundle'
s.preserve_paths = 'Instabug.framework/*', 'Instabug.bundle'
Expand Down

0 comments on commit b37ae3d

Please sign in to comment.