2015-10-09 20:01:55 +00:00
Pod::Spec.new do |s|
s.name = "Thrift"
s.version = "1.0.0"
s.summary = "Apache Thrift is a lightweight, language-independent software stack with an associated code generation mechanism for RPC."
s.description = <<-DESC
2018-12-30 16:06:00 +00:00
The Apache Thrift scalable cross-language software framework for networked services development combines a software stack with a code generation engine to build services that work efficiently and seamlessly between many programming languages.
2015-10-09 20:01:55 +00:00
DESC
s.homepage = "http://thrift.apache.org"
2018-10-17 02:36:46 +00:00
s.license = { :type => 'Apache License, Version 2.0', :url => 'https://www.apache.org/licenses/LICENSE-2.0' }
s.author = { "Apache Thrift Developers" => "dev@thrift.apache.org" }
2015-10-09 20:01:55 +00:00
s.requires_arc = true
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.8'
s.ios.framework = 'CFNetwork'
s.osx.framework = 'CoreServices'
2018-12-30 16:06:00 +00:00
s.source = { :git => "https://github.com/apache/thrift.git", :tag => "v1.0.0" }
2015-10-09 20:01:55 +00:00
s.source_files = 'lib/cocoa/src/**/*.{h,m,swift}'
2018-10-17 02:36:46 +00:00
end