Svoboda | Graniru | BBC Russia | Golosameriki | Facebook

To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

From Wikipedia, the free encyclopedia

CocoaPods
Original author(s)Eloy Durán
Developer(s)Ben Asher, Dimitris Koutsogiorgas, Danielle Lancashire, Orta Therox, Paul Beusterien and Samuel Giddins
Stable release
1.12.1
Preview release
January 7, 2021; 2 years ago (2021-01-07)[1]
Written inRuby
PlatformmacOS, iOS, watchOS, tvOS
TypePackage manager
LicenseMIT License
Websitecocoapods.org

CocoaPods is an application level dependency manager for Objective-C, Swift and any other languages that run on the Objective-C runtime, such as RubyMotion,[2] 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.[3] They began development in August 2011[4] and made the first public release[5] 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.[6] It installs dependencies (e.g. libraries) for an application by specification of dependencies rather than by manually copying source files.[7] 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.[8] CocoaPods dependency resolution system is powered by Molinillo which is also used by other large projects such as Bundler, RubyGems, and Berkshelf.

YouTube Encyclopedic

  • 1/3
    Views:
    7 664
    40 947
    5 539
  • Cocoapods for Absolute Beginners
  • CocoaPods Tutorial - How to install and setup Cocoa Pods for Xcode
  • 4 - Creating An Uber App In iOS10 And Swift 3 - Installing Cocoapods

Transcription

Example

The following Podfile example installs the AFNetworking and CocoaLumberjack libraries:

 platform :ios
 pod 'AFNetworking',    '~> 2.0.0'
 pod 'CocoaLumberjack', '< 1.7'

 target 'MyApp'

See also

References

  1. ^ "Releases · CocoaPods/CocoaPods". github.com. Retrieved 2021-03-30.
  2. ^ Use CocoaPods Dependencies in RubyMotion Apps Archived 2013-12-24 at the Wayback Machine
  3. ^ CocoaPods contributors
  4. ^ Initial work
  5. ^ Initial release
  6. ^ What's New in AppCode 2.5
  7. ^ Streamlining Cocoa Development With CocoaPods
  8. ^ The “master” spec repository

External links

This page was last edited on 22 December 2023, at 19:03
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.