Skip to content

Instantly share code, notes, and snippets.

@cwndrws
Last active December 27, 2015 10:29
Show Gist options
  • Save cwndrws/7311803 to your computer and use it in GitHub Desktop.
Save cwndrws/7311803 to your computer and use it in GitHub Desktop.
The podspec for the ClearBlade iOS API
Pod::Spec.new do |s|
s.platform = :osx
s.platform = :ios
s.name = "ClearBlade-iOS-API"
s.version = "0.8.7"
s.summary = "iOS API libraries for the ClearBlade platform"
s.ios.deployment_target = '7.0'
s.ios.frameworks = 'MobileCoreServices', 'SystemConfiguration', 'Security', 'CoreGraphics'
s.osx.deployment_target = '10.8'
s.osx.frameworks = 'CoreServices', 'SystemConfiguration', 'Security'
s.homepage = "https://github.com/ClearBlade/iOS-API"
s.license = { :type => 'EPL', :file => 'LICENSE' }
s.author = { "Charlie Andrews" => "candrews@clearblade.com" }
s.source = { :git => "https://github.com/ClearBlade/iOS-API.git", :tag => 'v0.8.7' }
s.header_dir = 'libmosquitto'
s.source_files = 'ClearBladeAPI/**/*.{h,m,c}'
s.dependency 'AFNetworking', '~> 1.3.3'
s.requires_arc = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment