Added missing Quincy.bundle to podspec. Fixed typo.

This commit is contained in:
Thomas Dohmke 2011-12-03 19:20:59 +01:00
parent cf401ce990
commit 9e8dcd2664

View File

@ -17,12 +17,12 @@ Pod::Spec.new do |s|
'yourself when the network becomse reachable.' 'yourself when the network becomse reachable.'
s.source_files = 'Classes', s.source_files = 'Classes',
s.resource = 'Resources/Hockey.bundle' s.resource = 'Resources/Hockey.bundle', 'Resources/Quincy.bundle'
s.frameworks = 'QuartzCore', 'SystemConfiguration', 'CrashReporter' s.frameworks = 'QuartzCore', 'SystemConfiguration', 'CrashReporter'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(BUILT_PRODUCTS_DIR)/Pods/Frameworks"' } s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(BUILT_PRODUCTS_DIR)/Pods/Frameworks"' }
def s.post_install(target_installer) def s.post_install(target_installer)
# Add a copy build phase and make it copy the the CrashReporter.framework to the shared BUILT_PRODUCTS_DIR, # 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. # 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') 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') file = target_installer.project.main_group.files.new('path' => 'HockeySDK/Vendor/CrashReporter.framework')