Github user shazron commented on a diff in the pull request:

    https://github.com/apache/cordova-ios/pull/234#discussion_r69504477
  
    --- Diff: bin/templates/scripts/cordova/Api.js ---
    @@ -217,6 +214,90 @@ Api.prototype.addPlugin = function (plugin, 
installOptions) {
     
         return PluginManager.get(this.platform, this.locations, xcodeproj)
             .addPlugin(plugin, installOptions)
    +        .then(function() {
    +            var project_dir = this.locations.root;
    +            var project_path = this.locations.xcodeProjDir;
    +            var project_name = 
this.locations.xcodeCordovaProj.split('/').pop();
    +            var array_of_pod_objects = [];
    +            
    +            if (plugin.getFrameworks(this.platform).length === 0) return;
    +            events.emit('verbose', 'Looking into adding pods since the 
plugin contained <framework>');
    +                    
    +            var pods_file = path.join(project_dir, 'pods.json');
    +            var pods = {};
    +            
    +            try {
    +                delete require.cache[require.resolve(pods_file)];
    +                pods = require(pods_file);
    +            } catch (e) { 
    +                /* no pods.json exists */ 
    +                // create an empty pods.json file 
    +                fs.writeFileSync(pods_file, JSON.stringify({}));
    +                delete require.cache[require.resolve(pods_file)];
    +                pods = require(pods_file);
    +            }  
    +
    +            var podMod = require('./lib/podMod');
    +            var frameworkTags = plugin.getFrameworks(this.platform);
    +
    +            // check if any of the framework tags are of type "podspec" 
    +            frameworkTags.forEach(function (obj) { 
    --- End diff --
    
    use Array.filter to do this instead


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

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

Reply via email to