Skip to content

Instantly share code, notes, and snippets.

@alloy
Created May 2, 2014 17:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alloy/cb28f6127b95877f74dc to your computer and use it in GitHub Desktop.
Save alloy/cb28f6127b95877f74dc to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = 'HockeySDK-Mac'
s.version = '2.1.0'
s.summary = 'Collect crash reports 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/mac/2.1.0/'
s.license = { :type => 'MIT', :file => 'HockeySDK-Mac/LICENSE.txt' }
s.author = { 'Andreas Linde' => 'mail@andreaslinde.de', 'Thomas Dohmke' => "thomas@dohmke.de" }
s.source = { :http => "http://download.hockeyapp.net/sdk/mac/HockeySDK-Mac-2.1.0.zip" }
s.platform = :osx, '10.6'
s.osx.deployment_target = 10.6
s.vendored_frameworks = "HockeySDK-Mac/HockeySDK.framework"
s.public_header_files = "HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/*.h"
s.resource = "HockeySDK-Mac/HockeySDK.framework"
s.xcconfig = { 'LD_RUNPATH_SEARCH_PATHS' => '@loader_path/../Frameworks' }
s.requires_arc = false
end
@alloy
Copy link
Author

alloy commented May 2, 2014

The difference being:

s.public_header_files   = "HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/*.h"

@alloy
Copy link
Author

alloy commented May 2, 2014

Pushed to spec repo CocoaPods/Specs@d1806dd.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment