yinzara opened a new issue, #1256:
URL: https://github.com/apache/cordova-ios/issues/1256

   # Feature Request
   
   The "cocoapods" elements in the config.xml for the ios platform now allows 
you to modify the generation of the Podfile to include additional pods and 
sources.
   
   However there is an element of the Podfile specification that is not 
supported by the current configuration: plugins
   https://guides.cocoapods.org/syntax/podfile.html#plugin
   
   This is necessary if your Pod is hosted by Artifactory as you need to use 
the cocoapods-art plugin to make the pod available to the build.
   
   https://github.com/jfrog/cocoapods-art
   
   This feature would be another config element "<plugin>" within the 
"<podspec>" element.  It would need to support a "name" attribute and an 
"options" attribute similar to the "options" attribute of the "<pod>" element.  
Since every plugin could have their own custom options, there is no use in 
supporting specific options.  Just a generic options attribute should be fine.
   
   So for example
   ```xml
   <podspec>
     <plugin name="myPluginName" options=":sources => [ &apos;my_source&apos; 
]"/>
     <plugin name="myOtherPlugin" />
   </podspec>
   ```
   
   Would generate:
   ```
   plugin 'myPluginName', :sources => [ 'my_source' ]
   plugin 'myOtherPlugin'
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to