Details
-
New Feature
-
Status: Closed
-
Major
-
Resolution: Won't Do
-
0.9, 0.9.1
-
None
-
Patch Available
Description
I've created a CocoaPods specification file for the Thrift Cocoa library and would like to create a pull request for that on CocoaPods/Specs. I've already pushed a commit to my fork with the following spec file:
Thrift.podspec
Pod::Spec.new do |s| s.name = "Thrift" s.version = "0.9.0" s.summary = "Apache Thrift is a lightweight, language-independent software stack with an associated code generation mechanism for RPC." s.description = <<-DESC The Apache Thrift software framework, for scalable cross-language services development, combines a software stack with a code generation engine to build services that work efficiently and seamlessly between C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, JavaScript, Node.js, Smalltalk, OCaml and Delphi and other languages. DESC s.homepage = "http://thrift.apache.org" s.license = { :type => 'Apache License, Version 2.0', :url => 'https://raw.github.com/apache/thrift/thrift-0.9.0/LICENSE' } s.author = { "The Apache Software Foundation" => "apache@apache.org" } s.platforms = :ios, :osx s.ios.framework = 'CFNetwork' s.osx.framework = 'CoreServices' s.source = { :git => "https://github.com/apache/thrift.git", :tag => "thrift-0.9.0" } s.source_files = 'lib/cocoa/src/**/*.{h,m}' end
I'm already working with a local copy of the pod repository with the additions and it worked well so far for some iOS projects.
It would be nice if someone could approve or even improve the settings and descriptions so that i could create the pull request.
Attachments
Attachments
Issue Links
- relates to
-
THRIFT-1605 Cocoa framework
- Closed