forked from bitstadium/HockeySDK-Mac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HockeySDK-Mac.podspec
29 lines (22 loc) · 1.34 KB
/
HockeySDK-Mac.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Pod::Spec.new do |s|
s.name = 'HockeySDK-Mac'
s.version = '4.1.3'
s.summary = 'Collect live crash reports, get feedback from your users, distribute your betas, and get usage data.'
s.description = <<-DESC
HockeyApp is a service to distribute beta apps, collect crash reports as well as usage data 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/mac/#{s.version}/"
s.license = { :type => 'MIT', :file => 'HockeySDK-Mac/LICENSE.md' }
s.author = { 'Microsoft' => '[email protected]' }
s.source = { :http => "https://github.com/bitstadium/HockeySDK-Mac/releases/download/#{s.version}/HockeySDK-Mac-#{s.version}.zip" }
s.platform = :osx, '10.7'
s.osx.deployment_target = 10.7
s.requires_arc = false
s.vendored_frameworks = "HockeySDK-Mac/HockeySDK.framework"
s.resource = "HockeySDK-Mac/HockeySDK.framework"
s.pod_target_xcconfig = { 'LD_RUNPATH_SEARCH_PATHS' => '@executable_path/../Frameworks' }
end