mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
Finish podspec.
This commit is contained in:
parent
ca74b03f42
commit
faeb19f0a3
@ -6,7 +6,7 @@ Pod::Spec.new do |s|
|
||||
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/bitstadium/HockeySDK-iOS', :tag => '2.5.0' }
|
||||
s.source = { :git => 'https://github.com/bitstadium/HockeySDK-iOS.git', :tag => '2.5.0' }
|
||||
|
||||
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 ' \
|
||||
@ -18,18 +18,23 @@ Pod::Spec.new do |s|
|
||||
|
||||
s.source_files = 'Classes'
|
||||
s.requires_arc = false
|
||||
s.resources = 'Resources/HockeySDKResources.bundle'
|
||||
s.frameworks = 'QuartzCore', 'SystemConfiguration', 'CrashReporter', 'CoreGraphics.framework', 'UIKit.framework'
|
||||
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(BUILT_PRODUCTS_DIR)/Pods/Frameworks"' }
|
||||
s.preserve_paths = 'Resources', 'Support', 'Vendor'
|
||||
s.frameworks = 'QuartzCore', 'SystemConfiguration', 'CrashReporter', 'CoreGraphics', 'UIKit'
|
||||
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/HockeySDK/Vendor"',
|
||||
'GCC_PREPROCESSOR_DEFINITIONS' => %{BITHOCKEY_VERSION="@\\"#{s.version}\\""} }
|
||||
|
||||
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)
|
||||
puts "\nGenerating HockeySDK resources bundle\n".yellow if config.verbose?
|
||||
Dir.chdir File.join(config.project_pods_root, 'HockeySDK/Support') do
|
||||
command = "xcodebuild -project HockeySDK.xcodeproj -target HockeySDKResources CONFIGURATION_BUILD_DIR=../Resources"
|
||||
command << " 2>&1 > /dev/null" unless config.verbose?
|
||||
unless system(command)
|
||||
raise ::Pod::Informative, "Failed to generate HockeySDK resources bundle"
|
||||
end
|
||||
end
|
||||
File.open(File.join(config.project_pods_root, target_installer.target_definition.copy_resources_script_name), 'a') do |file|
|
||||
file.puts "install_resource 'HockeySDK/Resources/HockeySDKResources.bundle'"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user