Skip to content
This repository has been archived by the owner on Apr 5, 2020. It is now read-only.
/ FeedParser Public archive

An RSS and Atom feed parser written in Swift

License

Notifications You must be signed in to change notification settings

nmdias/FeedParser

Repository files navigation

FeedParser

An RSS/Atom feed parser

Build Status Carthage compatible CocoaPods Compatible Platform

Requirements

  • iOS 8.0+ / Mac OS X 10.9+ / tvOS 9.0+ / watchOS 2.0+
  • Xcode 7.3+

Installation

CocoaPods

CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects. You can install it with the following command:

$ gem install cocoapods

To integrate FeedParser into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

target 'MyApp' do
  pod 'FeedParser', '~> 2.0'
end

Then, run the following command:

$ pod install

Or, if you just wish try it out, run the following command:

$ pod try FeedParser

Carthage

Carthage is a dependency manager that builds your dependencies and provides you with binary frameworks.

To install Carthage with Homebrew use the following command:

$ brew update
$ brew install carthage

To integrate FeedParser into your Xcode project using Carthage, specify it in your Cartfile:

github "nmdias/FeedParser" ~> 2.0

Build the framework:

$ carthage update

Then, drag the built FeedParser.framework into your Xcode project.

License

FeedParser is released under the MIT license. See LICENSE for details.