mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-16 10:30:08 +00:00
32 lines
1.6 KiB
Ruby
32 lines
1.6 KiB
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'HockeySDK'
|
|
s.version = '3.5.6'
|
|
|
|
s.summary = 'Collect live crash reports, get feedback from your users, distribute your betas, and analyze your test coverage with HockeyApp.'
|
|
s.description = <<-DESC
|
|
HockeyApp is a service to distribute beta apps, collect crash reports and
|
|
communicate with your app's users.
|
|
|
|
It improves the testing process dramatically and can be used for both beta
|
|
and App Store builds.
|
|
DESC
|
|
|
|
s.homepage = 'http://hockeyapp.net/'
|
|
s.documentation_url = 'http://hockeyapp.net/help/sdk/ios/3.5.6/'
|
|
|
|
s.license = 'MIT'
|
|
s.author = { 'Andreas Linde' => 'mail@andreaslinde.de', 'Thomas Dohmke' => "thomas@dohmke.de" }
|
|
s.source = { :git => 'https://github.com/bitstadium/HockeySDK-iOS.git', :tag => s.version.to_s }
|
|
|
|
s.platform = :ios, '5.0'
|
|
s.source_files = 'Classes'
|
|
s.requires_arc = true
|
|
|
|
s.frameworks = 'CoreText', 'QuartzCore', 'SystemConfiguration', 'CoreGraphics', 'UIKit', 'Security'
|
|
s.ios.vendored_frameworks = 'Vendor/CrashReporter.framework'
|
|
s.xcconfig = {'GCC_PREPROCESSOR_DEFINITIONS' => %{$(inherited) BITHOCKEY_VERSION="@\\"#{s.version}\\"" BITHOCKEY_C_VERSION="\\"#{s.version}\\"" BITHOCKEY_BUILD="@\\"31\\"" BITHOCKEY_C_BUILD="\\"31\\""} }
|
|
s.resource_bundle = { 'HockeySDKResources' => ['Resources/*.png', 'Resources/*.lproj'] }
|
|
s.preserve_paths = 'Resources', 'Support'
|
|
|
|
end
|