ios - Is there a way to find out automatically if a third party library has been updated -


im using couple of libraries found on github, , wondering there way know when third party library used in app has been updated? example, bug fix.

must continuously visit users repository find out our selfs, or using dependency manager cocoa pods have functionality?

thanks in advance.

cocoa pods allows manage third party library, 1 feature has pod outdated checks new releases of library's , check if project has new commits

more info on cocoa pods, see link

example 1 (library releases only):

say have afnetwoking in project using cocoapods following syntax: pod "afnetworking" if wanted check updates pod outdated, or update library if there releases pod update

example 2(library recent commits):

there times want recent commits regardless of if stability. on cocoapods can pod 'afnetworking', :git => 'https://github.com/afnetworking/afnetworking.git'. gets recent commit on git


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -