|
CocoaPods is an application level dependency manager for the Objective-C programming language and any other languages that run on the Objective-C runtime, such as RubyMotion,〔(Use CocoaPods Dependencies in RubyMotion Apps )〕 that provides a standard format for managing external libraries. It was developed by Eloy Durán and Fabio Pelosin, who continue to manage the project with the help and contributions of many others.〔(CocoaPods contributors )〕 They began development in August 2011〔(Initial work )〕 and made the first public release〔(Initial release )〕 on September 1, 2011. CocoaPods is strongly inspired by a combination of the Ruby projects RubyGems and Bundler. CocoaPods focuses on source-based distribution of third party code and automatic integration into Xcode projects. CocoaPods runs from the command line and is also integrated in JetBrains' AppCode integrated development environment.〔(What's New in AppCode 2.5 )〕 It installs dependencies (e.g. libraries) for an application by specification of dependencies rather than manual copying source files.〔(Streamlining Cocoa Development With CocoaPods )〕 Besides installing from many different sources, a “master” spec repository—containing metadata for many Open-Source libraries—is maintained as a git repository and hosted on GitHub.〔(The “master” spec repository )〕 Over 3000 libraries are currently available for use.〔(Cocoa Controls: CocoaPods )〕 ==Example== The following Podfile example installs the AFNetworking and CocoaLumberjack libraries: platform :ios pod 'AFNetworking', '~> 2.0.0' pod 'CocoaLumberjack', '< 1.7' 抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「CocoaPods」の詳細全文を読む スポンサード リンク
|