gradle-cocoapods-plugin 
 
A Gradle plugin for Cocoapods.
Basic usage
Add to your build.gradle
buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'de.felixschulze.gradle:gradle-cocoapods-plugin:1.1'
    }
}
apply plugin: 'de.felixschulze.gradle.cocoapods' 
Advanced usage
Add to your build.gradle
cocoapods {
    teamCityLog = true
    ignorePackages = ["AFNetworking"]
    failOnFailure = false
} 
teamCityLog: Add features for TeamCityignorePackages: Packages which should be ignored if new versions available
Changelog
License
gradle-cocoapods-plugin is available under the MIT license. See the LICENSE file for more info.
