Last active
August 29, 2015 14:18
-
-
Save timshadel/cfc74def55fd5ac213d1 to your computer and use it in GitHub Desktop.
Empty Pod For Watch Extension
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* If your watch extension doesn't need any of it's own exclusive pods, | |
* it won't have its header search path set to see any of the dependencies | |
* of embedded frameworks it relies on. This fixes that without duplication. | |
*/ | |
@interface EmptyPodForWatchExtension | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@implementation EmptyPodForWatchExtension | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = "EmptyPodForWatchExtension" | |
s.version = "0.0.1" | |
s.summary = "Give watch extension pod superpowers." | |
s.license = { :type => 'MIT' } | |
s.author = { "Tim Shadel" => "[email protected]" } | |
s.source = { :git => "https://gist.github.com/timshadel/cfc74def55fd5ac213d1.git", :branch => "master" } | |
s.platform = :ios | |
s.requires_arc = true | |
s.source_files = 'EmptyPodForWatchExtension.{h,m}' | |
s.public_header_files = 'EmptyPodForWatchExtension.h' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment