Skip to content

Commit

Permalink
Add HockeySDK 2.2.1 podspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
kommen committed Dec 29, 2011
1 parent 828acd0 commit 02d7c68
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions HockeySDK/2.2.1/HockeySDK.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Pod::Spec.new do |s|
s.name = 'HockeySDK'
s.version = '2.2.1'
s.license = 'MIT'
s.platform = :ios
s.summary = 'Distribute beta apps and collect crash reports with HockeyApp.'
s.homepage = 'http://hockeyapp.net/'
s.author = { 'Andreas Linde' => 'mail@andreaslinde.de', 'Thomas Dohmke' => "thomas@dohmke.de" }
s.source = { :git => 'https://github.com/codenauts/HockeySDK-iOS', :tag => '2.2.1' }

s.description = 'HockeyApp is a server to distribute beta apps and collect crash reports. ' \
'It improves the testing process dramatically and can be used for both beta ' \
'and App Store builds. Only beta builds will notify users about a new version ' \
'NOTE: You will need to add a dependency on JSONKit or SBJson yourself. If you ' \
'want the framework to try again when a network is available, add a dependency ' \
'on Reachability and send a notification with the name `NetworkDidBecomeReachable` ' \
'yourself when the network becomse reachable.'

s.source_files = 'Classes'
s.resources = 'Resources/Hockey.bundle', 'Resources/Quincy.bundle'
s.frameworks = 'QuartzCore', 'SystemConfiguration', 'CrashReporter'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(BUILT_PRODUCTS_DIR)/Pods/Frameworks"' }

def s.post_install(target_installer)
# Add a copy build phase and make it copy the CrashReporter.framework to the shared BUILT_PRODUCTS_DIR,
# so that both the Pods project and the user's project will pick it up.
phase = target_installer.target.buildPhases.add(Xcodeproj::Project::PBXCopyFilesBuildPhase, 'dstPath' => 'Pods/Frameworks')
file = target_installer.project.main_group.files.new('path' => 'HockeySDK/Vendor/CrashReporter.framework')
phase.files << file.buildFiles.new
phases = target_installer.target.attributes['buildPhases']
phases.delete(phase.uuid)
phases.insert(1, phase.uuid)
end
end

0 comments on commit 02d7c68

Please sign in to comment.