Skip to content

Instantly share code, notes, and snippets.

@tychop
Forked from objectiveSee/podspec
Last active August 29, 2015 14:07
Show Gist options
  • Save tychop/63a708235bb9ce108d37 to your computer and use it in GitHub Desktop.
Save tychop/63a708235bb9ce108d37 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "PhilipsHueSDK-iOS"
s.version = "1.1.3beta"
s.license = { :type => "MIT", :file => "ACKNOWLEDGEMENTS.md"}
s.summary = "The Software Development Kit for Philips Hue on iOS (beta)"
s.homepage = "https://github.com/PhilipsHue/PhilipsHueSDK-iOS-OSX"
s.requires_arc = true
s.ios.deployment_target = '8.1'
s.source = { :git => "https://github.com/PhilipsHue/PhilipsHueSDK-iOS-OSX.git", :tag => "v1.1.3beta" }
s.ios.public_header_files = 'HueSDK_iOS.framework/Headers/*'
s.ios.vendored_frameworks = 'HueSDK_iOS.framework'
s.dependency 'CocoaLumberjack', '~> 1.8'
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '$(PODS_ROOT)/PhilipsHueSDK-iOS/Frameworks/HueSDK_iOS.framework/Headers' }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment