Last active
December 27, 2015 10:29
-
-
Save cwndrws/7311803 to your computer and use it in GitHub Desktop.
The podspec for the ClearBlade iOS API
This file contains hidden or 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.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" => "[email protected]" } | |
| 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