Prepare pod spec to 3.0 release

This commit is contained in:
Andreas Linde 2012-10-31 08:54:54 +01:00
parent bdbeef2a7a
commit a839b16313

View File

@ -1,25 +1,25 @@
Pod::Spec.new do |s|
s.name = 'HockeySDK'
s.version = '2.5.5'
s.version = '3.0.0'
s.license = 'MIT'
s.platform = :ios, '4.0'
s.platform = :ios, '5.0'
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.git', :tag => '2.5.5' }
s.source = { :git => 'https://github.com/bitstadium/HockeySDK-iOS.git', :tag => '3.0.0' }
s.description = 'HockeyApp is a server to distribute beta apps and collect crash reports. ' \
s.description = 'HockeyApp is a server to distribute beta apps, collect crash reports and ' \
'communicate with your app users.' \
'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, SBJson or YAJL yourself. If you ' \
'want the framework to try again when a network is available, add a dependency ' \
'and App Store builds. Only beta builds will notify users about a new version. ' \
'NOTE: 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 `BITHockeyNetworkDidBecomeReachable` ' \
'yourself when the network becomse reachable.'
s.source_files = 'Classes'
s.requires_arc = false
s.requires_arc = true
s.preserve_paths = 'Resources', 'Support', 'Vendor'
s.frameworks = 'QuartzCore', 'SystemConfiguration', 'CrashReporter', 'CoreGraphics', 'UIKit'
s.frameworks = 'CoreText', 'QuartzCore', 'SystemConfiguration', 'CrashReporter', 'CoreGraphics', 'UIKit'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/HockeySDK/Vendor"',
'GCC_PREPROCESSOR_DEFINITIONS' => %{BITHOCKEY_VERSION="@\\"#{s.version}\\""} }