Files
JBChartView/AWSiOSSDK/1.4.0/AWSiOSSDK.podspec
T
2012-12-13 21:53:46 -08:00

32 lines
1.1 KiB
Ruby

Pod::Spec.new do |s|
s.name = 'AWSiOSSDK'
s.version = '1.4.0'
s.license = 'Apache 2.0'
s.summary = 'Amazon Web Services SDK for iOS.'
s.homepage = 'http://aws.amazon.com/sdkforios'
s.author = { 'Amazon Web Services' => 'amazonwebservices' }
s.source = { :git => 'https://github.com/aws/aws-sdk-ios.git', :commit => 'd1480b647b381d948a3546f8ead72e821bd3ecc1' }
s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.'
s.platform = :ios
s.header_mappings_dir = 'include'
s.prefix_header_contents = <<-PCH
#import "AmazonLogger.h"
#import "AmazonErrorHandler.h"
PCH
s.subspec 'Runtime' do |ss|
ss.source_files = "src/Amazon.Runtime/**/*.m", "src/include"
ss.dependency 'AWSiOSSDK/DynamoDB'
ss.dependency 'SBJson'
end
%w[ AutoScaling CloudWatch DynamoDB EC2 ElasticLoadBalancing S3 SES SNS SQS STS SimpleDB ].each do |name|
s.subspec name do |ss|
ss.source_files = "src/Amazon.#{name}/**/*.m", "src/include/#{name}"
ss.dependency 'AWSiOSSDK/Runtime'
end
end
end